sys_wakelock.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file system wakelock
  8. */
  9. #ifndef _SYS_WAKELOCK_H
  10. #define _SYS_WAKELOCK_H
  11. #include <stdint.h>
  12. #include <stdbool.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @defgroup sys_wakelock_apis App system wakelock APIs
  18. * @ingroup system_apis
  19. * @{
  20. */
  21. enum
  22. {
  23. /**Keep the CPU running normally, but the screen and tp may be off*/
  24. PARTIAL_WAKE_LOCK,
  25. /**Keep the CPU running normally, keep the screen highlighted, and the tp also keep work well*/
  26. FULL_WAKE_LOCK,
  27. MAX_WAKE_LOCK_TYPE,
  28. };
  29. enum
  30. {
  31. BT_WAKE_LOCK_USER,
  32. MEDIA_WAKE_LOCK_USER,
  33. USB_WAKE_LOCK_USER,
  34. POWER_WAKE_LOCK_USER,
  35. SYS_WAKE_LOCK_USER,
  36. APP_WAKE_LOCK_USER,
  37. DISPLAY_WAKE_LOCK_USER,
  38. MAX_WAKE_LOCK_USER,
  39. };
  40. /**
  41. * @brief hold system wakelock
  42. *
  43. * @details hold system wake lock Prevent the system entering sleep
  44. * @param wake_lock_type which wake lock type lock
  45. *
  46. * @return 0 excute success .
  47. * @return others excute failed .
  48. */
  49. int sys_wake_lock(int wake_lock_type);
  50. int sys_wake_lock_ext(int wake_lock_type, int wake_lock_user);
  51. /**
  52. * @brief release system wakelock
  53. *
  54. * @details release system wake lock allowed the system entering sleep
  55. * @param wake_lock_type which wake lock type unlock
  56. *
  57. * @return 0 excute success .
  58. * @return others excute failed .
  59. */
  60. int sys_wake_unlock(int wake_lock_type);
  61. int sys_wake_unlock_ext(int wake_lock_type, int wake_lock_user);
  62. /**
  63. * @brief check system wakelock state
  64. *
  65. * @details check system wakelock state , wakelock hold by user or not.
  66. * @param wake_lock_type which wake lock type
  67. *
  68. * @return 0 no wakelock holded by user.
  69. * @return others wakelock holded by user .
  70. */
  71. int sys_wakelocks_check(int wake_lock_type);
  72. /**
  73. * @brief Return to the time difference between when the system
  74. * wakelock is released to the present
  75. * @param wake_lock_type which wake lock type
  76. *
  77. * @return duration of wakelock all released
  78. */
  79. uint32_t sys_wakelocks_get_free_time(int wake_lock_type);
  80. /**
  81. * @brief Pend the current thread on wakelock
  82. *
  83. * @details pend the current thread on wakelock.
  84. * @param wake_lock_type which wake lock type
  85. *
  86. * @return 0 excute success .
  87. * @return others excute failed .
  88. */
  89. int sys_wakelocks_wait(int wake_lock_type);
  90. /**
  91. * @brief Wake the thread pending on wakelock
  92. *
  93. * @details wake the thread pending on wakelock.
  94. * @param wake_lock_type which wake lock type
  95. *
  96. * @return 0 excute success .
  97. * @return others excute failed .
  98. */
  99. int sys_wakelocks_wake(int wake_lock_type);
  100. /**
  101. * @brief dump wakelocks info
  102. *
  103. * @details dump wakelocks info.
  104. *
  105. * @return N/A.
  106. */
  107. void sys_wakelocks_dump(void);
  108. /**
  109. * @} end defgroup sys_wakelock_apis
  110. */
  111. #ifdef __cplusplus
  112. }
  113. #endif
  114. #endif