lis2dw12.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* ST Microelectronics LIS2DW12 3-axis accelerometer 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/lis2dw12.pdf
  9. */
  10. #ifndef ZEPHYR_DRIVERS_SENSOR_LIS2DW12_LIS2DW12_H_
  11. #define ZEPHYR_DRIVERS_SENSOR_LIS2DW12_LIS2DW12_H_
  12. #include <drivers/spi.h>
  13. #include <drivers/gpio.h>
  14. #include <sys/util.h>
  15. #include <drivers/sensor.h>
  16. #include <stmemsc.h>
  17. #include "lis2dw12_reg.h"
  18. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(spi)
  19. #include <drivers/spi.h>
  20. #endif /* DT_ANY_INST_ON_BUS_STATUS_OKAY(spi) */
  21. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c)
  22. #include <drivers/i2c.h>
  23. #endif /* DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c) */
  24. /* Return ODR reg value based on data rate set */
  25. #define LIS2DW12_ODR_TO_REG(_odr) \
  26. ((_odr <= 1) ? LIS2DW12_XL_ODR_1Hz6_LP_ONLY : \
  27. (_odr <= 12) ? LIS2DW12_XL_ODR_12Hz5 : \
  28. ((31 - __builtin_clz(_odr / 25))) + 3)
  29. /* FS reg value from Full Scale */
  30. #define LIS2DW12_FS_TO_REG(_fs) (30 - __builtin_clz(_fs))
  31. /* Acc Gain value in ug/LSB in High Perf mode */
  32. #define LIS2DW12_FS_2G_GAIN 244
  33. #define LIS2DW12_FS_4G_GAIN 488
  34. #define LIS2DW12_FS_8G_GAIN 976
  35. #define LIS2DW12_FS_16G_GAIN 1952
  36. #define LIS2DW12_SHFT_GAIN_NOLP1 2
  37. #define LIS2DW12_ACCEL_GAIN_DEFAULT_VAL LIS2DW12_FS_2G_GAIN
  38. #define LIS2DW12_FS_TO_GAIN(_fs, _lp1) \
  39. (LIS2DW12_FS_2G_GAIN << ((_fs) + (_lp1)))
  40. /* shift value for power mode */
  41. #define LIS2DW12_SHIFT_PM1 4
  42. #define LIS2DW12_SHIFT_PMOTHER 2
  43. /**
  44. * struct lis2dw12_device_config - lis2dw12 hw configuration
  45. * @bus_name: Pointer to bus master identifier.
  46. * @pm: Power mode (lis2dh_powermode).
  47. * @int_pin: Sensor int pin (int1/int2).
  48. */
  49. struct lis2dw12_device_config {
  50. stmdev_ctx_t ctx;
  51. union {
  52. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c)
  53. const struct stmemsc_cfg_i2c i2c;
  54. #endif
  55. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(spi)
  56. const struct stmemsc_cfg_spi spi;
  57. #endif
  58. } stmemsc_cfg;
  59. lis2dw12_mode_t pm;
  60. uint8_t range;
  61. #ifdef CONFIG_LIS2DW12_TRIGGER
  62. struct gpio_dt_spec gpio_int;
  63. uint8_t int_pin;
  64. #ifdef CONFIG_LIS2DW12_TAP
  65. uint8_t tap_mode;
  66. uint8_t tap_threshold[3];
  67. uint8_t tap_shock;
  68. uint8_t tap_latency;
  69. uint8_t tap_quiet;
  70. #endif /* CONFIG_LIS2DW12_TAP */
  71. #endif /* CONFIG_LIS2DW12_TRIGGER */
  72. };
  73. /* sensor data */
  74. struct lis2dw12_data {
  75. int16_t acc[3];
  76. /* save sensitivity */
  77. uint16_t gain;
  78. #ifdef CONFIG_LIS2DW12_TRIGGER
  79. const struct device *dev;
  80. struct gpio_callback gpio_cb;
  81. sensor_trigger_handler_t drdy_handler;
  82. #ifdef CONFIG_LIS2DW12_TAP
  83. sensor_trigger_handler_t tap_handler;
  84. sensor_trigger_handler_t double_tap_handler;
  85. #endif /* CONFIG_LIS2DW12_TAP */
  86. #if defined(CONFIG_LIS2DW12_TRIGGER_OWN_THREAD)
  87. K_KERNEL_STACK_MEMBER(thread_stack, CONFIG_LIS2DW12_THREAD_STACK_SIZE);
  88. struct k_thread thread;
  89. struct k_sem gpio_sem;
  90. #elif defined(CONFIG_LIS2DW12_TRIGGER_GLOBAL_THREAD)
  91. struct k_work work;
  92. #endif /* CONFIG_LIS2DW12_TRIGGER_GLOBAL_THREAD */
  93. #endif /* CONFIG_LIS2DW12_TRIGGER */
  94. };
  95. #ifdef CONFIG_LIS2DW12_TRIGGER
  96. int lis2dw12_init_interrupt(const struct device *dev);
  97. int lis2dw12_trigger_set(const struct device *dev,
  98. const struct sensor_trigger *trig,
  99. sensor_trigger_handler_t handler);
  100. #endif /* CONFIG_LIS2DW12_TRIGGER */
  101. #endif /* ZEPHYR_DRIVERS_SENSOR_LIS2DW12_LIS2DW12_H_ */