alarm.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Copyright (c) 2021 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for ALARM Drivers
  9. */
  10. #ifndef _ALARM_H_
  11. #define _ALARM_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /*!
  16. * struct alarm_config
  17. * @brief The structure to configure the alarm function.
  18. */
  19. struct alarm_config {
  20. uint32_t alarm_msec; /*!< The alarm time in milliseconds setting */
  21. void (*cb_fn)(const void *cb_data); /*!< Pointer to function to call when alarm value matches current RTC value */
  22. const void *cb_data; /*!< The callback data */
  23. };
  24. /*!
  25. * struct alarm_status
  26. * @brief The current alarm status
  27. */
  28. struct alarm_status {
  29. uint32_t alarm_msec; /*!< The alarm time in milliseconds setting */
  30. bool is_on; /*!< Alarm on status */
  31. };
  32. struct alarm_driver_api {
  33. int (*set_alarm)(const struct device *dev, struct alarm_config *config, bool enable);
  34. int (*get_alarm)(const struct device *dev, struct alarm_status *sts);
  35. bool (*is_alarm_wakeup)(const struct device *dev);
  36. };
  37. /**
  38. * @brief Set the alarm time
  39. *
  40. * @param dev: Pointer to the device structure for the driver instance.
  41. * @param config: Pointer to alarm configuration.
  42. * @param enable: enable or disable alarm function.
  43. *
  44. * @return 0 on success, negative errno code on fail.
  45. */
  46. static inline int acts_alarm_set_alarm(const struct device *dev, struct alarm_config *config, bool enable)
  47. {
  48. const struct alarm_driver_api *api = dev->api;
  49. return api->set_alarm(dev, config, enable);
  50. }
  51. /**
  52. * @brief Get the alarm time setting
  53. *
  54. * @param dev: Pointer to the device structure for the driver instance.
  55. * @param sts: Pointer to alarm status structure
  56. *
  57. * @return 0 on success, negative errno code on fail.
  58. */
  59. static inline int acts_alarm_get_alarm(const struct device *dev, struct alarm_status *sts)
  60. {
  61. const struct alarm_driver_api *api = dev->api;
  62. return api->get_alarm(dev, sts);
  63. }
  64. /**
  65. * @brief Function to get the information that whether wakeup from RTC
  66. *
  67. * Moreover, user can distinguish the ALARM wake up event from this API.
  68. *
  69. * @param dev Pointer to the device structure for the driver instance.
  70. *
  71. * @retval 1 if the rtc interrupt is pending.
  72. * @retval 0 if no rtc interrupt is pending.
  73. */
  74. static inline bool acts_is_alarm_wakeup(const struct device *dev)
  75. {
  76. struct alarm_driver_api *api = (struct alarm_driver_api *)dev->api;
  77. return api->is_alarm_wakeup(dev);
  78. }
  79. #ifdef __cplusplus
  80. }
  81. #endif
  82. #endif