lps22hh_spi.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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 <string.h>
  12. #include "lps22hh.h"
  13. #include <logging/log.h>
  14. #if DT_ANY_INST_ON_BUS_STATUS_OKAY(spi)
  15. #define LPS22HH_SPI_READ (1 << 7)
  16. LOG_MODULE_DECLARE(LPS22HH, CONFIG_SENSOR_LOG_LEVEL);
  17. static int lps22hh_spi_read(struct lps22hh_data *data, uint8_t reg_addr,
  18. uint8_t *value, uint8_t len)
  19. {
  20. const struct lps22hh_config *cfg = data->dev->config;
  21. const struct spi_config *spi_cfg = &cfg->spi_conf;
  22. uint8_t buffer_tx[2] = { reg_addr | LPS22HH_SPI_READ, 0 };
  23. const struct spi_buf tx_buf = {
  24. .buf = buffer_tx,
  25. .len = 2,
  26. };
  27. const struct spi_buf_set tx = {
  28. .buffers = &tx_buf,
  29. .count = 1
  30. };
  31. const struct spi_buf rx_buf[2] = {
  32. {
  33. .buf = NULL,
  34. .len = 1,
  35. },
  36. {
  37. .buf = value,
  38. .len = len,
  39. }
  40. };
  41. const struct spi_buf_set rx = {
  42. .buffers = rx_buf,
  43. .count = 2
  44. };
  45. if (len > 64) {
  46. return -EIO;
  47. }
  48. if (spi_transceive(data->bus, spi_cfg, &tx, &rx)) {
  49. return -EIO;
  50. }
  51. return 0;
  52. }
  53. static int lps22hh_spi_write(struct lps22hh_data *data, uint8_t reg_addr,
  54. uint8_t *value, uint8_t len)
  55. {
  56. const struct lps22hh_config *cfg = data->dev->config;
  57. const struct spi_config *spi_cfg = &cfg->spi_conf;
  58. uint8_t buffer_tx[1] = { reg_addr & ~LPS22HH_SPI_READ };
  59. const struct spi_buf tx_buf[2] = {
  60. {
  61. .buf = buffer_tx,
  62. .len = 1,
  63. },
  64. {
  65. .buf = value,
  66. .len = len,
  67. }
  68. };
  69. const struct spi_buf_set tx = {
  70. .buffers = tx_buf,
  71. .count = 2
  72. };
  73. if (len > 64) {
  74. return -EIO;
  75. }
  76. if (spi_write(data->bus, spi_cfg, &tx)) {
  77. return -EIO;
  78. }
  79. return 0;
  80. }
  81. int lps22hh_spi_init(const struct device *dev)
  82. {
  83. struct lps22hh_data *data = dev->data;
  84. data->ctx_spi.read_reg = (stmdev_read_ptr) lps22hh_spi_read;
  85. data->ctx_spi.write_reg = (stmdev_write_ptr) lps22hh_spi_write;
  86. data->ctx = &data->ctx_spi;
  87. data->ctx->handle = data;
  88. #if DT_INST_SPI_DEV_HAS_CS_GPIOS(0)
  89. const struct lps22hh_config *cfg = dev->config;
  90. /* handle SPI CS thru GPIO if it is the case */
  91. data->cs_ctrl.gpio_dev = device_get_binding(cfg->gpio_cs_port);
  92. if (!data->cs_ctrl.gpio_dev) {
  93. LOG_ERR("Unable to get GPIO SPI CS device");
  94. return -ENODEV;
  95. }
  96. data->cs_ctrl.gpio_pin = cfg->cs_gpio;
  97. data->cs_ctrl.gpio_dt_flags = cfg->cs_gpio_flags;
  98. data->cs_ctrl.delay = 0;
  99. LOG_DBG("SPI GPIO CS configured on %s:%u",
  100. cfg->gpio_cs_port, cfg->cs_gpio);
  101. #endif
  102. return 0;
  103. }
  104. #endif /* DT_ANY_INST_ON_BUS_STATUS_OKAY(spi) */