kfd_pasid.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Copyright 2014 Advanced Micro Devices, Inc.
  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 shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. */
  22. #include <linux/slab.h>
  23. #include <linux/types.h>
  24. #include "kfd_priv.h"
  25. static unsigned long *pasid_bitmap;
  26. static unsigned int pasid_limit;
  27. static DEFINE_MUTEX(pasid_mutex);
  28. int kfd_pasid_init(void)
  29. {
  30. pasid_limit = KFD_MAX_NUM_OF_PROCESSES;
  31. pasid_bitmap = kcalloc(BITS_TO_LONGS(pasid_limit), sizeof(long), GFP_KERNEL);
  32. if (!pasid_bitmap)
  33. return -ENOMEM;
  34. set_bit(0, pasid_bitmap); /* PASID 0 is reserved. */
  35. return 0;
  36. }
  37. void kfd_pasid_exit(void)
  38. {
  39. kfree(pasid_bitmap);
  40. }
  41. bool kfd_set_pasid_limit(unsigned int new_limit)
  42. {
  43. if (new_limit < pasid_limit) {
  44. bool ok;
  45. mutex_lock(&pasid_mutex);
  46. /* ensure that no pasids >= new_limit are in-use */
  47. ok = (find_next_bit(pasid_bitmap, pasid_limit, new_limit) ==
  48. pasid_limit);
  49. if (ok)
  50. pasid_limit = new_limit;
  51. mutex_unlock(&pasid_mutex);
  52. return ok;
  53. }
  54. return true;
  55. }
  56. inline unsigned int kfd_get_pasid_limit(void)
  57. {
  58. return pasid_limit;
  59. }
  60. unsigned int kfd_pasid_alloc(void)
  61. {
  62. unsigned int found;
  63. mutex_lock(&pasid_mutex);
  64. found = find_first_zero_bit(pasid_bitmap, pasid_limit);
  65. if (found == pasid_limit)
  66. found = 0;
  67. else
  68. set_bit(found, pasid_bitmap);
  69. mutex_unlock(&pasid_mutex);
  70. return found;
  71. }
  72. void kfd_pasid_free(unsigned int pasid)
  73. {
  74. BUG_ON(pasid == 0 || pasid >= pasid_limit);
  75. clear_bit(pasid, pasid_bitmap);
  76. }