lps22hh.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. #ifndef ZEPHYR_DRIVERS_SENSOR_LPS22HH_LPS22HH_H_
  11. #define ZEPHYR_DRIVERS_SENSOR_LPS22HH_LPS22HH_H_
  12. #include <stdint.h>
  13. #include <drivers/i2c.h>
  14. #include <drivers/spi.h>
  15. #include <drivers/gpio.h>
  16. #include <drivers/sensor.h>
  17. #include <zephyr/types.h>
  18. #include <sys/util.h>
  19. #include "lps22hh_reg.h"
  20. struct lps22hh_config {
  21. char *master_dev_name;
  22. int (*bus_init)(const struct device *dev);
  23. #ifdef CONFIG_LPS22HH_TRIGGER
  24. const char *drdy_port;
  25. uint8_t drdy_pin;
  26. uint8_t drdy_flags;
  27. #endif
  28. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c)
  29. uint16_t i2c_slv_addr;
  30. #elif DT_ANY_INST_ON_BUS_STATUS_OKAY(spi)
  31. struct spi_config spi_conf;
  32. #if DT_INST_SPI_DEV_HAS_CS_GPIOS(0)
  33. const char *gpio_cs_port;
  34. uint8_t cs_gpio;
  35. uint8_t cs_gpio_flags;
  36. #endif
  37. #endif
  38. };
  39. struct lps22hh_data {
  40. const struct device *dev;
  41. const struct device *bus;
  42. int32_t sample_press;
  43. int16_t sample_temp;
  44. stmdev_ctx_t *ctx;
  45. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c)
  46. stmdev_ctx_t ctx_i2c;
  47. #elif DT_ANY_INST_ON_BUS_STATUS_OKAY(spi)
  48. stmdev_ctx_t ctx_spi;
  49. #endif
  50. #ifdef CONFIG_LPS22HH_TRIGGER
  51. const struct device *gpio;
  52. uint32_t pin;
  53. struct gpio_callback gpio_cb;
  54. struct sensor_trigger data_ready_trigger;
  55. sensor_trigger_handler_t handler_drdy;
  56. #if defined(CONFIG_LPS22HH_TRIGGER_OWN_THREAD)
  57. K_KERNEL_STACK_MEMBER(thread_stack, CONFIG_LPS22HH_THREAD_STACK_SIZE);
  58. struct k_thread thread;
  59. struct k_sem gpio_sem;
  60. #elif defined(CONFIG_LPS22HH_TRIGGER_GLOBAL_THREAD)
  61. struct k_work work;
  62. #endif
  63. #endif /* CONFIG_LPS22HH_TRIGGER */
  64. #if DT_INST_SPI_DEV_HAS_CS_GPIOS(0)
  65. struct spi_cs_control cs_ctrl;
  66. #endif
  67. };
  68. int lps22hh_i2c_init(const struct device *dev);
  69. int lps22hh_spi_init(const struct device *dev);
  70. #ifdef CONFIG_LPS22HH_TRIGGER
  71. int lps22hh_trigger_set(const struct device *dev,
  72. const struct sensor_trigger *trig,
  73. sensor_trigger_handler_t handler);
  74. int lps22hh_init_interrupt(const struct device *dev);
  75. #endif
  76. #endif /* ZEPHYR_DRIVERS_SENSOR_LPS22HH_LPS22HH_H_ */