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