Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | /* ST Microelectronics STTS751 temperature sensor * * Copyright (c) 2019 STMicroelectronics * * SPDX-License-Identifier: Apache-2.0 * * Datasheet: * https://www.st.com/resource/en/datasheet/stts751.pdf */ #define DT_DRV_COMPAT st_stts751 #include <zephyr/drivers/sensor.h> #include <zephyr/kernel.h> #include <zephyr/device.h> #include <zephyr/init.h> #include <zephyr/sys/byteorder.h> #include <zephyr/sys/__assert.h> #include <zephyr/logging/log.h> #include "stts751.h" LOG_MODULE_REGISTER(STTS751, CONFIG_SENSOR_LOG_LEVEL); static inline int stts751_set_odr_raw(const struct device *dev, uint8_t odr) { struct stts751_data *data = dev->data; return stts751_temp_data_rate_set(data->ctx, odr); } static int stts751_sample_fetch(const struct device *dev, enum sensor_channel chan) { struct stts751_data *data = dev->data; int16_t raw_temp; __ASSERT_NO_MSG(chan == SENSOR_CHAN_ALL); if (stts751_temperature_raw_get(data->ctx, &raw_temp) < 0) { LOG_DBG("Failed to read sample"); return -EIO; } data->sample_temp = raw_temp; return 0; } static inline void stts751_temp_convert(struct sensor_value *val, int16_t raw_val) { val->val1 = raw_val / 256; val->val2 = ((int32_t)raw_val % 256) * 10000; } static int stts751_channel_get(const struct device *dev, enum sensor_channel chan, struct sensor_value *val) { struct stts751_data *data = dev->data; if (chan == SENSOR_CHAN_AMBIENT_TEMP) { stts751_temp_convert(val, data->sample_temp); } else { return -ENOTSUP; } return 0; } static const struct { int32_t rate; int32_t rate_dec; } stts751_map[] = { {0, 62500}, {0, 125000}, {0, 250000}, {0, 500000}, {1, 0}, {2, 0}, {4, 0}, {8, 0}, {16, 0}, {32, 0}, }; static int stts751_odr_set(const struct device *dev, const struct sensor_value *val) { int odr; for (odr = 0; odr < ARRAY_SIZE(stts751_map); odr++) { if (val->val1 == stts751_map[odr].rate && val->val2 == stts751_map[odr].rate_dec) { break; } } if (odr == ARRAY_SIZE(stts751_map)) { LOG_DBG("bad frequency"); return -EINVAL; } if (stts751_set_odr_raw(dev, odr) < 0) { LOG_DBG("failed to set sampling rate"); return -EIO; } return 0; } static int stts751_attr_set(const struct device *dev, enum sensor_channel chan, enum sensor_attribute attr, const struct sensor_value *val) { if (chan != SENSOR_CHAN_ALL) { LOG_WRN("attr_set() not supported on this channel."); return -ENOTSUP; } switch (attr) { case SENSOR_ATTR_SAMPLING_FREQUENCY: return stts751_odr_set(dev, val); default: LOG_DBG("operation not supported."); return -ENOTSUP; } return 0; } static const struct sensor_driver_api stts751_api_funcs = { .attr_set = stts751_attr_set, .sample_fetch = stts751_sample_fetch, .channel_get = stts751_channel_get, #if CONFIG_STTS751_TRIGGER .trigger_set = stts751_trigger_set, #endif }; static int stts751_init_chip(const struct device *dev) { struct stts751_data *data = dev->data; stts751_id_t chip_id; if (stts751_device_id_get(data->ctx, &chip_id) < 0) { LOG_DBG("Failed reading chip id"); return -EIO; } if (chip_id.manufacturer_id != STTS751_ID_MAN) { LOG_DBG("Invalid chip id 0x%x", chip_id.manufacturer_id); return -EIO; } if (stts751_set_odr_raw(dev, CONFIG_STTS751_SAMPLING_RATE) < 0) { LOG_DBG("Failed to set sampling rate"); return -EIO; } if (stts751_resolution_set(data->ctx, STTS751_11bit) < 0) { LOG_DBG("Failed to set resolution"); return -EIO; } return 0; } static int stts751_init(const struct device *dev) { const struct stts751_config * const config = dev->config; struct stts751_data *data = dev->data; data->dev = dev; data->bus = device_get_binding(config->master_dev_name); if (!data->bus) { LOG_DBG("bus master not found: %s", config->master_dev_name); return -EINVAL; } config->bus_init(dev); if (stts751_init_chip(dev) < 0) { LOG_DBG("Failed to initialize chip"); return -EIO; } #ifdef CONFIG_STTS751_TRIGGER if (stts751_init_interrupt(dev) < 0) { LOG_ERR("Failed to initialize interrupt."); return -EIO; } #endif return 0; } static struct stts751_data stts751_data; static const struct stts751_config stts751_config = { .master_dev_name = DT_INST_BUS_LABEL(0), #ifdef CONFIG_STTS751_TRIGGER .event_port = DT_INST_GPIO_LABEL(0, drdy_gpios), .event_pin = DT_INST_GPIO_PIN(0, drdy_gpios), .int_flags = DT_INST_GPIO_FLAGS(0, drdy_gpios), #endif #if DT_ANY_INST_ON_BUS_STATUS_OKAY(i2c) .bus_init = stts751_i2c_init, .i2c_slv_addr = DT_INST_REG_ADDR(0), #else #error "BUS MACRO NOT DEFINED IN DTS" #endif }; DEVICE_DT_INST_DEFINE(0, stts751_init, NULL, &stts751_data, &stts751_config, POST_KERNEL, CONFIG_SENSOR_INIT_PRIORITY, &stts751_api_funcs); |