mock_gtt.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 sg_table *st,
  34. u64 start,
  35. enum i915_cache_level level, u32 flags)
  36. {
  37. }
  38. static int mock_bind_ppgtt(struct i915_vma *vma,
  39. enum i915_cache_level cache_level,
  40. u32 flags)
  41. {
  42. GEM_BUG_ON(flags & I915_VMA_GLOBAL_BIND);
  43. vma->pages = vma->obj->mm.pages;
  44. vma->flags |= I915_VMA_LOCAL_BIND;
  45. return 0;
  46. }
  47. static void mock_unbind_ppgtt(struct i915_vma *vma)
  48. {
  49. }
  50. static void mock_cleanup(struct i915_address_space *vm)
  51. {
  52. }
  53. struct i915_hw_ppgtt *
  54. mock_ppgtt(struct drm_i915_private *i915,
  55. const char *name)
  56. {
  57. struct i915_hw_ppgtt *ppgtt;
  58. ppgtt = kzalloc(sizeof(*ppgtt), GFP_KERNEL);
  59. if (!ppgtt)
  60. return NULL;
  61. kref_init(&ppgtt->ref);
  62. ppgtt->base.i915 = i915;
  63. ppgtt->base.total = round_down(U64_MAX, PAGE_SIZE);
  64. ppgtt->base.file = ERR_PTR(-ENODEV);
  65. INIT_LIST_HEAD(&ppgtt->base.active_list);
  66. INIT_LIST_HEAD(&ppgtt->base.inactive_list);
  67. INIT_LIST_HEAD(&ppgtt->base.unbound_list);
  68. INIT_LIST_HEAD(&ppgtt->base.global_link);
  69. drm_mm_init(&ppgtt->base.mm, 0, ppgtt->base.total);
  70. i915_gem_timeline_init(i915, &ppgtt->base.timeline, name);
  71. ppgtt->base.clear_range = nop_clear_range;
  72. ppgtt->base.insert_page = mock_insert_page;
  73. ppgtt->base.insert_entries = mock_insert_entries;
  74. ppgtt->base.bind_vma = mock_bind_ppgtt;
  75. ppgtt->base.unbind_vma = mock_unbind_ppgtt;
  76. ppgtt->base.cleanup = mock_cleanup;
  77. return ppgtt;
  78. }
  79. static int mock_bind_ggtt(struct i915_vma *vma,
  80. enum i915_cache_level cache_level,
  81. u32 flags)
  82. {
  83. int err;
  84. err = i915_get_ggtt_vma_pages(vma);
  85. if (err)
  86. return err;
  87. vma->flags |= I915_VMA_GLOBAL_BIND | I915_VMA_LOCAL_BIND;
  88. return 0;
  89. }
  90. static void mock_unbind_ggtt(struct i915_vma *vma)
  91. {
  92. }
  93. void mock_init_ggtt(struct drm_i915_private *i915)
  94. {
  95. struct i915_ggtt *ggtt = &i915->ggtt;
  96. INIT_LIST_HEAD(&i915->vm_list);
  97. ggtt->base.i915 = i915;
  98. ggtt->mappable_base = 0;
  99. ggtt->mappable_end = 2048 * PAGE_SIZE;
  100. ggtt->base.total = 4096 * PAGE_SIZE;
  101. ggtt->base.clear_range = nop_clear_range;
  102. ggtt->base.insert_page = mock_insert_page;
  103. ggtt->base.insert_entries = mock_insert_entries;
  104. ggtt->base.bind_vma = mock_bind_ggtt;
  105. ggtt->base.unbind_vma = mock_unbind_ggtt;
  106. ggtt->base.cleanup = mock_cleanup;
  107. i915_address_space_init(&ggtt->base, i915, "global");
  108. }
  109. void mock_fini_ggtt(struct drm_i915_private *i915)
  110. {
  111. struct i915_ggtt *ggtt = &i915->ggtt;
  112. i915_address_space_fini(&ggtt->base);
  113. }