mock_gtt.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Copyright © 2016 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. */
  24. #include "mock_gtt.h"
  25. static void mock_insert_page(struct i915_address_space *vm,
  26. dma_addr_t addr,
  27. u64 offset,
  28. enum i915_cache_level level,
  29. u32 flags)
  30. {
  31. }
  32. static void mock_insert_entries(struct i915_address_space *vm,
  33. struct i915_vma *vma,
  34. enum i915_cache_level level, u32 flags)
  35. {
  36. }
  37. static int mock_bind_ppgtt(struct i915_vma *vma,
  38. enum i915_cache_level cache_level,
  39. u32 flags)
  40. {
  41. GEM_BUG_ON(flags & I915_VMA_GLOBAL_BIND);
  42. vma->flags |= I915_VMA_LOCAL_BIND;
  43. return 0;
  44. }
  45. static void mock_unbind_ppgtt(struct i915_vma *vma)
  46. {
  47. }
  48. static void mock_cleanup(struct i915_address_space *vm)
  49. {
  50. }
  51. struct i915_hw_ppgtt *
  52. mock_ppgtt(struct drm_i915_private *i915,
  53. const char *name)
  54. {
  55. struct i915_hw_ppgtt *ppgtt;
  56. ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
  57. if (!ppgtt)
  58. return NULL;
  59. kref_init(&ppgtt->ref);
  60. ppgtt->vm.i915 = i915;
  61. ppgtt->vm.total = round_down(U64_MAX, PAGE_SIZE);
  62. ppgtt->vm.file = ERR_PTR(-ENODEV);
  63. i915_address_space_init(&ppgtt->vm, i915);
  64. ppgtt->vm.clear_range = nop_clear_range;
  65. ppgtt->vm.insert_page = mock_insert_page;
  66. ppgtt->vm.insert_entries = mock_insert_entries;
  67. ppgtt->vm.cleanup = mock_cleanup;
  68. ppgtt->vm.vma_ops.bind_vma = mock_bind_ppgtt;
  69. ppgtt->vm.vma_ops.unbind_vma = mock_unbind_ppgtt;
  70. ppgtt->vm.vma_ops.set_pages = ppgtt_set_pages;
  71. ppgtt->vm.vma_ops.clear_pages = clear_pages;
  72. return ppgtt;
  73. }
  74. static int mock_bind_ggtt(struct i915_vma *vma,
  75. enum i915_cache_level cache_level,
  76. u32 flags)
  77. {
  78. vma->flags |= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
  79. return 0;
  80. }
  81. static void mock_unbind_ggtt(struct i915_vma *vma)
  82. {
  83. }
  84. void mock_init_ggtt(struct drm_i915_private *i915)
  85. {
  86. struct i915_ggtt *ggtt = &i915->ggtt;
  87. ggtt->vm.i915 = i915;
  88. ggtt->gmadr = (struct resource) DEFINE_RES_MEM(0, 2048 * PAGE_SIZE);
  89. ggtt->mappable_end = resource_size(&ggtt->gmadr);
  90. ggtt->vm.total = 4096 * PAGE_SIZE;
  91. ggtt->vm.clear_range = nop_clear_range;
  92. ggtt->vm.insert_page = mock_insert_page;
  93. ggtt->vm.insert_entries = mock_insert_entries;
  94. ggtt->vm.cleanup = mock_cleanup;
  95. ggtt->vm.vma_ops.bind_vma = mock_bind_ggtt;
  96. ggtt->vm.vma_ops.unbind_vma = mock_unbind_ggtt;
  97. ggtt->vm.vma_ops.set_pages = ggtt_set_pages;
  98. ggtt->vm.vma_ops.clear_pages = clear_pages;
  99. i915_address_space_init(&ggtt->vm, i915);
  100. ggtt->vm.is_ggtt = true;
  101. }
  102. void mock_fini_ggtt(struct drm_i915_private *i915)
  103. {
  104. struct i915_ggtt *ggtt = &i915->ggtt;
  105. i915_address_space_fini(&ggtt->vm);
  106. }