threading.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (c) 2021 Synopsys.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifdef CONFIG_MULTITHREADING
  7. #include <init.h>
  8. #include <kernel.h>
  9. #include <sys/__assert.h>
  10. #include <sys/mutex.h>
  11. #include <logging/log.h>
  12. #include <../lib/src/c/inc/internal/thread.h>
  13. #ifndef CONFIG_USERSPACE
  14. #define ARCMWDT_DYN_LOCK_SZ (sizeof(struct k_mutex))
  15. #define ARCMWDT_MAX_DYN_LOCKS 10
  16. K_MEM_SLAB_DEFINE(z_arcmwdt_lock_slab, ARCMWDT_DYN_LOCK_SZ, ARCMWDT_MAX_DYN_LOCKS, sizeof(void *));
  17. #endif /* !CONFIG_USERSPACE */
  18. LOG_MODULE_DECLARE(os, CONFIG_KERNEL_LOG_LEVEL);
  19. void _mwmutex_create(_lock_t *mutex_ptr)
  20. {
  21. bool alloc_fail;
  22. #ifdef CONFIG_USERSPACE
  23. *mutex_ptr = k_object_alloc(K_OBJ_MUTEX);
  24. alloc_fail = (*mutex_ptr == NULL);
  25. #else
  26. alloc_fail = !!k_mem_slab_alloc(&z_arcmwdt_lock_slab, mutex_ptr, K_NO_WAIT);
  27. #endif /* CONFIG_USERSPACE */
  28. if (alloc_fail) {
  29. LOG_ERR("MWDT lock allocation failed");
  30. k_panic();
  31. }
  32. k_mutex_init((struct k_mutex *)*mutex_ptr);
  33. }
  34. void _mwmutex_delete(_lock_t *mutex_ptr)
  35. {
  36. __ASSERT_NO_MSG(mutex_ptr != NULL);
  37. #ifdef CONFIG_USERSPACE
  38. k_object_release(mutex_ptr);
  39. #else
  40. k_mem_slab_free(&z_arcmwdt_lock_slab, mutex_ptr);
  41. #endif /* CONFIG_USERSPACE */
  42. }
  43. void _mwmutex_lock(_lock_t mutex)
  44. {
  45. __ASSERT_NO_MSG(mutex != NULL);
  46. k_mutex_lock((struct k_mutex *)mutex, K_FOREVER);
  47. }
  48. void _mwmutex_unlock(_lock_t mutex)
  49. {
  50. __ASSERT_NO_MSG(mutex != NULL);
  51. k_mutex_unlock((struct k_mutex *)mutex);
  52. }
  53. #endif /* CONFIG_MULTITHREADING */