lsm6dso_trigger.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. /* ST Microelectronics LSM6DSO 6-axis IMU sensor driver
  2. *
  3. * Copyright (c) 2019 STMicroelectronics
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. *
  7. * Datasheet:
  8. * https://www.st.com/resource/en/datasheet/lsm6dso.pdf
  9. */
  10. #define DT_DRV_COMPAT st_lsm6dso
  11. #include <kernel.h>
  12. #include <drivers/sensor.h>
  13. #include <drivers/gpio.h>
  14. #include <logging/log.h>
  15. #include "lsm6dso.h"
  16. LOG_MODULE_DECLARE(LSM6DSO, CONFIG_SENSOR_LOG_LEVEL);
  17. #if defined(CONFIG_LSM6DSO_ENABLE_TEMP)
  18. /**
  19. * lsm6dso_enable_t_int - TEMP enable selected int pin to generate interrupt
  20. */
  21. static int lsm6dso_enable_t_int(const struct device *dev, int enable)
  22. {
  23. const struct lsm6dso_config *cfg = dev->config;
  24. stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx;
  25. struct lsm6dso_data *lsm6dso = dev->data;
  26. lsm6dso_int2_ctrl_t int2_ctrl;
  27. if (enable) {
  28. int16_t buf;
  29. /* dummy read: re-trigger interrupt */
  30. lsm6dso_temperature_raw_get(ctx, &buf);
  31. }
  32. /* set interrupt (TEMP DRDY interrupt is only on INT2) */
  33. if (cfg->int_pin == 1)
  34. return -EIO;
  35. lsm6dso_read_reg(ctx, LSM6DSO_INT2_CTRL, (uint8_t *)&int2_ctrl, 1);
  36. int2_route.int2_ctrl.int2_drdy_temp = enable;
  37. return lsm6dso_write_reg(ctx, LSM6DSO_INT2_CTRL,
  38. (uint8_t *)&int2_ctrl, 1);
  39. }
  40. #endif
  41. /**
  42. * lsm6dso_enable_xl_int - XL enable selected int pin to generate interrupt
  43. */
  44. static int lsm6dso_enable_xl_int(const struct device *dev, int enable)
  45. {
  46. const struct lsm6dso_config *cfg = dev->config;
  47. stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx;
  48. if (enable) {
  49. int16_t buf[3];
  50. /* dummy read: re-trigger interrupt */
  51. lsm6dso_acceleration_raw_get(ctx, buf);
  52. }
  53. /* set interrupt */
  54. if (cfg->int_pin == 1) {
  55. lsm6dso_int1_ctrl_t int1_ctrl;
  56. lsm6dso_read_reg(ctx, LSM6DSO_INT1_CTRL,
  57. (uint8_t *)&int1_ctrl, 1);
  58. int1_ctrl.int1_drdy_xl = enable;
  59. return lsm6dso_write_reg(ctx, LSM6DSO_INT1_CTRL,
  60. (uint8_t *)&int1_ctrl, 1);
  61. } else {
  62. lsm6dso_int2_ctrl_t int2_ctrl;
  63. lsm6dso_read_reg(ctx, LSM6DSO_INT2_CTRL,
  64. (uint8_t *)&int2_ctrl, 1);
  65. int2_ctrl.int2_drdy_xl = enable;
  66. return lsm6dso_write_reg(ctx, LSM6DSO_INT2_CTRL,
  67. (uint8_t *)&int2_ctrl, 1);
  68. }
  69. }
  70. /**
  71. * lsm6dso_enable_g_int - Gyro enable selected int pin to generate interrupt
  72. */
  73. static int lsm6dso_enable_g_int(const struct device *dev, int enable)
  74. {
  75. const struct lsm6dso_config *cfg = dev->config;
  76. stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx;
  77. if (enable) {
  78. int16_t buf[3];
  79. /* dummy read: re-trigger interrupt */
  80. lsm6dso_angular_rate_raw_get(ctx, buf);
  81. }
  82. /* set interrupt */
  83. if (cfg->int_pin == 1) {
  84. lsm6dso_int1_ctrl_t int1_ctrl;
  85. lsm6dso_read_reg(ctx, LSM6DSO_INT1_CTRL,
  86. (uint8_t *)&int1_ctrl, 1);
  87. int1_ctrl.int1_drdy_g = enable;
  88. return lsm6dso_write_reg(ctx, LSM6DSO_INT1_CTRL,
  89. (uint8_t *)&int1_ctrl, 1);
  90. } else {
  91. lsm6dso_int2_ctrl_t int2_ctrl;
  92. lsm6dso_read_reg(ctx, LSM6DSO_INT2_CTRL,
  93. (uint8_t *)&int2_ctrl, 1);
  94. int2_ctrl.int2_drdy_g = enable;
  95. return lsm6dso_write_reg(ctx, LSM6DSO_INT2_CTRL,
  96. (uint8_t *)&int2_ctrl, 1);
  97. }
  98. }
  99. /**
  100. * lsm6dso_trigger_set - link external trigger to event data ready
  101. */
  102. int lsm6dso_trigger_set(const struct device *dev,
  103. const struct sensor_trigger *trig,
  104. sensor_trigger_handler_t handler)
  105. {
  106. const struct lsm6dso_config *cfg = dev->config;
  107. struct lsm6dso_data *lsm6dso = dev->data;
  108. if (!cfg->trig_enabled) {
  109. LOG_ERR("trigger_set op not supported");
  110. return -ENOTSUP;
  111. }
  112. if (trig->chan == SENSOR_CHAN_ACCEL_XYZ) {
  113. lsm6dso->handler_drdy_acc = handler;
  114. if (handler) {
  115. return lsm6dso_enable_xl_int(dev, LSM6DSO_EN_BIT);
  116. } else {
  117. return lsm6dso_enable_xl_int(dev, LSM6DSO_DIS_BIT);
  118. }
  119. } else if (trig->chan == SENSOR_CHAN_GYRO_XYZ) {
  120. lsm6dso->handler_drdy_gyr = handler;
  121. if (handler) {
  122. return lsm6dso_enable_g_int(dev, LSM6DSO_EN_BIT);
  123. } else {
  124. return lsm6dso_enable_g_int(dev, LSM6DSO_DIS_BIT);
  125. }
  126. }
  127. #if defined(CONFIG_LSM6DSO_ENABLE_TEMP)
  128. else if (trig->chan == SENSOR_CHAN_DIE_TEMP) {
  129. lsm6dso->handler_drdy_temp = handler;
  130. if (handler) {
  131. return lsm6dso_enable_t_int(dev, LSM6DSO_EN_BIT);
  132. } else {
  133. return lsm6dso_enable_t_int(dev, LSM6DSO_DIS_BIT);
  134. }
  135. }
  136. #endif
  137. return -ENOTSUP;
  138. }
  139. /**
  140. * lsm6dso_handle_interrupt - handle the drdy event
  141. * read data and call handler if registered any
  142. */
  143. static void lsm6dso_handle_interrupt(const struct device *dev)
  144. {
  145. struct lsm6dso_data *lsm6dso = dev->data;
  146. struct sensor_trigger drdy_trigger = {
  147. .type = SENSOR_TRIG_DATA_READY,
  148. };
  149. const struct lsm6dso_config *cfg = dev->config;
  150. stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx;
  151. lsm6dso_status_reg_t status;
  152. while (1) {
  153. if (lsm6dso_status_reg_get(ctx, &status) < 0) {
  154. LOG_DBG("failed reading status reg");
  155. return;
  156. }
  157. if ((status.xlda == 0) && (status.gda == 0)
  158. #if defined(CONFIG_LSM6DSO_ENABLE_TEMP)
  159. && (status.tda == 0)
  160. #endif
  161. ) {
  162. break;
  163. }
  164. if ((status.xlda) && (lsm6dso->handler_drdy_acc != NULL)) {
  165. lsm6dso->handler_drdy_acc(dev, &drdy_trigger);
  166. }
  167. if ((status.gda) && (lsm6dso->handler_drdy_gyr != NULL)) {
  168. lsm6dso->handler_drdy_gyr(dev, &drdy_trigger);
  169. }
  170. #if defined(CONFIG_LSM6DSO_ENABLE_TEMP)
  171. if ((status.tda) && (lsm6dso->handler_drdy_temp != NULL)) {
  172. lsm6dso->handler_drdy_temp(dev, &drdy_trigger);
  173. }
  174. #endif
  175. }
  176. gpio_pin_interrupt_configure_dt(&cfg->gpio_drdy,
  177. GPIO_INT_EDGE_TO_ACTIVE);
  178. }
  179. static void lsm6dso_gpio_callback(const struct device *dev,
  180. struct gpio_callback *cb, uint32_t pins)
  181. {
  182. struct lsm6dso_data *lsm6dso =
  183. CONTAINER_OF(cb, struct lsm6dso_data, gpio_cb);
  184. const struct lsm6dso_config *cfg = lsm6dso->dev->config;
  185. ARG_UNUSED(pins);
  186. gpio_pin_interrupt_configure_dt(&cfg->gpio_drdy, GPIO_INT_DISABLE);
  187. #if defined(CONFIG_LSM6DSO_TRIGGER_OWN_THREAD)
  188. k_sem_give(&lsm6dso->gpio_sem);
  189. #elif defined(CONFIG_LSM6DSO_TRIGGER_GLOBAL_THREAD)
  190. k_work_submit(&lsm6dso->work);
  191. #endif /* CONFIG_LSM6DSO_TRIGGER_OWN_THREAD */
  192. }
  193. #ifdef CONFIG_LSM6DSO_TRIGGER_OWN_THREAD
  194. static void lsm6dso_thread(struct lsm6dso_data *lsm6dso)
  195. {
  196. while (1) {
  197. k_sem_take(&lsm6dso->gpio_sem, K_FOREVER);
  198. lsm6dso_handle_interrupt(lsm6dso->dev);
  199. }
  200. }
  201. #endif /* CONFIG_LSM6DSO_TRIGGER_OWN_THREAD */
  202. #ifdef CONFIG_LSM6DSO_TRIGGER_GLOBAL_THREAD
  203. static void lsm6dso_work_cb(struct k_work *work)
  204. {
  205. struct lsm6dso_data *lsm6dso =
  206. CONTAINER_OF(work, struct lsm6dso_data, work);
  207. lsm6dso_handle_interrupt(lsm6dso->dev);
  208. }
  209. #endif /* CONFIG_LSM6DSO_TRIGGER_GLOBAL_THREAD */
  210. int lsm6dso_init_interrupt(const struct device *dev)
  211. {
  212. struct lsm6dso_data *lsm6dso = dev->data;
  213. const struct lsm6dso_config *cfg = dev->config;
  214. stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx;
  215. int ret;
  216. /* setup data ready gpio interrupt (INT1 or INT2) */
  217. if (!device_is_ready(cfg->gpio_drdy.port)) {
  218. LOG_ERR("Cannot get pointer to drdy_gpio device");
  219. return -EINVAL;
  220. }
  221. #if defined(CONFIG_LSM6DSO_TRIGGER_OWN_THREAD)
  222. k_sem_init(&lsm6dso->gpio_sem, 0, K_SEM_MAX_LIMIT);
  223. k_thread_create(&lsm6dso->thread, lsm6dso->thread_stack,
  224. CONFIG_LSM6DSO_THREAD_STACK_SIZE,
  225. (k_thread_entry_t)lsm6dso_thread, lsm6dso,
  226. NULL, NULL, K_PRIO_COOP(CONFIG_LSM6DSO_THREAD_PRIORITY),
  227. 0, K_NO_WAIT);
  228. #elif defined(CONFIG_LSM6DSO_TRIGGER_GLOBAL_THREAD)
  229. lsm6dso->work.handler = lsm6dso_work_cb;
  230. #endif /* CONFIG_LSM6DSO_TRIGGER_OWN_THREAD */
  231. ret = gpio_pin_configure_dt(&cfg->gpio_drdy, GPIO_INPUT);
  232. if (ret < 0) {
  233. LOG_DBG("Could not configure gpio");
  234. return ret;
  235. }
  236. gpio_init_callback(&lsm6dso->gpio_cb,
  237. lsm6dso_gpio_callback,
  238. BIT(cfg->gpio_drdy.pin));
  239. if (gpio_add_callback(cfg->gpio_drdy.port, &lsm6dso->gpio_cb) < 0) {
  240. LOG_DBG("Could not set gpio callback");
  241. return -EIO;
  242. }
  243. /* enable interrupt on int1/int2 in pulse mode */
  244. if (lsm6dso_int_notification_set(ctx, LSM6DSO_ALL_INT_PULSED) < 0) {
  245. LOG_DBG("Could not set pulse mode");
  246. return -EIO;
  247. }
  248. return gpio_pin_interrupt_configure_dt(&cfg->gpio_drdy,
  249. GPIO_INT_EDGE_TO_ACTIVE);
  250. }