1 /********************************************* 1 /************************************************************************** 2 * 2 * 3 * Copyright (c) 2006-2009 VMware, Inc., Palo 3 * Copyright (c) 2006-2009 VMware, Inc., Palo Alto, CA., USA 4 * All Rights Reserved. 4 * All Rights Reserved. 5 * 5 * 6 * Permission is hereby granted, free of charg 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated docume 7 * copy of this software and associated documentation files (the 8 * "Software"), to deal in the Software withou 8 * "Software"), to deal in the Software without restriction, including 9 * without limitation the rights to use, copy, 9 * without limitation the rights to use, copy, modify, merge, publish, 10 * distribute, sub license, and/or sell copies 10 * distribute, sub license, and/or sell copies of the Software, and to 11 * permit persons to whom the Software is furn 11 * permit persons to whom the Software is furnished to do so, subject to 12 * the following conditions: 12 * the following conditions: 13 * 13 * 14 * The above copyright notice and this permiss 14 * The above copyright notice and this permission notice (including the 15 * next paragraph) shall be included in all co 15 * next paragraph) shall be included in all copies or substantial portions 16 * of the Software. 16 * of the Software. 17 * 17 * 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT W 18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE W 19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-IN 20 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS S 21 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, 22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN A 22 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNE 23 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 24 * USE OR OTHER DEALINGS IN THE SOFTWARE. 24 * USE OR OTHER DEALINGS IN THE SOFTWARE. 25 * 25 * 26 ********************************************* 26 **************************************************************************/ 27 /* 27 /* 28 * Authors: Thomas Hellstrom <thellstrom-at-vm 28 * Authors: Thomas Hellstrom <thellstrom-at-vmware-dot-com> 29 */ 29 */ 30 30 31 #ifndef _TTM_PLACEMENT_H_ 31 #ifndef _TTM_PLACEMENT_H_ 32 #define _TTM_PLACEMENT_H_ 32 #define _TTM_PLACEMENT_H_ 33 33 34 #include <linux/types.h> 34 #include <linux/types.h> 35 35 36 /* 36 /* 37 * Memory regions for data placement. 37 * Memory regions for data placement. 38 * 38 * 39 * Buffers placed in TTM_PL_SYSTEM are conside 39 * Buffers placed in TTM_PL_SYSTEM are considered under TTMs control and can 40 * be swapped out whenever TTMs thinks it is a 40 * be swapped out whenever TTMs thinks it is a good idea. 41 * In cases where drivers would like to use TT 41 * In cases where drivers would like to use TTM_PL_SYSTEM as a valid 42 * placement they need to be able to handle th 42 * placement they need to be able to handle the issues that arise due to the 43 * above manually. 43 * above manually. 44 * 44 * 45 * For BO's which reside in system memory but 45 * For BO's which reside in system memory but for which the accelerator 46 * requires direct access (i.e. their usage ne 46 * requires direct access (i.e. their usage needs to be synchronized 47 * between the CPU and accelerator via fences) 47 * between the CPU and accelerator via fences) a new, driver private 48 * placement that can handle such scenarios is 48 * placement that can handle such scenarios is a good idea. 49 */ 49 */ 50 50 51 #define TTM_PL_SYSTEM 0 51 #define TTM_PL_SYSTEM 0 52 #define TTM_PL_TT 1 52 #define TTM_PL_TT 1 53 #define TTM_PL_VRAM 2 53 #define TTM_PL_VRAM 2 54 #define TTM_PL_PRIV 3 54 #define TTM_PL_PRIV 3 55 55 56 /* 56 /* 57 * TTM_PL_FLAG_TOPDOWN requests to be placed f 57 * TTM_PL_FLAG_TOPDOWN requests to be placed from the 58 * top of the memory area, instead of the bott 58 * top of the memory area, instead of the bottom. 59 */ 59 */ 60 60 61 #define TTM_PL_FLAG_CONTIGUOUS (1 << 0) 61 #define TTM_PL_FLAG_CONTIGUOUS (1 << 0) 62 #define TTM_PL_FLAG_TOPDOWN (1 << 1) 62 #define TTM_PL_FLAG_TOPDOWN (1 << 1) 63 63 64 /* For multihop handling */ 64 /* For multihop handling */ 65 #define TTM_PL_FLAG_TEMPORARY (1 << 2) 65 #define TTM_PL_FLAG_TEMPORARY (1 << 2) 66 66 67 /* Placement is never used during eviction */ 67 /* Placement is never used during eviction */ 68 #define TTM_PL_FLAG_DESIRED (1 << 3) 68 #define TTM_PL_FLAG_DESIRED (1 << 3) 69 69 70 /* Placement is only used during eviction */ 70 /* Placement is only used during eviction */ 71 #define TTM_PL_FLAG_FALLBACK (1 << 4) 71 #define TTM_PL_FLAG_FALLBACK (1 << 4) 72 72 73 /** 73 /** 74 * struct ttm_place 74 * struct ttm_place 75 * 75 * 76 * @fpfn: first valid page frame number 76 * @fpfn: first valid page frame number to put the object 77 * @lpfn: last valid page frame number t 77 * @lpfn: last valid page frame number to put the object 78 * @mem_type: One of TTM_PL_* where the reso 78 * @mem_type: One of TTM_PL_* where the resource should be allocated from. 79 * @flags: memory domain and caching flag 79 * @flags: memory domain and caching flags for the object 80 * 80 * 81 * Structure indicating a possible place to pu 81 * Structure indicating a possible place to put an object. 82 */ 82 */ 83 struct ttm_place { 83 struct ttm_place { 84 unsigned fpfn; 84 unsigned fpfn; 85 unsigned lpfn; 85 unsigned lpfn; 86 uint32_t mem_type; 86 uint32_t mem_type; 87 uint32_t flags; 87 uint32_t flags; 88 }; 88 }; 89 89 90 /** 90 /** 91 * struct ttm_placement 91 * struct ttm_placement 92 * 92 * 93 * @num_placement: number of preferred pl 93 * @num_placement: number of preferred placements 94 * @placement: preferred placements 94 * @placement: preferred placements 95 * 95 * 96 * Structure indicating the placement you requ 96 * Structure indicating the placement you request for an object. 97 */ 97 */ 98 struct ttm_placement { 98 struct ttm_placement { 99 unsigned num_placement; 99 unsigned num_placement; 100 const struct ttm_place *placement; 100 const struct ttm_place *placement; 101 }; 101 }; 102 102 103 #endif 103 #endif 104 104
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.