blob: ebcd3dd7203bf56a9f174194df6bad896bbdff38 [file] [log] [blame]
Thomas Hellstromba4e7d92009-06-10 15:20:19 +02001/**************************************************************************
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#ifndef _TTM_BO_DRIVER_H_
31#define _TTM_BO_DRIVER_H_
32
33#include "ttm/ttm_bo_api.h"
34#include "ttm/ttm_memory.h"
Thomas Hellstroma987fca2009-08-18 16:51:56 +020035#include "ttm/ttm_module.h"
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020036#include "drm_mm.h"
Dave Airlieba4420c2010-03-09 10:56:52 +100037#include "drm_global.h"
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020038#include "linux/workqueue.h"
39#include "linux/fs.h"
40#include "linux/spinlock.h"
41
42struct ttm_backend;
43
44struct ttm_backend_func {
45 /**
46 * struct ttm_backend_func member populate
47 *
48 * @backend: Pointer to a struct ttm_backend.
49 * @num_pages: Number of pages to populate.
50 * @pages: Array of pointers to ttm pages.
51 * @dummy_read_page: Page to be used instead of NULL pages in the
52 * array @pages.
Konrad Rzeszutek Wilk27e8b232010-12-02 10:24:13 -050053 * @dma_addrs: Array of DMA (bus) address of the ttm pages.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020054 *
55 * Populate the backend with ttm pages. Depending on the backend,
56 * it may or may not copy the @pages array.
57 */
58 int (*populate) (struct ttm_backend *backend,
59 unsigned long num_pages, struct page **pages,
Konrad Rzeszutek Wilk27e8b232010-12-02 10:24:13 -050060 struct page *dummy_read_page,
61 dma_addr_t *dma_addrs);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +020062 /**
63 * struct ttm_backend_func member clear
64 *
65 * @backend: Pointer to a struct ttm_backend.
66 *
67 * This is an "unpopulate" function. Release all resources
68 * allocated with populate.
69 */
70 void (*clear) (struct ttm_backend *backend);
71
72 /**
73 * struct ttm_backend_func member bind
74 *
75 * @backend: Pointer to a struct ttm_backend.
76 * @bo_mem: Pointer to a struct ttm_mem_reg describing the
77 * memory type and location for binding.
78 *
79 * Bind the backend pages into the aperture in the location
80 * indicated by @bo_mem. This function should be able to handle
81 * differences between aperture- and system page sizes.
82 */
83 int (*bind) (struct ttm_backend *backend, struct ttm_mem_reg *bo_mem);
84
85 /**
86 * struct ttm_backend_func member unbind
87 *
88 * @backend: Pointer to a struct ttm_backend.
89 *
90 * Unbind previously bound backend pages. This function should be
91 * able to handle differences between aperture- and system page sizes.
92 */
93 int (*unbind) (struct ttm_backend *backend);
94
95 /**
96 * struct ttm_backend_func member destroy
97 *
98 * @backend: Pointer to a struct ttm_backend.
99 *
100 * Destroy the backend.
101 */
102 void (*destroy) (struct ttm_backend *backend);
103};
104
105/**
106 * struct ttm_backend
107 *
108 * @bdev: Pointer to a struct ttm_bo_device.
109 * @flags: For driver use.
110 * @func: Pointer to a struct ttm_backend_func that describes
111 * the backend methods.
112 *
113 */
114
115struct ttm_backend {
116 struct ttm_bo_device *bdev;
117 uint32_t flags;
118 struct ttm_backend_func *func;
119};
120
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200121#define TTM_PAGE_FLAG_USER (1 << 1)
122#define TTM_PAGE_FLAG_USER_DIRTY (1 << 2)
123#define TTM_PAGE_FLAG_WRITE (1 << 3)
124#define TTM_PAGE_FLAG_SWAPPED (1 << 4)
125#define TTM_PAGE_FLAG_PERSISTANT_SWAP (1 << 5)
126#define TTM_PAGE_FLAG_ZERO_ALLOC (1 << 6)
Dave Airliead49f502009-07-10 22:36:26 +1000127#define TTM_PAGE_FLAG_DMA32 (1 << 7)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200128
129enum ttm_caching_state {
130 tt_uncached,
131 tt_wc,
132 tt_cached
133};
134
135/**
136 * struct ttm_tt
137 *
138 * @dummy_read_page: Page to map where the ttm_tt page array contains a NULL
139 * pointer.
140 * @pages: Array of pages backing the data.
141 * @first_himem_page: Himem pages are put last in the page array, which
142 * enables us to run caching attribute changes on only the first part
143 * of the page array containing lomem pages. This is the index of the
144 * first himem page.
145 * @last_lomem_page: Index of the last lomem page in the page array.
146 * @num_pages: Number of pages in the page array.
147 * @bdev: Pointer to the current struct ttm_bo_device.
148 * @be: Pointer to the ttm backend.
149 * @tsk: The task for user ttm.
150 * @start: virtual address for user ttm.
151 * @swap_storage: Pointer to shmem struct file for swap storage.
152 * @caching_state: The current caching state of the pages.
153 * @state: The current binding state of the pages.
Konrad Rzeszutek Wilkf9820a42010-11-29 13:52:18 -0500154 * @dma_address: The DMA (bus) addresses of the pages (if TTM_PAGE_FLAG_DMA32)
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200155 *
156 * This is a structure holding the pages, caching- and aperture binding
157 * status for a buffer object that isn't backed by fixed (VRAM / AGP)
158 * memory.
159 */
160
161struct ttm_tt {
162 struct page *dummy_read_page;
163 struct page **pages;
164 long first_himem_page;
165 long last_lomem_page;
166 uint32_t page_flags;
167 unsigned long num_pages;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200168 struct ttm_bo_global *glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200169 struct ttm_backend *be;
170 struct task_struct *tsk;
171 unsigned long start;
172 struct file *swap_storage;
173 enum ttm_caching_state caching_state;
174 enum {
175 tt_bound,
176 tt_unbound,
177 tt_unpopulated,
178 } state;
Konrad Rzeszutek Wilkf9820a42010-11-29 13:52:18 -0500179 dma_addr_t *dma_address;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200180};
181
182#define TTM_MEMTYPE_FLAG_FIXED (1 << 0) /* Fixed (on-card) PCI memory */
183#define TTM_MEMTYPE_FLAG_MAPPABLE (1 << 1) /* Memory mappable */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200184#define TTM_MEMTYPE_FLAG_CMA (1 << 3) /* Can't map aperture */
185
186/**
187 * struct ttm_mem_type_manager
188 *
189 * @has_type: The memory type has been initialized.
190 * @use_type: The memory type is enabled.
191 * @flags: TTM_MEMTYPE_XX flags identifying the traits of the memory
192 * managed by this memory type.
193 * @gpu_offset: If used, the GPU offset of the first managed page of
194 * fixed memory or the first managed location in an aperture.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200195 * @size: Size of the managed region.
196 * @available_caching: A mask of available caching types, TTM_PL_FLAG_XX,
197 * as defined in ttm_placement_common.h
198 * @default_caching: The default caching policy used for a buffer object
199 * placed in this memory type if the user doesn't provide one.
200 * @manager: The range manager used for this memory type. FIXME: If the aperture
201 * has a page size different from the underlying system, the granularity
202 * of this manager should take care of this. But the range allocating code
203 * in ttm_bo.c needs to be modified for this.
204 * @lru: The lru list for this memory type.
205 *
206 * This structure is used to identify and manage memory types for a device.
207 * It's set up by the ttm_bo_driver::init_mem_type method.
208 */
209
Ben Skeggsd961db72010-08-05 10:48:18 +1000210struct ttm_mem_type_manager;
211
212struct ttm_mem_type_manager_func {
Thomas Hellstrom3205bc22010-10-29 10:46:44 +0200213 /**
214 * struct ttm_mem_type_manager member init
215 *
216 * @man: Pointer to a memory type manager.
217 * @p_size: Implementation dependent, but typically the size of the
218 * range to be managed in pages.
219 *
220 * Called to initialize a private range manager. The function is
221 * expected to initialize the man::priv member.
222 * Returns 0 on success, negative error code on failure.
223 */
Ben Skeggsd961db72010-08-05 10:48:18 +1000224 int (*init)(struct ttm_mem_type_manager *man, unsigned long p_size);
Thomas Hellstrom3205bc22010-10-29 10:46:44 +0200225
226 /**
227 * struct ttm_mem_type_manager member takedown
228 *
229 * @man: Pointer to a memory type manager.
230 *
231 * Called to undo the setup done in init. All allocated resources
232 * should be freed.
233 */
Ben Skeggsd961db72010-08-05 10:48:18 +1000234 int (*takedown)(struct ttm_mem_type_manager *man);
Thomas Hellstrom3205bc22010-10-29 10:46:44 +0200235
236 /**
237 * struct ttm_mem_type_manager member get_node
238 *
239 * @man: Pointer to a memory type manager.
240 * @bo: Pointer to the buffer object we're allocating space for.
241 * @placement: Placement details.
242 * @mem: Pointer to a struct ttm_mem_reg to be filled in.
243 *
244 * This function should allocate space in the memory type managed
245 * by @man. Placement details if
246 * applicable are given by @placement. If successful,
247 * @mem::mm_node should be set to a non-null value, and
248 * @mem::start should be set to a value identifying the beginning
249 * of the range allocated, and the function should return zero.
250 * If the memory region accomodate the buffer object, @mem::mm_node
251 * should be set to NULL, and the function should return 0.
252 * If a system error occured, preventing the request to be fulfilled,
253 * the function should return a negative error code.
254 *
255 * Note that @mem::mm_node will only be dereferenced by
256 * struct ttm_mem_type_manager functions and optionally by the driver,
257 * which has knowledge of the underlying type.
258 *
259 * This function may not be called from within atomic context, so
260 * an implementation can and must use either a mutex or a spinlock to
261 * protect any data structures managing the space.
262 */
Ben Skeggsd961db72010-08-05 10:48:18 +1000263 int (*get_node)(struct ttm_mem_type_manager *man,
264 struct ttm_buffer_object *bo,
265 struct ttm_placement *placement,
266 struct ttm_mem_reg *mem);
Thomas Hellstrom3205bc22010-10-29 10:46:44 +0200267
268 /**
269 * struct ttm_mem_type_manager member put_node
270 *
271 * @man: Pointer to a memory type manager.
272 * @mem: Pointer to a struct ttm_mem_reg to be filled in.
273 *
274 * This function frees memory type resources previously allocated
275 * and that are identified by @mem::mm_node and @mem::start. May not
276 * be called from within atomic context.
277 */
Ben Skeggsd961db72010-08-05 10:48:18 +1000278 void (*put_node)(struct ttm_mem_type_manager *man,
279 struct ttm_mem_reg *mem);
Thomas Hellstrom3205bc22010-10-29 10:46:44 +0200280
281 /**
282 * struct ttm_mem_type_manager member debug
283 *
284 * @man: Pointer to a memory type manager.
285 * @prefix: Prefix to be used in printout to identify the caller.
286 *
287 * This function is called to print out the state of the memory
288 * type manager to aid debugging of out-of-memory conditions.
289 * It may not be called from within atomic context.
290 */
Ben Skeggsd961db72010-08-05 10:48:18 +1000291 void (*debug)(struct ttm_mem_type_manager *man, const char *prefix);
292};
293
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200294struct ttm_mem_type_manager {
Ben Skeggsd961db72010-08-05 10:48:18 +1000295 struct ttm_bo_device *bdev;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200296
297 /*
298 * No protection. Constant from start.
299 */
300
301 bool has_type;
302 bool use_type;
303 uint32_t flags;
304 unsigned long gpu_offset;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200305 uint64_t size;
306 uint32_t available_caching;
307 uint32_t default_caching;
Ben Skeggsd961db72010-08-05 10:48:18 +1000308 const struct ttm_mem_type_manager_func *func;
309 void *priv;
Thomas Hellstrom3205bc22010-10-29 10:46:44 +0200310
311 /*
312 * Protected by the global->lru_lock.
313 */
314
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200315 struct list_head lru;
316};
317
318/**
319 * struct ttm_bo_driver
320 *
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200321 * @create_ttm_backend_entry: Callback to create a struct ttm_backend.
322 * @invalidate_caches: Callback to invalidate read caches when a buffer object
323 * has been evicted.
324 * @init_mem_type: Callback to initialize a struct ttm_mem_type_manager
325 * structure.
326 * @evict_flags: Callback to obtain placement flags when a buffer is evicted.
327 * @move: Callback for a driver to hook in accelerated functions to
328 * move a buffer.
329 * If set to NULL, a potentially slow memcpy() move is used.
330 * @sync_obj_signaled: See ttm_fence_api.h
331 * @sync_obj_wait: See ttm_fence_api.h
332 * @sync_obj_flush: See ttm_fence_api.h
333 * @sync_obj_unref: See ttm_fence_api.h
334 * @sync_obj_ref: See ttm_fence_api.h
335 */
336
337struct ttm_bo_driver {
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200338 /**
339 * struct ttm_bo_driver member create_ttm_backend_entry
340 *
341 * @bdev: The buffer object device.
342 *
343 * Create a driver specific struct ttm_backend.
344 */
345
346 struct ttm_backend *(*create_ttm_backend_entry)
347 (struct ttm_bo_device *bdev);
348
349 /**
350 * struct ttm_bo_driver member invalidate_caches
351 *
352 * @bdev: the buffer object device.
353 * @flags: new placement of the rebound buffer object.
354 *
355 * A previosly evicted buffer has been rebound in a
356 * potentially new location. Tell the driver that it might
357 * consider invalidating read (texture) caches on the next command
358 * submission as a consequence.
359 */
360
361 int (*invalidate_caches) (struct ttm_bo_device *bdev, uint32_t flags);
362 int (*init_mem_type) (struct ttm_bo_device *bdev, uint32_t type,
363 struct ttm_mem_type_manager *man);
364 /**
365 * struct ttm_bo_driver member evict_flags:
366 *
367 * @bo: the buffer object to be evicted
368 *
369 * Return the bo flags for a buffer which is not mapped to the hardware.
370 * These will be placed in proposed_flags so that when the move is
371 * finished, they'll end up in bo->mem.flags
372 */
373
Jerome Glisseca262a9992009-12-08 15:33:32 +0100374 void(*evict_flags) (struct ttm_buffer_object *bo,
375 struct ttm_placement *placement);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200376 /**
377 * struct ttm_bo_driver member move:
378 *
379 * @bo: the buffer to move
380 * @evict: whether this motion is evicting the buffer from
381 * the graphics address space
382 * @interruptible: Use interruptible sleeps if possible when sleeping.
383 * @no_wait: whether this should give up and return -EBUSY
384 * if this move would require sleeping
385 * @new_mem: the new memory region receiving the buffer
386 *
387 * Move a buffer between two memory regions.
388 */
389 int (*move) (struct ttm_buffer_object *bo,
390 bool evict, bool interruptible,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000391 bool no_wait_reserve, bool no_wait_gpu,
392 struct ttm_mem_reg *new_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200393
394 /**
395 * struct ttm_bo_driver_member verify_access
396 *
397 * @bo: Pointer to a buffer object.
398 * @filp: Pointer to a struct file trying to access the object.
399 *
400 * Called from the map / write / read methods to verify that the
401 * caller is permitted to access the buffer object.
402 * This member may be set to NULL, which will refuse this kind of
403 * access for all buffer objects.
404 * This function should return 0 if access is granted, -EPERM otherwise.
405 */
406 int (*verify_access) (struct ttm_buffer_object *bo,
407 struct file *filp);
408
409 /**
410 * In case a driver writer dislikes the TTM fence objects,
411 * the driver writer can replace those with sync objects of
412 * his / her own. If it turns out that no driver writer is
413 * using these. I suggest we remove these hooks and plug in
414 * fences directly. The bo driver needs the following functionality:
415 * See the corresponding functions in the fence object API
416 * documentation.
417 */
418
419 bool (*sync_obj_signaled) (void *sync_obj, void *sync_arg);
420 int (*sync_obj_wait) (void *sync_obj, void *sync_arg,
421 bool lazy, bool interruptible);
422 int (*sync_obj_flush) (void *sync_obj, void *sync_arg);
423 void (*sync_obj_unref) (void **sync_obj);
424 void *(*sync_obj_ref) (void *sync_obj);
Dave Airliee024e112009-06-24 09:48:08 +1000425
426 /* hook to notify driver about a driver move so it
427 * can do tiling things */
428 void (*move_notify)(struct ttm_buffer_object *bo,
429 struct ttm_mem_reg *new_mem);
430 /* notify the driver we are taking a fault on this BO
431 * and have reserved it */
Jerome Glisse82c5da62010-04-09 14:39:23 +0200432 int (*fault_reserve_notify)(struct ttm_buffer_object *bo);
Thomas Hellstrom3f09ea42010-01-13 22:28:40 +0100433
434 /**
435 * notify the driver that we're about to swap out this bo
436 */
437 void (*swap_notify) (struct ttm_buffer_object *bo);
Jerome Glisse82c5da62010-04-09 14:39:23 +0200438
439 /**
440 * Driver callback on when mapping io memory (for bo_move_memcpy
441 * for instance). TTM will take care to call io_mem_free whenever
442 * the mapping is not use anymore. io_mem_reserve & io_mem_free
443 * are balanced.
444 */
445 int (*io_mem_reserve)(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem);
446 void (*io_mem_free)(struct ttm_bo_device *bdev, struct ttm_mem_reg *mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200447};
448
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200449/**
450 * struct ttm_bo_global_ref - Argument to initialize a struct ttm_bo_global.
451 */
452
453struct ttm_bo_global_ref {
Dave Airlieba4420c2010-03-09 10:56:52 +1000454 struct drm_global_reference ref;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200455 struct ttm_mem_global *mem_glob;
456};
457
458/**
459 * struct ttm_bo_global - Buffer object driver global data.
460 *
461 * @mem_glob: Pointer to a struct ttm_mem_global object for accounting.
462 * @dummy_read_page: Pointer to a dummy page used for mapping requests
463 * of unpopulated pages.
464 * @shrink: A shrink callback object used for buffer object swap.
465 * @ttm_bo_extra_size: Extra size (sizeof(struct ttm_buffer_object) excluded)
466 * used by a buffer object. This is excluding page arrays and backing pages.
467 * @ttm_bo_size: This is @ttm_bo_extra_size + sizeof(struct ttm_buffer_object).
468 * @device_list_mutex: Mutex protecting the device list.
469 * This mutex is held while traversing the device list for pm options.
470 * @lru_lock: Spinlock protecting the bo subsystem lru lists.
471 * @device_list: List of buffer object devices.
472 * @swap_lru: Lru list of buffer objects used for swapping.
473 */
474
475struct ttm_bo_global {
476
477 /**
478 * Constant after init.
479 */
480
481 struct kobject kobj;
482 struct ttm_mem_global *mem_glob;
483 struct page *dummy_read_page;
484 struct ttm_mem_shrink shrink;
485 size_t ttm_bo_extra_size;
486 size_t ttm_bo_size;
487 struct mutex device_list_mutex;
488 spinlock_t 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
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200507#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/**
513 * struct ttm_bo_device - Buffer object driver device-specific data.
514 *
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200515 * @driver: Pointer to a struct ttm_bo_driver struct setup by the driver.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200516 * @man: An array of mem_type_managers.
517 * @addr_space_mm: Range manager for the device address space.
518 * lru_lock: Spinlock that protects the buffer+device lru lists and
519 * ddestroy lists.
520 * @nice_mode: Try nicely to wait for buffer idle when cleaning a manager.
521 * If a GPU lockup has been detected, this is forced to 0.
522 * @dev_mapping: A pointer to the struct address_space representing the
523 * device address space.
524 * @wq: Work queue structure for the delayed delete workqueue.
525 *
526 */
527
528struct ttm_bo_device {
529
530 /*
531 * Constant after bo device init / atomic.
532 */
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200533 struct list_head device_list;
534 struct ttm_bo_global *glob;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200535 struct ttm_bo_driver *driver;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200536 rwlock_t vm_lock;
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200537 struct ttm_mem_type_manager man[TTM_NUM_MEM_TYPES];
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200538 /*
539 * Protected by the vm lock.
540 */
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200541 struct rb_root addr_space_rb;
542 struct drm_mm addr_space_mm;
543
544 /*
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200545 * Protected by the global:lru lock.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200546 */
547 struct list_head ddestroy;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200548
549 /*
550 * Protected by load / firstopen / lastclose /unload sync.
551 */
552
553 bool nice_mode;
554 struct address_space *dev_mapping;
555
556 /*
557 * Internal protection.
558 */
559
560 struct delayed_work wq;
Dave Airliead49f502009-07-10 22:36:26 +1000561
562 bool need_dma32;
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200563};
564
565/**
566 * ttm_flag_masked
567 *
568 * @old: Pointer to the result and original value.
569 * @new: New value of bits.
570 * @mask: Mask of bits to change.
571 *
572 * Convenience function to change a number of bits identified by a mask.
573 */
574
575static inline uint32_t
576ttm_flag_masked(uint32_t *old, uint32_t new, uint32_t mask)
577{
578 *old ^= (*old ^ new) & mask;
579 return *old;
580}
581
582/**
583 * ttm_tt_create
584 *
585 * @bdev: pointer to a struct ttm_bo_device:
586 * @size: Size of the data needed backing.
587 * @page_flags: Page flags as identified by TTM_PAGE_FLAG_XX flags.
588 * @dummy_read_page: See struct ttm_bo_device.
589 *
590 * Create a struct ttm_tt to back data with system memory pages.
591 * No pages are actually allocated.
592 * Returns:
593 * NULL: Out of memory.
594 */
595extern struct ttm_tt *ttm_tt_create(struct ttm_bo_device *bdev,
596 unsigned long size,
597 uint32_t page_flags,
598 struct page *dummy_read_page);
599
600/**
601 * ttm_tt_set_user:
602 *
603 * @ttm: The struct ttm_tt to populate.
604 * @tsk: A struct task_struct for which @start is a valid user-space address.
605 * @start: A valid user-space address.
606 * @num_pages: Size in pages of the user memory area.
607 *
608 * Populate a struct ttm_tt with a user-space memory area after first pinning
609 * the pages backing it.
610 * Returns:
611 * !0: Error.
612 */
613
614extern int ttm_tt_set_user(struct ttm_tt *ttm,
615 struct task_struct *tsk,
616 unsigned long start, unsigned long num_pages);
617
618/**
619 * ttm_ttm_bind:
620 *
621 * @ttm: The struct ttm_tt containing backing pages.
622 * @bo_mem: The struct ttm_mem_reg identifying the binding location.
623 *
624 * Bind the pages of @ttm to an aperture location identified by @bo_mem
625 */
626extern int ttm_tt_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem);
627
628/**
Thomas Hellstrom4bfd75c2009-12-06 21:46:27 +0100629 * ttm_tt_populate:
630 *
631 * @ttm: The struct ttm_tt to contain the backing pages.
632 *
633 * Add backing pages to all of @ttm
634 */
635extern int ttm_tt_populate(struct ttm_tt *ttm);
636
637/**
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200638 * ttm_ttm_destroy:
639 *
640 * @ttm: The struct ttm_tt.
641 *
642 * Unbind, unpopulate and destroy a struct ttm_tt.
643 */
644extern void ttm_tt_destroy(struct ttm_tt *ttm);
645
646/**
647 * ttm_ttm_unbind:
648 *
649 * @ttm: The struct ttm_tt.
650 *
651 * Unbind a struct ttm_tt.
652 */
653extern void ttm_tt_unbind(struct ttm_tt *ttm);
654
655/**
656 * ttm_ttm_destroy:
657 *
658 * @ttm: The struct ttm_tt.
659 * @index: Index of the desired page.
660 *
661 * Return a pointer to the struct page backing @ttm at page
662 * index @index. If the page is unpopulated, one will be allocated to
663 * populate that index.
664 *
665 * Returns:
666 * NULL on OOM.
667 */
668extern struct page *ttm_tt_get_page(struct ttm_tt *ttm, int index);
669
670/**
671 * ttm_tt_cache_flush:
672 *
673 * @pages: An array of pointers to struct page:s to flush.
674 * @num_pages: Number of pages to flush.
675 *
676 * Flush the data of the indicated pages from the cpu caches.
677 * This is used when changing caching attributes of the pages from
678 * cache-coherent.
679 */
680extern void ttm_tt_cache_flush(struct page *pages[], unsigned long num_pages);
681
682/**
683 * ttm_tt_set_placement_caching:
684 *
685 * @ttm A struct ttm_tt the backing pages of which will change caching policy.
686 * @placement: Flag indicating the desired caching policy.
687 *
688 * This function will change caching policy of any default kernel mappings of
689 * the pages backing @ttm. If changing from cached to uncached or
690 * write-combined,
691 * all CPU caches will first be flushed to make sure the data of the pages
692 * hit RAM. This function may be very costly as it involves global TLB
693 * and cache flushes and potential page splitting / combining.
694 */
695extern int ttm_tt_set_placement_caching(struct ttm_tt *ttm, uint32_t placement);
696extern int ttm_tt_swapout(struct ttm_tt *ttm,
697 struct file *persistant_swap_storage);
698
699/*
700 * ttm_bo.c
701 */
702
703/**
704 * ttm_mem_reg_is_pci
705 *
706 * @bdev: Pointer to a struct ttm_bo_device.
707 * @mem: A valid struct ttm_mem_reg.
708 *
709 * Returns true if the memory described by @mem is PCI memory,
710 * false otherwise.
711 */
712extern bool ttm_mem_reg_is_pci(struct ttm_bo_device *bdev,
713 struct ttm_mem_reg *mem);
714
715/**
716 * ttm_bo_mem_space
717 *
718 * @bo: Pointer to a struct ttm_buffer_object. the data of which
719 * we want to allocate space for.
720 * @proposed_placement: Proposed new placement for the buffer object.
721 * @mem: A struct ttm_mem_reg.
722 * @interruptible: Sleep interruptible when sliping.
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000723 * @no_wait_reserve: Return immediately if other buffers are busy.
724 * @no_wait_gpu: Return immediately if the GPU is busy.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200725 *
726 * Allocate memory space for the buffer object pointed to by @bo, using
727 * the placement flags in @mem, potentially evicting other idle buffer objects.
728 * This function may sleep while waiting for space to become available.
729 * Returns:
730 * -EBUSY: No space available (only if no_wait == 1).
731 * -ENOMEM: Could not allocate memory for the buffer object, either due to
732 * fragmentation or concurrent allocators.
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100733 * -ERESTARTSYS: An interruptible sleep was interrupted by a signal.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200734 */
735extern int ttm_bo_mem_space(struct ttm_buffer_object *bo,
Jerome Glisseca262a9992009-12-08 15:33:32 +0100736 struct ttm_placement *placement,
737 struct ttm_mem_reg *mem,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000738 bool interruptible,
739 bool no_wait_reserve, bool no_wait_gpu);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000740
741extern void ttm_bo_mem_put(struct ttm_buffer_object *bo,
742 struct ttm_mem_reg *mem);
Dave Airliec9220b02010-10-08 08:57:10 +1000743extern void ttm_bo_mem_put_locked(struct ttm_buffer_object *bo,
744 struct ttm_mem_reg *mem);
Ben Skeggs42311ff2010-08-04 12:07:08 +1000745
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200746/**
747 * ttm_bo_wait_for_cpu
748 *
749 * @bo: Pointer to a struct ttm_buffer_object.
750 * @no_wait: Don't sleep while waiting.
751 *
752 * Wait until a buffer object is no longer sync'ed for CPU access.
753 * Returns:
754 * -EBUSY: Buffer object was sync'ed for CPU access. (only if no_wait == 1).
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100755 * -ERESTARTSYS: An interruptible sleep was interrupted by a signal.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200756 */
757
758extern int ttm_bo_wait_cpu(struct ttm_buffer_object *bo, bool no_wait);
759
760/**
761 * ttm_bo_pci_offset - Get the PCI offset for the buffer object memory.
762 *
763 * @bo Pointer to a struct ttm_buffer_object.
764 * @bus_base On return the base of the PCI region
765 * @bus_offset On return the byte offset into the PCI region
766 * @bus_size On return the byte size of the buffer object or zero if
767 * the buffer object memory is not accessible through a PCI region.
768 *
769 * Returns:
770 * -EINVAL if the buffer object is currently not mappable.
771 * 0 otherwise.
772 */
773
774extern int ttm_bo_pci_offset(struct ttm_bo_device *bdev,
775 struct ttm_mem_reg *mem,
776 unsigned long *bus_base,
777 unsigned long *bus_offset,
778 unsigned long *bus_size);
779
Jerome Glisse82c5da62010-04-09 14:39:23 +0200780extern int ttm_mem_io_reserve(struct ttm_bo_device *bdev,
781 struct ttm_mem_reg *mem);
782extern void ttm_mem_io_free(struct ttm_bo_device *bdev,
783 struct ttm_mem_reg *mem);
784
Dave Airlieba4420c2010-03-09 10:56:52 +1000785extern void ttm_bo_global_release(struct drm_global_reference *ref);
786extern int ttm_bo_global_init(struct drm_global_reference *ref);
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200787
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200788extern int ttm_bo_device_release(struct ttm_bo_device *bdev);
789
790/**
791 * ttm_bo_device_init
792 *
793 * @bdev: A pointer to a struct ttm_bo_device to initialize.
794 * @mem_global: A pointer to an initialized struct ttm_mem_global.
795 * @driver: A pointer to a struct ttm_bo_driver set up by the caller.
796 * @file_page_offset: Offset into the device address space that is available
797 * for buffer data. This ensures compatibility with other users of the
798 * address space.
799 *
800 * Initializes a struct ttm_bo_device:
801 * Returns:
802 * !0: Failure.
803 */
804extern int ttm_bo_device_init(struct ttm_bo_device *bdev,
Thomas Hellstroma987fca2009-08-18 16:51:56 +0200805 struct ttm_bo_global *glob,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200806 struct ttm_bo_driver *driver,
Dave Airliead49f502009-07-10 22:36:26 +1000807 uint64_t file_page_offset, bool need_dma32);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200808
809/**
Dave Airliee024e112009-06-24 09:48:08 +1000810 * ttm_bo_unmap_virtual
811 *
812 * @bo: tear down the virtual mappings for this BO
813 */
814extern void ttm_bo_unmap_virtual(struct ttm_buffer_object *bo);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200815
816/**
817 * ttm_bo_reserve:
818 *
819 * @bo: A pointer to a struct ttm_buffer_object.
820 * @interruptible: Sleep interruptible if waiting.
821 * @no_wait: Don't sleep while trying to reserve, rather return -EBUSY.
822 * @use_sequence: If @bo is already reserved, Only sleep waiting for
823 * it to become unreserved if @sequence < (@bo)->sequence.
824 *
825 * Locks a buffer object for validation. (Or prevents other processes from
826 * locking it for validation) and removes it from lru lists, while taking
827 * a number of measures to prevent deadlocks.
828 *
829 * Deadlocks may occur when two processes try to reserve multiple buffers in
830 * different order, either by will or as a result of a buffer being evicted
831 * to make room for a buffer already reserved. (Buffers are reserved before
832 * they are evicted). The following algorithm prevents such deadlocks from
833 * occuring:
834 * 1) Buffers are reserved with the lru spinlock held. Upon successful
835 * reservation they are removed from the lru list. This stops a reserved buffer
836 * from being evicted. However the lru spinlock is released between the time
837 * a buffer is selected for eviction and the time it is reserved.
838 * Therefore a check is made when a buffer is reserved for eviction, that it
839 * is still the first buffer in the lru list, before it is removed from the
840 * list. @check_lru == 1 forces this check. If it fails, the function returns
841 * -EINVAL, and the caller should then choose a new buffer to evict and repeat
842 * the procedure.
843 * 2) Processes attempting to reserve multiple buffers other than for eviction,
844 * (typically execbuf), should first obtain a unique 32-bit
845 * validation sequence number,
846 * and call this function with @use_sequence == 1 and @sequence == the unique
847 * sequence number. If upon call of this function, the buffer object is already
848 * reserved, the validation sequence is checked against the validation
849 * sequence of the process currently reserving the buffer,
850 * and if the current validation sequence is greater than that of the process
851 * holding the reservation, the function returns -EAGAIN. Otherwise it sleeps
852 * waiting for the buffer to become unreserved, after which it retries
853 * reserving.
854 * The caller should, when receiving an -EAGAIN error
855 * release all its buffer reservations, wait for @bo to become unreserved, and
856 * then rerun the validation with the same validation sequence. This procedure
857 * will always guarantee that the process with the lowest validation sequence
858 * will eventually succeed, preventing both deadlocks and starvation.
859 *
860 * Returns:
861 * -EAGAIN: The reservation may cause a deadlock.
862 * Release all buffer reservations, wait for @bo to become unreserved and
863 * try again. (only if use_sequence == 1).
Thomas Hellstrom98ffc4152009-12-07 18:36:18 +0100864 * -ERESTARTSYS: A wait for the buffer to become unreserved was interrupted by
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200865 * a signal. Release all buffer reservations and return to user-space.
866 */
867extern int ttm_bo_reserve(struct ttm_buffer_object *bo,
868 bool interruptible,
869 bool no_wait, bool use_sequence, uint32_t sequence);
870
871/**
872 * ttm_bo_unreserve
873 *
874 * @bo: A pointer to a struct ttm_buffer_object.
875 *
876 * Unreserve a previous reservation of @bo.
877 */
878extern void ttm_bo_unreserve(struct ttm_buffer_object *bo);
879
880/**
881 * ttm_bo_wait_unreserved
882 *
883 * @bo: A pointer to a struct ttm_buffer_object.
884 *
885 * Wait for a struct ttm_buffer_object to become unreserved.
886 * This is typically used in the execbuf code to relax cpu-usage when
887 * a potential deadlock condition backoff.
888 */
889extern int ttm_bo_wait_unreserved(struct ttm_buffer_object *bo,
890 bool interruptible);
891
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200892/*
893 * ttm_bo_util.c
894 */
895
896/**
897 * ttm_bo_move_ttm
898 *
899 * @bo: A pointer to a struct ttm_buffer_object.
900 * @evict: 1: This is an eviction. Don't try to pipeline.
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000901 * @no_wait_reserve: Return immediately if other buffers are busy.
902 * @no_wait_gpu: Return immediately if the GPU is busy.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200903 * @new_mem: struct ttm_mem_reg indicating where to move.
904 *
905 * Optimized move function for a buffer object with both old and
906 * new placement backed by a TTM. The function will, if successful,
907 * free any old aperture space, and set (@new_mem)->mm_node to NULL,
908 * and update the (@bo)->mem placement flags. If unsuccessful, the old
909 * data remains untouched, and it's up to the caller to free the
910 * memory space indicated by @new_mem.
911 * Returns:
912 * !0: Failure.
913 */
914
915extern int ttm_bo_move_ttm(struct ttm_buffer_object *bo,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000916 bool evict, bool no_wait_reserve,
917 bool no_wait_gpu, struct ttm_mem_reg *new_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200918
919/**
920 * ttm_bo_move_memcpy
921 *
922 * @bo: A pointer to a struct ttm_buffer_object.
923 * @evict: 1: This is an eviction. Don't try to pipeline.
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000924 * @no_wait_reserve: Return immediately if other buffers are busy.
925 * @no_wait_gpu: Return immediately if the GPU is busy.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200926 * @new_mem: struct ttm_mem_reg indicating where to move.
927 *
928 * Fallback move function for a mappable buffer object in mappable memory.
929 * The function will, if successful,
930 * free any old aperture space, and set (@new_mem)->mm_node to NULL,
931 * and update the (@bo)->mem placement flags. If unsuccessful, the old
932 * data remains untouched, and it's up to the caller to free the
933 * memory space indicated by @new_mem.
934 * Returns:
935 * !0: Failure.
936 */
937
938extern int ttm_bo_move_memcpy(struct ttm_buffer_object *bo,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000939 bool evict, bool no_wait_reserve,
940 bool no_wait_gpu, struct ttm_mem_reg *new_mem);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200941
942/**
943 * ttm_bo_free_old_node
944 *
945 * @bo: A pointer to a struct ttm_buffer_object.
946 *
947 * Utility function to free an old placement after a successful move.
948 */
949extern void ttm_bo_free_old_node(struct ttm_buffer_object *bo);
950
951/**
952 * ttm_bo_move_accel_cleanup.
953 *
954 * @bo: A pointer to a struct ttm_buffer_object.
955 * @sync_obj: A sync object that signals when moving is complete.
956 * @sync_obj_arg: An argument to pass to the sync object idle / wait
957 * functions.
958 * @evict: This is an evict move. Don't return until the buffer is idle.
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000959 * @no_wait_reserve: Return immediately if other buffers are busy.
960 * @no_wait_gpu: Return immediately if the GPU is busy.
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200961 * @new_mem: struct ttm_mem_reg indicating where to move.
962 *
963 * Accelerated move function to be called when an accelerated move
964 * has been scheduled. The function will create a new temporary buffer object
965 * representing the old placement, and put the sync object on both buffer
966 * objects. After that the newly created buffer object is unref'd to be
967 * destroyed when the move is complete. This will help pipeline
968 * buffer moves.
969 */
970
971extern int ttm_bo_move_accel_cleanup(struct ttm_buffer_object *bo,
972 void *sync_obj,
973 void *sync_obj_arg,
Jerome Glisse9d87fa22010-04-07 10:21:19 +0000974 bool evict, bool no_wait_reserve,
975 bool no_wait_gpu,
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200976 struct ttm_mem_reg *new_mem);
977/**
978 * ttm_io_prot
979 *
980 * @c_state: Caching state.
981 * @tmp: Page protection flag for a normal, cached mapping.
982 *
983 * Utility function that returns the pgprot_t that should be used for
984 * setting up a PTE with the caching model indicated by @c_state.
985 */
Randy Dunlapa55e8d42010-02-24 14:29:14 -0800986extern pgprot_t ttm_io_prot(uint32_t caching_flags, pgprot_t tmp);
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200987
Ben Skeggsd961db72010-08-05 10:48:18 +1000988extern const struct ttm_mem_type_manager_func ttm_bo_manager_func;
989
Thomas Hellstromba4e7d92009-06-10 15:20:19 +0200990#if (defined(CONFIG_AGP) || (defined(CONFIG_AGP_MODULE) && defined(MODULE)))
991#define TTM_HAS_AGP
992#include <linux/agp_backend.h>
993
994/**
995 * ttm_agp_backend_init
996 *
997 * @bdev: Pointer to a struct ttm_bo_device.
998 * @bridge: The agp bridge this device is sitting on.
999 *
1000 * Create a TTM backend that uses the indicated AGP bridge as an aperture
1001 * for TT memory. This function uses the linux agpgart interface to
1002 * bind and unbind memory backing a ttm_tt.
1003 */
1004extern struct ttm_backend *ttm_agp_backend_init(struct ttm_bo_device *bdev,
1005 struct agp_bridge_data *bridge);
1006#endif
1007
1008#endif