Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 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 | |
| 31 | #ifndef _TTM_PLACEMENT_H_ |
| 32 | #define _TTM_PLACEMENT_H_ |
Christian König | 7c732ea | 2016-09-08 15:40:38 +0200 | [diff] [blame] | 33 | |
| 34 | #include <linux/types.h> |
| 35 | |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 36 | /* |
| 37 | * Memory regions for data placement. |
| 38 | */ |
| 39 | |
| 40 | #define TTM_PL_SYSTEM 0 |
| 41 | #define TTM_PL_TT 1 |
| 42 | #define TTM_PL_VRAM 2 |
Christian König | 283cde6 | 2016-09-12 13:34:37 +0200 | [diff] [blame] | 43 | #define TTM_PL_PRIV 3 |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 44 | |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 45 | /* |
Lauri Kasanen | 62347f9 | 2014-04-02 20:03:57 +0300 | [diff] [blame] | 46 | * TTM_PL_FLAG_TOPDOWN requests to be placed from the |
| 47 | * top of the memory area, instead of the bottom. |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 48 | */ |
| 49 | |
Lang Yu | ae1bef7 | 2021-06-22 12:23:34 -0400 | [diff] [blame] | 50 | #define TTM_PL_FLAG_CONTIGUOUS (1 << 0) |
| 51 | #define TTM_PL_FLAG_TOPDOWN (1 << 1) |
| 52 | |
| 53 | /* For multihop handling */ |
| 54 | #define TTM_PL_FLAG_TEMPORARY (1 << 2) |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 55 | |
Christian König | 7c732ea | 2016-09-08 15:40:38 +0200 | [diff] [blame] | 56 | /** |
| 57 | * struct ttm_place |
| 58 | * |
| 59 | * @fpfn: first valid page frame number to put the object |
| 60 | * @lpfn: last valid page frame number to put the object |
| 61 | * @flags: memory domain and caching flags for the object |
| 62 | * |
| 63 | * Structure indicating a possible place to put an object. |
| 64 | */ |
| 65 | struct ttm_place { |
| 66 | unsigned fpfn; |
| 67 | unsigned lpfn; |
Christian König | 48e07c2 | 2020-09-10 13:39:41 +0200 | [diff] [blame] | 68 | uint32_t mem_type; |
Christian König | 7c732ea | 2016-09-08 15:40:38 +0200 | [diff] [blame] | 69 | uint32_t flags; |
| 70 | }; |
| 71 | |
| 72 | /** |
| 73 | * struct ttm_placement |
| 74 | * |
| 75 | * @num_placement: number of preferred placements |
| 76 | * @placement: preferred placements |
| 77 | * @num_busy_placement: number of preferred placements when need to evict buffer |
| 78 | * @busy_placement: preferred placements when need to evict buffer |
| 79 | * |
| 80 | * Structure indicating the placement you request for an object. |
| 81 | */ |
| 82 | struct ttm_placement { |
| 83 | unsigned num_placement; |
| 84 | const struct ttm_place *placement; |
| 85 | unsigned num_busy_placement; |
| 86 | const struct ttm_place *busy_placement; |
| 87 | }; |
| 88 | |
Thomas Hellstrom | ba4e7d9 | 2009-06-10 15:20:19 +0200 | [diff] [blame] | 89 | #endif |