ttm_placement.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. #ifndef _TTM_PLACEMENT_H_
  31. #define _TTM_PLACEMENT_H_
  32. #include <linux/types.h>
  33. /*
  34. * Memory regions for data placement.
  35. *
  36. * Buffers placed in TTM_PL_SYSTEM are considered under TTMs control and can
  37. * be swapped out whenever TTMs thinks it is a good idea.
  38. * In cases where drivers would like to use TTM_PL_SYSTEM as a valid
  39. * placement they need to be able to handle the issues that arise due to the
  40. * above manually.
  41. *
  42. * For BO's which reside in system memory but for which the accelerator
  43. * requires direct access (i.e. their usage needs to be synchronized
  44. * between the CPU and accelerator via fences) a new, driver private
  45. * placement that can handle such scenarios is a good idea.
  46. */
  47. #define TTM_PL_SYSTEM 0
  48. #define TTM_PL_TT 1
  49. #define TTM_PL_VRAM 2
  50. #define TTM_PL_PRIV 3
  51. /*
  52. * TTM_PL_FLAG_TOPDOWN requests to be placed from the
  53. * top of the memory area, instead of the bottom.
  54. */
  55. #define TTM_PL_FLAG_CONTIGUOUS (1 << 0)
  56. #define TTM_PL_FLAG_TOPDOWN (1 << 1)
  57. /* For multihop handling */
  58. #define TTM_PL_FLAG_TEMPORARY (1 << 2)
  59. /**
  60. * struct ttm_place
  61. *
  62. * @fpfn: first valid page frame number to put the object
  63. * @lpfn: last valid page frame number to put the object
  64. * @mem_type: One of TTM_PL_* where the resource should be allocated from.
  65. * @flags: memory domain and caching flags for the object
  66. *
  67. * Structure indicating a possible place to put an object.
  68. */
  69. struct ttm_place {
  70. unsigned fpfn;
  71. unsigned lpfn;
  72. uint32_t mem_type;
  73. uint32_t flags;
  74. };
  75. /**
  76. * struct ttm_placement
  77. *
  78. * @num_placement: number of preferred placements
  79. * @placement: preferred placements
  80. * @num_busy_placement: number of preferred placements when need to evict buffer
  81. * @busy_placement: preferred placements when need to evict buffer
  82. *
  83. * Structure indicating the placement you request for an object.
  84. */
  85. struct ttm_placement {
  86. unsigned num_placement;
  87. const struct ttm_place *placement;
  88. unsigned num_busy_placement;
  89. const struct ttm_place *busy_placement;
  90. };
  91. #endif