1 /**************************************************************************
2  *
3  * Copyright (c) 2006-2009 Vmware, Inc., Palo Alto, CA., USA
4  * All Rights Reserved.
5  *
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:
13  *
14  * The above copyright notice and this permission notice (including the
15  * next paragraph) shall be included in all copies or substantial portions
16  * of the Software.
17  *
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.
25  *
26  **************************************************************************/
27 /*
28  * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com>
29  */
30 /* $FreeBSD: head/sys/dev/drm2/ttm/ttm_bo_driver.h 247835 2013-03-05 09:49:34Z kib $ */
31 #ifndef _TTM_BO_DRIVER_H_
32 #define _TTM_BO_DRIVER_H_
33 
34 #include <drm/ttm/ttm_bo_api.h>
35 #include <drm/ttm/ttm_memory.h>
36 #include <drm/ttm/ttm_module.h>
37 #include <drm/drm_mm.h>
38 #include <drm/drm_global.h>
39 #include <linux/workqueue.h>
40 
41 struct ttm_backend_func {
42 	/**
43 	 * struct ttm_backend_func member bind
44 	 *
45 	 * @ttm: Pointer to a struct ttm_tt.
46 	 * @bo_mem: Pointer to a struct ttm_mem_reg describing the
47 	 * memory type and location for binding.
48 	 *
49 	 * Bind the backend pages into the aperture in the location
50 	 * indicated by @bo_mem. This function should be able to handle
51 	 * differences between aperture and system page sizes.
52 	 */
53 	int (*bind) (struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem);
54 
55 	/**
56 	 * struct ttm_backend_func member unbind
57 	 *
58 	 * @ttm: Pointer to a struct ttm_tt.
59 	 *
60 	 * Unbind previously bound backend pages. This function should be
61 	 * able to handle differences between aperture and system page sizes.
62 	 */
63 	int (*unbind) (struct ttm_tt *ttm);
64 
65 	/**
66 	 * struct ttm_backend_func member destroy
67 	 *
68 	 * @ttm: Pointer to a struct ttm_tt.
69 	 *
70 	 * Destroy the backend. This will be call back from ttm_tt_destroy so
71 	 * don't call ttm_tt_destroy from the callback or infinite loop.
72 	 */
73 	void (*destroy) (struct ttm_tt *ttm);
74 };
75 
76 #define TTM_PAGE_FLAG_WRITE           (1 << 3)
77 #define TTM_PAGE_FLAG_SWAPPED         (1 << 4)
78 #define TTM_PAGE_FLAG_PERSISTENT_SWAP (1 << 5)
79 #define TTM_PAGE_FLAG_ZERO_ALLOC      (1 << 6)
80 #define TTM_PAGE_FLAG_DMA32           (1 << 7)
81 #define TTM_PAGE_FLAG_SG              (1 << 8)
82 
83 enum ttm_caching_state {
84 	tt_uncached,
85 	tt_wc,
86 	tt_cached
87 };
88 
89 /**
90  * struct ttm_tt
91  *
92  * @bdev: Pointer to a struct ttm_bo_device.
93  * @func: Pointer to a struct ttm_backend_func that describes
94  * the backend methods.
95  * @dummy_read_page: Page to map where the ttm_tt page array contains a NULL
96  * pointer.
97  * @pages: Array of pages backing the data.
98  * @num_pages: Number of pages in the page array.
99  * @bdev: Pointer to the current struct ttm_bo_device.
100  * @be: Pointer to the ttm backend.
101  * @swap_storage: Pointer to shmem struct file for swap storage.
102  * @caching_state: The current caching state of the pages.
103  * @state: The current binding state of the pages.
104  *
105  * This is a structure holding the pages, caching- and aperture binding
106  * status for a buffer object that isn't backed by fixed (VRAM / AGP)
107  * memory.
108  */
109 
110 struct ttm_tt {
111 	struct ttm_bo_device *bdev;
112 	struct ttm_backend_func *func;
113 	struct vm_page *dummy_read_page;
114 	struct vm_page **pages;
115 	uint32_t page_flags;
116 	unsigned long num_pages;
117 	struct sg_table *sg; /* for SG objects via dma-buf */
118 	struct ttm_bo_global *glob;
119 	struct vm_object *swap_storage;
120 	enum ttm_caching_state caching_state;
121 	enum {
122 		tt_bound,
123 		tt_unbound,
124 		tt_unpopulated,
125 	} state;
126 };
127 
128 /**
129  * struct ttm_dma_tt
130  *
131  * @ttm: Base ttm_tt struct.
132  * @dma_address: The DMA (bus) addresses of the pages
133  * @pages_list: used by some page allocation backend
134  *
135  * This is a structure holding the pages, caching- and aperture binding
136  * status for a buffer object that isn't backed by fixed (VRAM / AGP)
137  * memory.
138  */
139 struct ttm_dma_tt {
140 	struct ttm_tt ttm;
141 	dma_addr_t *dma_address;
142 	struct list_head pages_list;
143 };
144 
145 #define TTM_MEMTYPE_FLAG_FIXED         (1 << 0)	/* Fixed (on-card) PCI memory */
146 #define TTM_MEMTYPE_FLAG_MAPPABLE      (1 << 1)	/* Memory mappable */
147 #define TTM_MEMTYPE_FLAG_CMA           (1 << 3)	/* Can't map aperture */
148 
149 struct ttm_mem_type_manager;
150 
151 struct ttm_mem_type_manager_func {
152 	/**
153 	 * struct ttm_mem_type_manager member init
154 	 *
155 	 * @man: Pointer to a memory type manager.
156 	 * @p_size: Implementation dependent, but typically the size of the
157 	 * range to be managed in pages.
158 	 *
159 	 * Called to initialize a private range manager. The function is
160 	 * expected to initialize the man::priv member.
161 	 * Returns 0 on success, negative error code on failure.
162 	 */
163 	int  (*init)(struct ttm_mem_type_manager *man, unsigned long p_size);
164 
165 	/**
166 	 * struct ttm_mem_type_manager member takedown
167 	 *
168 	 * @man: Pointer to a memory type manager.
169 	 *
170 	 * Called to undo the setup done in init. All allocated resources
171 	 * should be freed.
172 	 */
173 	int  (*takedown)(struct ttm_mem_type_manager *man);
174 
175 	/**
176 	 * struct ttm_mem_type_manager member get_node
177 	 *
178 	 * @man: Pointer to a memory type manager.
179 	 * @bo: Pointer to the buffer object we're allocating space for.
180 	 * @placement: Placement details.
181 	 * @mem: Pointer to a struct ttm_mem_reg to be filled in.
182 	 *
183 	 * This function should allocate space in the memory type managed
184 	 * by @man. Placement details if
185 	 * applicable are given by @placement. If successful,
186 	 * @mem::mm_node should be set to a non-null value, and
187 	 * @mem::start should be set to a value identifying the beginning
188 	 * of the range allocated, and the function should return zero.
189 	 * If the memory region accommodate the buffer object, @mem::mm_node
190 	 * should be set to NULL, and the function should return 0.
191 	 * If a system error occurred, preventing the request to be fulfilled,
192 	 * the function should return a negative error code.
193 	 *
194 	 * Note that @mem::mm_node will only be dereferenced by
195 	 * struct ttm_mem_type_manager functions and optionally by the driver,
196 	 * which has knowledge of the underlying type.
197 	 *
198 	 * This function may not be called from within atomic context, so
199 	 * an implementation can and must use either a mutex or a spinlock to
200 	 * protect any data structures managing the space.
201 	 */
202 	int  (*get_node)(struct ttm_mem_type_manager *man,
203 			 struct ttm_buffer_object *bo,
204 			 struct ttm_placement *placement,
205 			 struct ttm_mem_reg *mem);
206 
207 	/**
208 	 * struct ttm_mem_type_manager member put_node
209 	 *
210 	 * @man: Pointer to a memory type manager.
211 	 * @mem: Pointer to a struct ttm_mem_reg to be filled in.
212 	 *
213 	 * This function frees memory type resources previously allocated
214 	 * and that are identified by @mem::mm_node and @mem::start. May not
215 	 * be called from within atomic context.
216 	 */
217 	void (*put_node)(struct ttm_mem_type_manager *man,
218 			 struct ttm_mem_reg *mem);
219 
220 	/**
221 	 * struct ttm_mem_type_manager member debug
222 	 *
223 	 * @man: Pointer to a memory type manager.
224 	 * @prefix: Prefix to be used in printout to identify the caller.
225 	 *
226 	 * This function is called to print out the state of the memory
227 	 * type manager to aid debugging of out-of-memory conditions.
228 	 * It may not be called from within atomic context.
229 	 */
230 	void (*debug)(struct ttm_mem_type_manager *man, const char *prefix);
231 };
232 
233 /**
234  * struct ttm_mem_type_manager
235  *
236  * @has_type: The memory type has been initialized.
237  * @use_type: The memory type is enabled.
238  * @flags: TTM_MEMTYPE_XX flags identifying the traits of the memory
239  * managed by this memory type.
240  * @gpu_offset: If used, the GPU offset of the first managed page of
241  * fixed memory or the first managed location in an aperture.
242  * @size: Size of the managed region.
243  * @available_caching: A mask of available caching types, TTM_PL_FLAG_XX,
244  * as defined in ttm_placement_common.h
245  * @default_caching: The default caching policy used for a buffer object
246  * placed in this memory type if the user doesn't provide one.
247  * @func: structure pointer implementing the range manager. See above
248  * @priv: Driver private closure for @func.
249  * @io_reserve_mutex: Mutex optionally protecting shared io_reserve structures
250  * @use_io_reserve_lru: Use an lru list to try to unreserve io_mem_regions
251  * reserved by the TTM vm system.
252  * @io_reserve_lru: Optional lru list for unreserving io mem regions.
253  * @io_reserve_fastpath: Only use bdev::driver::io_mem_reserve to obtain
254  * static information. bdev::driver::io_mem_free is never used.
255  * @lru: The lru list for this memory type.
256  *
257  * This structure is used to identify and manage memory types for a device.
258  * It's set up by the ttm_bo_driver::init_mem_type method.
259  */
260 
261 
262 
263 struct ttm_mem_type_manager {
264 	struct ttm_bo_device *bdev;
265 
266 	/*
267 	 * No protection. Constant from start.
268 	 */
269 
270 	bool has_type;
271 	bool use_type;
272 	uint32_t flags;
273 	unsigned long gpu_offset;
274 	uint64_t size;
275 	uint32_t available_caching;
276 	uint32_t default_caching;
277 	const struct ttm_mem_type_manager_func *func;
278 	void *priv;
279 	struct lock io_reserve_mutex;
280 	bool use_io_reserve_lru;
281 	bool io_reserve_fastpath;
282 
283 	/*
284 	 * Protected by @io_reserve_mutex:
285 	 */
286 
287 	struct list_head io_reserve_lru;
288 
289 	/*
290 	 * Protected by the global->lru_lock.
291 	 */
292 
293 	struct list_head lru;
294 };
295 
296 /**
297  * struct ttm_bo_driver
298  *
299  * @create_ttm_backend_entry: Callback to create a struct ttm_backend.
300  * @invalidate_caches: Callback to invalidate read caches when a buffer object
301  * has been evicted.
302  * @init_mem_type: Callback to initialize a struct ttm_mem_type_manager
303  * structure.
304  * @evict_flags: Callback to obtain placement flags when a buffer is evicted.
305  * @move: Callback for a driver to hook in accelerated functions to
306  * move a buffer.
307  * If set to NULL, a potentially slow memcpy() move is used.
308  * @sync_obj_signaled: See ttm_fence_api.h
309  * @sync_obj_wait: See ttm_fence_api.h
310  * @sync_obj_flush: See ttm_fence_api.h
311  * @sync_obj_unref: See ttm_fence_api.h
312  * @sync_obj_ref: See ttm_fence_api.h
313  */
314 
315 struct ttm_bo_driver {
316 	/**
317 	 * ttm_tt_create
318 	 *
319 	 * @bdev: pointer to a struct ttm_bo_device:
320 	 * @size: Size of the data needed backing.
321 	 * @page_flags: Page flags as identified by TTM_PAGE_FLAG_XX flags.
322 	 * @dummy_read_page: See struct ttm_bo_device.
323 	 *
324 	 * Create a struct ttm_tt to back data with system memory pages.
325 	 * No pages are actually allocated.
326 	 * Returns:
327 	 * NULL: Out of memory.
328 	 */
329 	struct ttm_tt *(*ttm_tt_create)(struct ttm_bo_device *bdev,
330 					unsigned long size,
331 					uint32_t page_flags,
332 					struct vm_page *dummy_read_page);
333 
334 	/**
335 	 * ttm_tt_populate
336 	 *
337 	 * @ttm: The struct ttm_tt to contain the backing pages.
338 	 *
339 	 * Allocate all backing pages
340 	 * Returns:
341 	 * -ENOMEM: Out of memory.
342 	 */
343 	int (*ttm_tt_populate)(struct ttm_tt *ttm);
344 
345 	/**
346 	 * ttm_tt_unpopulate
347 	 *
348 	 * @ttm: The struct ttm_tt to contain the backing pages.
349 	 *
350 	 * Free all backing page
351 	 */
352 	void (*ttm_tt_unpopulate)(struct ttm_tt *ttm);
353 
354 	/**
355 	 * struct ttm_bo_driver member invalidate_caches
356 	 *
357 	 * @bdev: the buffer object device.
358 	 * @flags: new placement of the rebound buffer object.
359 	 *
360 	 * A previosly evicted buffer has been rebound in a
361 	 * potentially new location. Tell the driver that it might
362 	 * consider invalidating read (texture) caches on the next command
363 	 * submission as a consequence.
364 	 */
365 
366 	int (*invalidate_caches) (struct ttm_bo_device *bdev, uint32_t flags);
367 	int (*init_mem_type) (struct ttm_bo_device *bdev, uint32_t type,
368 			      struct ttm_mem_type_manager *man);
369 	/**
370 	 * struct ttm_bo_driver member evict_flags:
371 	 *
372 	 * @bo: the buffer object to be evicted
373 	 *
374 	 * Return the bo flags for a buffer which is not mapped to the hardware.
375 	 * These will be placed in proposed_flags so that when the move is
376 	 * finished, they'll end up in bo->mem.flags
377 	 */
378 
379 	 void(*evict_flags) (struct ttm_buffer_object *bo,
380 				struct ttm_placement *placement);
381 	/**
382 	 * struct ttm_bo_driver member move:
383 	 *
384 	 * @bo: the buffer to move
385 	 * @evict: whether this motion is evicting the buffer from
386 	 * the graphics address space
387 	 * @interruptible: Use interruptible sleeps if possible when sleeping.
388 	 * @no_wait: whether this should give up and return -EBUSY
389 	 * if this move would require sleeping
390 	 * @new_mem: the new memory region receiving the buffer
391 	 *
392 	 * Move a buffer between two memory regions.
393 	 */
394 	int (*move) (struct ttm_buffer_object *bo,
395 		     bool evict, bool interruptible,
396 		     bool no_wait_gpu,
397 		     struct ttm_mem_reg *new_mem);
398 
399 	/**
400 	 * struct ttm_bo_driver_member verify_access
401 	 *
402 	 * @bo: Pointer to a buffer object.
403 	 * @filp: Pointer to a struct file trying to access the object.
404 	 * FreeBSD: use devfs_get_cdevpriv etc.
405 	 *
406 	 * Called from the map / write / read methods to verify that the
407 	 * caller is permitted to access the buffer object.
408 	 * This member may be set to NULL, which will refuse this kind of
409 	 * access for all buffer objects.
410 	 * This function should return 0 if access is granted, -EPERM otherwise.
411 	 */
412 	int (*verify_access) (struct ttm_buffer_object *bo);
413 
414 	/**
415 	 * In case a driver writer dislikes the TTM fence objects,
416 	 * the driver writer can replace those with sync objects of
417 	 * his / her own. If it turns out that no driver writer is
418 	 * using these. I suggest we remove these hooks and plug in
419 	 * fences directly. The bo driver needs the following functionality:
420 	 * See the corresponding functions in the fence object API
421 	 * documentation.
422 	 */
423 
424 	bool (*sync_obj_signaled) (void *sync_obj);
425 	int (*sync_obj_wait) (void *sync_obj,
426 			      bool lazy, bool interruptible);
427 	int (*sync_obj_flush) (void *sync_obj);
428 	void (*sync_obj_unref) (void **sync_obj);
429 	void *(*sync_obj_ref) (void *sync_obj);
430 
431 	/* hook to notify driver about a driver move so it
432 	 * can do tiling things */
433 	void (*move_notify)(struct ttm_buffer_object *bo,
434 			    struct ttm_mem_reg *new_mem);
435 	/* notify the driver we are taking a fault on this BO
436 	 * and have reserved it */
437 	int (*fault_reserve_notify)(struct ttm_buffer_object *bo);
438 
439 	/**
440 	 * notify the driver that we're about to swap out this bo
441 	 */
442 	void (*swap_notify) (struct ttm_buffer_object *bo);
443 
444 	/**
445 	 * Driver callback on when mapping io memory (for bo_move_memcpy
446 	 * for instance). TTM will take care to call io_mem_free whenever
447 	 * the mapping is not use anymore. io_mem_reserve & io_mem_free
448 	 * are balanced.
449 	 */
450 	int (*io_mem_reserve)(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem);
451 	void (*io_mem_free)(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem);
452 };
453 
454 /**
455  * struct ttm_bo_global_ref - Argument to initialize a struct ttm_bo_global.
456  */
457 
458 struct ttm_bo_global_ref {
459 	struct drm_global_reference ref;
460 	struct ttm_mem_global *mem_glob;
461 };
462 
463 /**
464  * struct ttm_bo_global - Buffer object driver global data.
465  *
466  * @mem_glob: Pointer to a struct ttm_mem_global object for accounting.
467  * @dummy_read_page: Pointer to a dummy page used for mapping requests
468  * of unpopulated pages.
469  * @shrink: A shrink callback object used for buffer object swap.
470  * @device_list_mutex: Mutex protecting the device list.
471  * This mutex is held while traversing the device list for pm options.
472  * @lru_lock: Spinlock protecting the bo subsystem lru lists.
473  * @device_list: List of buffer object devices.
474  * @swap_lru: Lru list of buffer objects used for swapping.
475  */
476 
477 struct ttm_bo_global {
478 	u_int kobj_ref;
479 
480 	/**
481 	 * Constant after init.
482 	 */
483 
484 	struct ttm_mem_global *mem_glob;
485 	struct vm_page *dummy_read_page;
486 	struct ttm_mem_shrink shrink;
487 	struct lock device_list_mutex;
488 	struct lock lru_lock;
489 
490 	/**
491 	 * Protected by device_list_mutex.
492 	 */
493 	struct list_head device_list;
494 
495 	/**
496 	 * Protected by the lru_lock.
497 	 */
498 	struct list_head swap_lru;
499 
500 	/**
501 	 * Internal protection.
502 	 */
503 	atomic_t bo_count;
504 };
505 
506 
507 #define TTM_NUM_MEM_TYPES 8
508 
509 #define TTM_BO_PRIV_FLAG_MOVING	0	/* Buffer object is moving and needs
510 					   idling before CPU mapping */
511 #define TTM_BO_PRIV_FLAG_MAX	1
512 #define TTM_BO_PRIV_FLAG_ACTIVE	2	/* Used for release sequencing */
513 /**
514  * struct ttm_bo_device - Buffer object driver device-specific data.
515  *
516  * @driver: Pointer to a struct ttm_bo_driver struct setup by the driver.
517  * @man: An array of mem_type_managers.
518  * @fence_lock: Protects the synchronizing members on *all* bos belonging
519  * to this device.
520  * @addr_space_mm: Range manager for the device address space.
521  * lru_lock: Spinlock that protects the buffer+device lru lists and
522  * ddestroy lists.
523  * @val_seq: Current validation sequence.
524  * @dev_mapping: A pointer to the struct address_space representing the
525  * device address space.
526  * @wq: Work queue structure for the delayed delete workqueue.
527  *
528  */
529 
530 struct ttm_bo_device {
531 
532 	/*
533 	 * Constant after bo device init / atomic.
534 	 */
535 	struct list_head device_list;
536 	struct ttm_bo_global *glob;
537 	struct ttm_bo_driver *driver;
538 	struct lock vm_lock;
539 	struct ttm_mem_type_manager man[TTM_NUM_MEM_TYPES];
540 	struct lock fence_lock;
541 	/*
542 	 * Protected by the vm lock.
543 	 */
544 	struct rb_root addr_space_rb;
545 
546 	struct drm_mm addr_space_mm;
547 
548 	/*
549 	 * Protected by the global:lru lock.
550 	 */
551 	struct list_head ddestroy;
552 	uint32_t val_seq;
553 
554 	/*
555 	 * Protected by load / firstopen / lastclose /unload sync.
556 	 */
557 
558 	struct address_space *dev_mapping;
559 
560 	/*
561 	 * Internal protection.
562 	 */
563 
564 	struct delayed_work wq;
565 
566 	bool need_dma32;
567 };
568 
569 /**
570  * ttm_flag_masked
571  *
572  * @old: Pointer to the result and original value.
573  * @new: New value of bits.
574  * @mask: Mask of bits to change.
575  *
576  * Convenience function to change a number of bits identified by a mask.
577  */
578 
579 static inline uint32_t
580 ttm_flag_masked(uint32_t *old, uint32_t new, uint32_t mask)
581 {
582 	*old ^= (*old ^ new) & mask;
583 	return *old;
584 }
585 
586 /**
587  * ttm_tt_init
588  *
589  * @ttm: The struct ttm_tt.
590  * @bdev: pointer to a struct ttm_bo_device:
591  * @size: Size of the data needed backing.
592  * @page_flags: Page flags as identified by TTM_PAGE_FLAG_XX flags.
593  * @dummy_read_page: See struct ttm_bo_device.
594  *
595  * Create a struct ttm_tt to back data with system memory pages.
596  * No pages are actually allocated.
597  * Returns:
598  * NULL: Out of memory.
599  */
600 extern int ttm_tt_init(struct ttm_tt *ttm, struct ttm_bo_device *bdev,
601 			unsigned long size, uint32_t page_flags,
602 			struct vm_page *dummy_read_page);
603 extern int ttm_dma_tt_init(struct ttm_dma_tt *ttm_dma, struct ttm_bo_device *bdev,
604 			   unsigned long size, uint32_t page_flags,
605 			   struct vm_page *dummy_read_page);
606 
607 /**
608  * ttm_tt_fini
609  *
610  * @ttm: the ttm_tt structure.
611  *
612  * Free memory of ttm_tt structure
613  */
614 extern void ttm_tt_fini(struct ttm_tt *ttm);
615 extern void ttm_dma_tt_fini(struct ttm_dma_tt *ttm_dma);
616 
617 /**
618  * ttm_ttm_bind:
619  *
620  * @ttm: The struct ttm_tt containing backing pages.
621  * @bo_mem: The struct ttm_mem_reg identifying the binding location.
622  *
623  * Bind the pages of @ttm to an aperture location identified by @bo_mem
624  */
625 extern int ttm_tt_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem);
626 
627 /**
628  * ttm_ttm_destroy:
629  *
630  * @ttm: The struct ttm_tt.
631  *
632  * Unbind, unpopulate and destroy common struct ttm_tt.
633  */
634 extern void ttm_tt_destroy(struct ttm_tt *ttm);
635 
636 /**
637  * ttm_ttm_unbind:
638  *
639  * @ttm: The struct ttm_tt.
640  *
641  * Unbind a struct ttm_tt.
642  */
643 extern void ttm_tt_unbind(struct ttm_tt *ttm);
644 
645 /**
646  * ttm_tt_swapin:
647  *
648  * @ttm: The struct ttm_tt.
649  *
650  * Swap in a previously swap out ttm_tt.
651  */
652 extern int ttm_tt_swapin(struct ttm_tt *ttm);
653 
654 /**
655  * ttm_tt_cache_flush:
656  *
657  * @pages: An array of pointers to struct page:s to flush.
658  * @num_pages: Number of pages to flush.
659  *
660  * Flush the data of the indicated pages from the cpu caches.
661  * This is used when changing caching attributes of the pages from
662  * cache-coherent.
663  */
664 extern void ttm_tt_cache_flush(struct vm_page *pages[], unsigned long num_pages);
665 
666 /**
667  * ttm_tt_set_placement_caching:
668  *
669  * @ttm A struct ttm_tt the backing pages of which will change caching policy.
670  * @placement: Flag indicating the desired caching policy.
671  *
672  * This function will change caching policy of any default kernel mappings of
673  * the pages backing @ttm. If changing from cached to uncached or
674  * write-combined,
675  * all CPU caches will first be flushed to make sure the data of the pages
676  * hit RAM. This function may be very costly as it involves global TLB
677  * and cache flushes and potential page splitting / combining.
678  */
679 extern int ttm_tt_set_placement_caching(struct ttm_tt *ttm, uint32_t placement);
680 extern int ttm_tt_swapout(struct ttm_tt *ttm,
681 			  struct vm_object *persistent_swap_storage);
682 
683 /*
684  * ttm_bo.c
685  */
686 
687 /**
688  * ttm_mem_reg_is_pci
689  *
690  * @bdev: Pointer to a struct ttm_bo_device.
691  * @mem: A valid struct ttm_mem_reg.
692  *
693  * Returns true if the memory described by @mem is PCI memory,
694  * false otherwise.
695  */
696 extern bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev,
697 				   struct ttm_mem_reg *mem);
698 
699 /**
700  * ttm_bo_mem_space
701  *
702  * @bo: Pointer to a struct ttm_buffer_object. the data of which
703  * we want to allocate space for.
704  * @proposed_placement: Proposed new placement for the buffer object.
705  * @mem: A struct ttm_mem_reg.
706  * @interruptible: Sleep interruptible when sliping.
707  * @no_wait_gpu: Return immediately if the GPU is busy.
708  *
709  * Allocate memory space for the buffer object pointed to by @bo, using
710  * the placement flags in @mem, potentially evicting other idle buffer objects.
711  * This function may sleep while waiting for space to become available.
712  * Returns:
713  * -EBUSY: No space available (only if no_wait == 1).
714  * -ENOMEM: Could not allocate memory for the buffer object, either due to
715  * fragmentation or concurrent allocators.
716  * -ERESTARTSYS: An interruptible sleep was interrupted by a signal.
717  */
718 extern int ttm_bo_mem_space(struct ttm_buffer_object *bo,
719 				struct ttm_placement *placement,
720 				struct ttm_mem_reg *mem,
721 				bool interruptible,
722 				bool no_wait_gpu);
723 
724 extern void ttm_bo_mem_put(struct ttm_buffer_object *bo,
725 			   struct ttm_mem_reg *mem);
726 extern void ttm_bo_mem_put_locked(struct ttm_buffer_object *bo,
727 				  struct ttm_mem_reg *mem);
728 
729 extern void ttm_bo_global_release(struct drm_global_reference *ref);
730 extern int ttm_bo_global_init(struct drm_global_reference *ref);
731 
732 extern int ttm_bo_device_release(struct ttm_bo_device *bdev);
733 
734 /**
735  * ttm_bo_device_init
736  *
737  * @bdev: A pointer to a struct ttm_bo_device to initialize.
738  * @glob: A pointer to an initialized struct ttm_bo_global.
739  * @driver: A pointer to a struct ttm_bo_driver set up by the caller.
740  * @file_page_offset: Offset into the device address space that is available
741  * for buffer data. This ensures compatibility with other users of the
742  * address space.
743  *
744  * Initializes a struct ttm_bo_device:
745  * Returns:
746  * !0: Failure.
747  */
748 extern int ttm_bo_device_init(struct ttm_bo_device *bdev,
749 			      struct ttm_bo_global *glob,
750 			      struct ttm_bo_driver *driver,
751 			      uint64_t file_page_offset, bool need_dma32);
752 
753 /**
754  * ttm_bo_unmap_virtual
755  *
756  * @bo: tear down the virtual mappings for this BO
757  */
758 extern void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo);
759 
760 /**
761  * ttm_bo_unmap_virtual
762  *
763  * @bo: tear down the virtual mappings for this BO
764  *
765  * The caller must take ttm_mem_io_lock before calling this function.
766  */
767 extern void ttm_bo_unmap_virtual_locked(struct ttm_buffer_object *bo);
768 
769 extern int ttm_mem_io_reserve_vm(struct ttm_buffer_object *bo);
770 extern void ttm_mem_io_free_vm(struct ttm_buffer_object *bo);
771 extern int ttm_mem_io_lock(struct ttm_mem_type_manager *man,
772 			   bool interruptible);
773 extern void ttm_mem_io_unlock(struct ttm_mem_type_manager *man);
774 
775 
776 /**
777  * ttm_bo_reserve:
778  *
779  * @bo: A pointer to a struct ttm_buffer_object.
780  * @interruptible: Sleep interruptible if waiting.
781  * @no_wait: Don't sleep while trying to reserve, rather return -EBUSY.
782  * @use_sequence: If @bo is already reserved, Only sleep waiting for
783  * it to become unreserved if @sequence < (@bo)->sequence.
784  *
785  * Locks a buffer object for validation. (Or prevents other processes from
786  * locking it for validation) and removes it from lru lists, while taking
787  * a number of measures to prevent deadlocks.
788  *
789  * Deadlocks may occur when two processes try to reserve multiple buffers in
790  * different order, either by will or as a result of a buffer being evicted
791  * to make room for a buffer already reserved. (Buffers are reserved before
792  * they are evicted). The following algorithm prevents such deadlocks from
793  * occurring:
794  * Processes attempting to reserve multiple buffers other than for eviction,
795  * (typically execbuf), should first obtain a unique 32-bit
796  * validation sequence number,
797  * and call this function with @use_sequence == 1 and @sequence == the unique
798  * sequence number. If upon call of this function, the buffer object is already
799  * reserved, the validation sequence is checked against the validation
800  * sequence of the process currently reserving the buffer,
801  * and if the current validation sequence is greater than that of the process
802  * holding the reservation, the function returns -EAGAIN. Otherwise it sleeps
803  * waiting for the buffer to become unreserved, after which it retries
804  * reserving.
805  * The caller should, when receiving an -EAGAIN error
806  * release all its buffer reservations, wait for @bo to become unreserved, and
807  * then rerun the validation with the same validation sequence. This procedure
808  * will always guarantee that the process with the lowest validation sequence
809  * will eventually succeed, preventing both deadlocks and starvation.
810  *
811  * Returns:
812  * -EAGAIN: The reservation may cause a deadlock.
813  * Release all buffer reservations, wait for @bo to become unreserved and
814  * try again. (only if use_sequence == 1).
815  * -ERESTARTSYS: A wait for the buffer to become unreserved was interrupted by
816  * a signal. Release all buffer reservations and return to user-space.
817  * -EBUSY: The function needed to sleep, but @no_wait was true
818  * -EDEADLK: Bo already reserved using @sequence. This error code will only
819  * be returned if @use_sequence is set to true.
820  */
821 extern int ttm_bo_reserve(struct ttm_buffer_object *bo,
822 			  bool interruptible,
823 			  bool no_wait, bool use_sequence, uint32_t sequence);
824 
825 /**
826  * ttm_bo_reserve_slowpath_nolru:
827  * @bo: A pointer to a struct ttm_buffer_object.
828  * @interruptible: Sleep interruptible if waiting.
829  * @sequence: Set (@bo)->sequence to this value after lock
830  *
831  * This is called after ttm_bo_reserve returns -EAGAIN and we backed off
832  * from all our other reservations. Because there are no other reservations
833  * held by us, this function cannot deadlock any more.
834  *
835  * Will not remove reserved buffers from the lru lists.
836  * Otherwise identical to ttm_bo_reserve_slowpath.
837  */
838 extern int ttm_bo_reserve_slowpath_nolru(struct ttm_buffer_object *bo,
839 					 bool interruptible,
840 					 uint32_t sequence);
841 
842 
843 /**
844  * ttm_bo_reserve_slowpath:
845  * @bo: A pointer to a struct ttm_buffer_object.
846  * @interruptible: Sleep interruptible if waiting.
847  * @sequence: Set (@bo)->sequence to this value after lock
848  *
849  * This is called after ttm_bo_reserve returns -EAGAIN and we backed off
850  * from all our other reservations. Because there are no other reservations
851  * held by us, this function cannot deadlock any more.
852  */
853 extern int ttm_bo_reserve_slowpath(struct ttm_buffer_object *bo,
854 				   bool interruptible, uint32_t sequence);
855 
856 /**
857  * ttm_bo_reserve_nolru:
858  *
859  * @bo: A pointer to a struct ttm_buffer_object.
860  * @interruptible: Sleep interruptible if waiting.
861  * @no_wait: Don't sleep while trying to reserve, rather return -EBUSY.
862  * @use_sequence: If @bo is already reserved, Only sleep waiting for
863  * it to become unreserved if @sequence < (@bo)->sequence.
864  *
865  * Will not remove reserved buffers from the lru lists.
866  * Otherwise identical to ttm_bo_reserve.
867  *
868  * Returns:
869  * -EAGAIN: The reservation may cause a deadlock.
870  * Release all buffer reservations, wait for @bo to become unreserved and
871  * try again. (only if use_sequence == 1).
872  * -ERESTARTSYS: A wait for the buffer to become unreserved was interrupted by
873  * a signal. Release all buffer reservations and return to user-space.
874  * -EBUSY: The function needed to sleep, but @no_wait was true
875  * -EDEADLK: Bo already reserved using @sequence. This error code will only
876  * be returned if @use_sequence is set to true.
877  */
878 extern int ttm_bo_reserve_nolru(struct ttm_buffer_object *bo,
879 				 bool interruptible,
880 				 bool no_wait, bool use_sequence,
881 				 uint32_t sequence);
882 
883 /**
884  * ttm_bo_unreserve
885  *
886  * @bo: A pointer to a struct ttm_buffer_object.
887  *
888  * Unreserve a previous reservation of @bo.
889  */
890 extern void ttm_bo_unreserve(struct ttm_buffer_object *bo);
891 
892 /**
893  * ttm_bo_unreserve_locked
894  *
895  * @bo: A pointer to a struct ttm_buffer_object.
896  *
897  * Unreserve a previous reservation of @bo.
898  * Needs to be called with struct ttm_bo_global::lru_lock held.
899  */
900 extern void ttm_bo_unreserve_locked(struct ttm_buffer_object *bo);
901 
902 /*
903  * ttm_bo_util.c
904  */
905 
906 /**
907  * ttm_bo_move_ttm
908  *
909  * @bo: A pointer to a struct ttm_buffer_object.
910  * @evict: 1: This is an eviction. Don't try to pipeline.
911  * @no_wait_gpu: Return immediately if the GPU is busy.
912  * @new_mem: struct ttm_mem_reg indicating where to move.
913  *
914  * Optimized move function for a buffer object with both old and
915  * new placement backed by a TTM. The function will, if successful,
916  * free any old aperture space, and set (@new_mem)->mm_node to NULL,
917  * and update the (@bo)->mem placement flags. If unsuccessful, the old
918  * data remains untouched, and it's up to the caller to free the
919  * memory space indicated by @new_mem.
920  * Returns:
921  * !0: Failure.
922  */
923 
924 extern int ttm_bo_move_ttm(struct ttm_buffer_object *bo,
925 			   bool evict, bool no_wait_gpu,
926 			   struct ttm_mem_reg *new_mem);
927 
928 /**
929  * ttm_bo_move_memcpy
930  *
931  * @bo: A pointer to a struct ttm_buffer_object.
932  * @evict: 1: This is an eviction. Don't try to pipeline.
933  * @no_wait_gpu: Return immediately if the GPU is busy.
934  * @new_mem: struct ttm_mem_reg indicating where to move.
935  *
936  * Fallback move function for a mappable buffer object in mappable memory.
937  * The function will, if successful,
938  * free any old aperture space, and set (@new_mem)->mm_node to NULL,
939  * and update the (@bo)->mem placement flags. If unsuccessful, the old
940  * data remains untouched, and it's up to the caller to free the
941  * memory space indicated by @new_mem.
942  * Returns:
943  * !0: Failure.
944  */
945 
946 extern int ttm_bo_move_memcpy(struct ttm_buffer_object *bo,
947 			      bool evict, bool no_wait_gpu,
948 			      struct ttm_mem_reg *new_mem);
949 
950 /**
951  * ttm_bo_free_old_node
952  *
953  * @bo: A pointer to a struct ttm_buffer_object.
954  *
955  * Utility function to free an old placement after a successful move.
956  */
957 extern void ttm_bo_free_old_node(struct ttm_buffer_object *bo);
958 
959 /**
960  * ttm_bo_move_accel_cleanup.
961  *
962  * @bo: A pointer to a struct ttm_buffer_object.
963  * @sync_obj: A sync object that signals when moving is complete.
964  * @evict: This is an evict move. Don't return until the buffer is idle.
965  * @no_wait_gpu: Return immediately if the GPU is busy.
966  * @new_mem: struct ttm_mem_reg indicating where to move.
967  *
968  * Accelerated move function to be called when an accelerated move
969  * has been scheduled. The function will create a new temporary buffer object
970  * representing the old placement, and put the sync object on both buffer
971  * objects. After that the newly created buffer object is unref'd to be
972  * destroyed when the move is complete. This will help pipeline
973  * buffer moves.
974  */
975 
976 extern int ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo,
977 				     void *sync_obj,
978 				     bool evict, bool no_wait_gpu,
979 				     struct ttm_mem_reg *new_mem);
980 /**
981  * ttm_io_prot
982  *
983  * @c_state: Caching state.
984  * @tmp: Page protection flag for a normal, cached mapping.
985  *
986  * Utility function that returns the pgprot_t that should be used for
987  * setting up a PTE with the caching model indicated by @c_state.
988  */
989 extern vm_memattr_t ttm_io_prot(uint32_t caching_flags);
990 
991 extern const struct ttm_mem_type_manager_func ttm_bo_manager_func;
992 
993 #if (defined(CONFIG_AGP) || (defined(CONFIG_AGP_MODULE) && defined(MODULE)))
994 #define TTM_HAS_AGP
995 #include <linux/agp_backend.h>
996 
997 /**
998  * ttm_agp_tt_create
999  *
1000  * @bdev: Pointer to a struct ttm_bo_device.
1001  * @bridge: The agp bridge this device is sitting on.
1002  * @size: Size of the data needed backing.
1003  * @page_flags: Page flags as identified by TTM_PAGE_FLAG_XX flags.
1004  * @dummy_read_page: See struct ttm_bo_device.
1005  *
1006  *
1007  * Create a TTM backend that uses the indicated AGP bridge as an aperture
1008  * for TT memory. This function uses the linux agpgart interface to
1009  * bind and unbind memory backing a ttm_tt.
1010  */
1011 extern struct ttm_tt *ttm_agp_tt_create(struct ttm_bo_device *bdev,
1012 					struct agp_bridge_data *bridge,
1013 					unsigned long size, uint32_t page_flags,
1014 					struct vm_page *dummy_read_page);
1015 int ttm_agp_tt_populate(struct ttm_tt *ttm);
1016 void ttm_agp_tt_unpopulate(struct ttm_tt *ttm);
1017 #endif
1018 
1019 #endif
1020