lps22hh.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. /* ST Microelectronics LPS22HH pressure and temperature sensor
  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/lps22hh.pdf
  9. */
  10. #define DT_DRV_COMPAT st_lps22hh
  11. #include <drivers/sensor.h>
  12. #include <kernel.h>
  13. #include <device.h>
  14. #include <init.h>
  15. #include <sys/byteorder.h>
  16. #include <sys/__assert.h>
  17. #include <logging/log.h>
  18. #include "lps22hh.h"
  19. LOG_MODULE_REGISTER(LPS22HH, CONFIG_SENSOR_LOG_LEVEL);
  20. static inline int lps22hh_set_odr_raw(const struct device *dev, uint8_t odr)
  21. {
  22. struct lps22hh_data *data = dev->data;
  23. return lps22hh_data_rate_set(data->ctx, odr);
  24. }
  25. static int lps22hh_sample_fetch(const struct device *dev,
  26. enum sensor_channel chan)
  27. {
  28. struct lps22hh_data *data = dev->data;
  29. uint32_t raw_press;
  30. int16_t raw_temp;
  31. __ASSERT_NO_MSG(chan == SENSOR_CHAN_ALL);
  32. if (lps22hh_pressure_raw_get(data->ctx, &raw_press) < 0) {
  33. LOG_DBG("Failed to read sample");
  34. return -EIO;
  35. }
  36. if (lps22hh_temperature_raw_get(data->ctx, &raw_temp) < 0) {
  37. LOG_DBG("Failed to read sample");
  38. return -EIO;
  39. }
  40. data->sample_press = raw_press;
  41. data->sample_temp = raw_temp;
  42. return 0;
  43. }
  44. static inline void lps22hh_press_convert(struct sensor_value *val,
  45. int32_t raw_val)
  46. {
  47. int32_t press_tmp = raw_val >> 8; /* raw value is left aligned (24 msb) */
  48. /* Pressure sensitivity is 4096 LSB/hPa */
  49. /* Also convert hPa into kPa */
  50. val->val1 = press_tmp / 40960;
  51. /* For the decimal part use (3125 / 128) as a factor instead of
  52. * (1000000 / 40960) to avoid int32 overflow
  53. */
  54. val->val2 = (press_tmp % 40960) * 3125 / 128;
  55. }
  56. static inline void lps22hh_temp_convert(struct sensor_value *val,
  57. int16_t raw_val)
  58. {
  59. /* Temperature sensitivity is 100 LSB/deg C */
  60. val->val1 = raw_val / 100;
  61. val->val2 = ((int32_t)raw_val % 100) * 10000;
  62. }
  63. static int lps22hh_channel_get(const struct device *dev,
  64. enum sensor_channel chan,
  65. struct sensor_value *val)
  66. {
  67. struct lps22hh_data *data = dev->data;
  68. if (chan == SENSOR_CHAN_PRESS) {
  69. lps22hh_press_convert(val, data->sample_press);
  70. } else if (chan == SENSOR_CHAN_AMBIENT_TEMP) {
  71. lps22hh_temp_convert(val, data->sample_temp);
  72. } else {
  73. return -ENOTSUP;
  74. }
  75. return 0;
  76. }
  77. static const uint16_t lps22hh_map[] = {0, 1, 10, 25, 50, 75, 100, 200};
  78. static int lps22hh_odr_set(const struct device *dev, uint16_t freq)
  79. {
  80. int odr;
  81. for (odr = 0; odr < ARRAY_SIZE(lps22hh_map); odr++) {
  82. if (freq == lps22hh_map[odr]) {
  83. break;
  84. }
  85. }
  86. if (odr == ARRAY_SIZE(lps22hh_map)) {
  87. LOG_DBG("bad frequency");
  88. return -EINVAL;
  89. }
  90. if (lps22hh_set_odr_raw(dev, odr) < 0) {
  91. LOG_DBG("failed to set sampling rate");
  92. return -EIO;
  93. }
  94. return 0;
  95. }
  96. static int lps22hh_attr_set(const struct device *dev,
  97. enum sensor_channel chan,
  98. enum sensor_attribute attr,
  99. const struct sensor_value *val)
  100. {
  101. if (chan != SENSOR_CHAN_ALL) {
  102. LOG_WRN("attr_set() not supported on this channel.");
  103. return -ENOTSUP;
  104. }
  105. switch (attr) {
  106. case SENSOR_ATTR_SAMPLING_FREQUENCY:
  107. return lps22hh_odr_set(dev, val->val1);
  108. default:
  109. LOG_DBG("operation not supported.");
  110. return -ENOTSUP;
  111. }
  112. return 0;
  113. }
  114. static const struct sensor_driver_api lps22hh_api_funcs = {
  115. .attr_set = lps22hh_attr_set,
  116. .sample_fetch = lps22hh_sample_fetch,
  117. .channel_get = lps22hh_channel_get,
  118. #if CONFIG_LPS22HH_TRIGGER
  119. .trigger_set = lps22hh_trigger_set,
  120. #endif
  121. };
  122. static int lps22hh_init_chip(const struct device *dev)
  123. {
  124. struct lps22hh_data *data = dev->data;
  125. uint8_t chip_id;
  126. if (lps22hh_device_id_get(data->ctx, &chip_id) < 0) {
  127. LOG_DBG("Failed reading chip id");
  128. return -EIO;
  129. }
  130. if (chip_id != LPS22HH_ID) {
  131. LOG_DBG("Invalid chip id 0x%x", chip_id);
  132. return -EIO;
  133. }
  134. if (lps22hh_set_odr_raw(dev, CONFIG_LPS22HH_SAMPLING_RATE) < 0) {
  135. LOG_DBG("Failed to set sampling rate");
  136. return -EIO;
  137. }
  138. if (lps22hh_block_data_update_set(data->ctx, PROPERTY_ENABLE) < 0) {
  139. LOG_DBG("Failed to set BDU");
  140. return -EIO;
  141. }
  142. return 0;
  143. }
  144. static int lps22hh_init(const struct device *dev)
  145. {
  146. const struct lps22hh_config * const config = dev->config;
  147. struct lps22hh_data *data = dev->data;
  148. data->dev = dev;
  149. data->bus = device_get_binding(config->master_dev_name);
  150. if (!data->bus) {
  151. LOG_DBG("bus master not found: %s", config->master_dev_name);
  152. return -EINVAL;
  153. }
  154. config->bus_init(dev);
  155. if (lps22hh_init_chip(dev) < 0) {
  156. LOG_DBG("Failed to initialize chip");
  157. return -EIO;
  158. }
  159. #ifdef CONFIG_LPS22HH_TRIGGER
  160. if (lps22hh_init_interrupt(dev) < 0) {
  161. LOG_ERR("Failed to initialize interrupt.");
  162. return -EIO;
  163. }
  164. #endif
  165. return 0;
  166. }
  167. static struct lps22hh_data lps22hh_data;
  168. static const struct lps22hh_config lps22hh_config = {
  169. .master_dev_name = DT_INST_BUS_LABEL(0),
  170. #ifdef CONFIG_LPS22HH_TRIGGER
  171. .drdy_port = DT_INST_GPIO_LABEL(0, drdy_gpios),
  172. .drdy_pin = DT_INST_GPIO_PIN(0, drdy_gpios),
  173. .drdy_flags = DT_INST_GPIO_FLAGS(0, drdy_gpios),
  174. #endif
  175. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(spi)
  176. .bus_init = lps22hh_spi_init,
  177. .spi_conf.frequency = DT_INST_PROP(0, spi_max_frequency),
  178. .spi_conf.operation = (SPI_OP_MODE_MASTER | SPI_MODE_CPOL |
  179. SPI_MODE_CPHA | SPI_WORD_SET(8) |
  180. SPI_LINES_SINGLE),
  181. .spi_conf.slave = DT_INST_REG_ADDR(0),
  182. #if DT_INST_SPI_DEV_HAS_CS_GPIOS(0)
  183. .gpio_cs_port = DT_INST_SPI_DEV_CS_GPIOS_LABEL(0),
  184. .cs_gpio = DT_INST_SPI_DEV_CS_GPIOS_PIN(0),
  185. .cs_gpio_flags = DT_INST_SPI_DEV_CS_GPIOS_FLAGS(0),
  186. .spi_conf.cs = &lps22hh_data.cs_ctrl,
  187. #else
  188. .spi_conf.cs = NULL,
  189. #endif
  190. #elif DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c)
  191. .bus_init = lps22hh_i2c_init,
  192. .i2c_slv_addr = DT_INST_REG_ADDR(0),
  193. #else
  194. #error "BUS MACRO NOT DEFINED IN DTS"
  195. #endif
  196. };
  197. DEVICE_DT_INST_DEFINE(0, lps22hh_init, NULL,
  198. &lps22hh_data, &lps22hh_config, POST_KERNEL,
  199. CONFIG_SENSOR_INIT_PRIORITY, &lps22hh_api_funcs);