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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | /* ST Microelectronics ISM330DHCX 6-axis IMU sensor driver * * Copyright (c) 2020 STMicroelectronics * * SPDX-License-Identifier: Apache-2.0 * * Datasheet: * https://www.st.com/resource/en/datasheet/ism330dhcx.pdf */ #define DT_DRV_COMPAT st_ism330dhcx #include <zephyr/kernel.h> #include <zephyr/drivers/sensor.h> #include <zephyr/drivers/gpio.h> #include <zephyr/logging/log.h> #include "ism330dhcx.h" LOG_MODULE_DECLARE(ISM330DHCX, CONFIG_SENSOR_LOG_LEVEL); #if defined(CONFIG_ISM330DHCX_ENABLE_TEMP) /** * ism330dhcx_enable_t_int - TEMP enable selected int pin to generate interrupt */ static int ism330dhcx_enable_t_int(const struct device *dev, int enable) { const struct ism330dhcx_config *cfg = dev->config; struct ism330dhcx_data *ism330dhcx = dev->data; ism330dhcx_pin_int2_route_t int2_route; if (enable) { int16_t buf; /* dummy read: re-trigger interrupt */ ism330dhcx_temperature_raw_get(ism330dhcx->ctx, &buf); } /* set interrupt (TEMP DRDY interrupt is only on INT2) */ if (cfg->int_pin == 1) return -EIO; ism330dhcx_read_reg(ism330dhcx->ctx, ISM330DHCX_INT2_CTRL, (uint8_t *)&int2_route.int2_ctrl, 1); int2_route.int2_ctrl.int2_drdy_temp = enable; return ism330dhcx_write_reg(ism330dhcx->ctx, ISM330DHCX_INT2_CTRL, (uint8_t *)&int2_route.int2_ctrl, 1); } #endif /** * ism330dhcx_enable_xl_int - XL enable selected int pin to generate interrupt */ static int ism330dhcx_enable_xl_int(const struct device *dev, int enable) { const struct ism330dhcx_config *cfg = dev->config; struct ism330dhcx_data *ism330dhcx = dev->data; if (enable) { int16_t buf[3]; /* dummy read: re-trigger interrupt */ ism330dhcx_acceleration_raw_get(ism330dhcx->ctx, buf); } /* set interrupt */ if (cfg->int_pin == 1) { ism330dhcx_pin_int1_route_t int1_route; ism330dhcx_read_reg(ism330dhcx->ctx, ISM330DHCX_INT1_CTRL, (uint8_t *)&int1_route.int1_ctrl, 1); int1_route.int1_ctrl.int1_drdy_xl = enable; return ism330dhcx_write_reg(ism330dhcx->ctx, ISM330DHCX_INT1_CTRL, (uint8_t *)&int1_route.int1_ctrl, 1); } else { ism330dhcx_pin_int2_route_t int2_route; ism330dhcx_read_reg(ism330dhcx->ctx, ISM330DHCX_INT2_CTRL, (uint8_t *)&int2_route.int2_ctrl, 1); int2_route.int2_ctrl.int2_drdy_xl = enable; return ism330dhcx_write_reg(ism330dhcx->ctx, ISM330DHCX_INT2_CTRL, (uint8_t *)&int2_route.int2_ctrl, 1); } } /** * ism330dhcx_enable_g_int - Gyro enable selected int pin to generate interrupt */ static int ism330dhcx_enable_g_int(const struct device *dev, int enable) { const struct ism330dhcx_config *cfg = dev->config; struct ism330dhcx_data *ism330dhcx = dev->data; if (enable) { int16_t buf[3]; /* dummy read: re-trigger interrupt */ ism330dhcx_angular_rate_raw_get(ism330dhcx->ctx, buf); } /* set interrupt */ if (cfg->int_pin == 1) { ism330dhcx_pin_int1_route_t int1_route; ism330dhcx_read_reg(ism330dhcx->ctx, ISM330DHCX_INT1_CTRL, (uint8_t *)&int1_route.int1_ctrl, 1); int1_route.int1_ctrl.int1_drdy_g = enable; return ism330dhcx_write_reg(ism330dhcx->ctx, ISM330DHCX_INT1_CTRL, (uint8_t *)&int1_route.int1_ctrl, 1); } else { ism330dhcx_pin_int2_route_t int2_route; ism330dhcx_read_reg(ism330dhcx->ctx, ISM330DHCX_INT2_CTRL, (uint8_t *)&int2_route.int2_ctrl, 1); int2_route.int2_ctrl.int2_drdy_g = enable; return ism330dhcx_write_reg(ism330dhcx->ctx, ISM330DHCX_INT2_CTRL, (uint8_t *)&int2_route.int2_ctrl, 1); } } /** * ism330dhcx_trigger_set - link external trigger to event data ready */ int ism330dhcx_trigger_set(const struct device *dev, const struct sensor_trigger *trig, sensor_trigger_handler_t handler) { struct ism330dhcx_data *ism330dhcx = dev->data; if (trig->chan == SENSOR_CHAN_ACCEL_XYZ) { ism330dhcx->handler_drdy_acc = handler; if (handler) { return ism330dhcx_enable_xl_int(dev, ISM330DHCX_EN_BIT); } else { return ism330dhcx_enable_xl_int(dev, ISM330DHCX_DIS_BIT); } } else if (trig->chan == SENSOR_CHAN_GYRO_XYZ) { ism330dhcx->handler_drdy_gyr = handler; if (handler) { return ism330dhcx_enable_g_int(dev, ISM330DHCX_EN_BIT); } else { return ism330dhcx_enable_g_int(dev, ISM330DHCX_DIS_BIT); } } #if defined(CONFIG_ISM330DHCX_ENABLE_TEMP) else if (trig->chan == SENSOR_CHAN_DIE_TEMP) { ism330dhcx->handler_drdy_temp = handler; if (handler) { return ism330dhcx_enable_t_int(dev, ISM330DHCX_EN_BIT); } else { return ism330dhcx_enable_t_int(dev, ISM330DHCX_DIS_BIT); } } #endif return -ENOTSUP; } /** * ism330dhcx_handle_interrupt - handle the drdy event * read data and call handler if registered any */ static void ism330dhcx_handle_interrupt(const struct device *dev) { struct ism330dhcx_data *ism330dhcx = dev->data; struct sensor_trigger drdy_trigger = { .type = SENSOR_TRIG_DATA_READY, }; const struct ism330dhcx_config *cfg = dev->config; ism330dhcx_status_reg_t status; while (1) { if (ism330dhcx_status_reg_get(ism330dhcx->ctx, &status) < 0) { LOG_DBG("failed reading status reg"); return; } if ((status.xlda == 0) && (status.gda == 0) #if defined(CONFIG_ISM330DHCX_ENABLE_TEMP) && (status.tda == 0) #endif ) { break; } if ((status.xlda) && (ism330dhcx->handler_drdy_acc != NULL)) { ism330dhcx->handler_drdy_acc(dev, &drdy_trigger); } if ((status.gda) && (ism330dhcx->handler_drdy_gyr != NULL)) { ism330dhcx->handler_drdy_gyr(dev, &drdy_trigger); } #if defined(CONFIG_ISM330DHCX_ENABLE_TEMP) if ((status.tda) && (ism330dhcx->handler_drdy_temp != NULL)) { ism330dhcx->handler_drdy_temp(dev, &drdy_trigger); } #endif } gpio_pin_interrupt_configure(ism330dhcx->gpio, cfg->int_gpio_pin, GPIO_INT_EDGE_TO_ACTIVE); } static void ism330dhcx_gpio_callback(const struct device *dev, struct gpio_callback *cb, uint32_t pins) { struct ism330dhcx_data *ism330dhcx = CONTAINER_OF(cb, struct ism330dhcx_data, gpio_cb); const struct ism330dhcx_config *cfg = ism330dhcx->dev->config; ARG_UNUSED(pins); gpio_pin_interrupt_configure(ism330dhcx->gpio, cfg->int_gpio_pin, GPIO_INT_DISABLE); #if defined(CONFIG_ISM330DHCX_TRIGGER_OWN_THREAD) k_sem_give(&ism330dhcx->gpio_sem); #elif defined(CONFIG_ISM330DHCX_TRIGGER_GLOBAL_THREAD) k_work_submit(&ism330dhcx->work); #endif /* CONFIG_ISM330DHCX_TRIGGER_OWN_THREAD */ } #ifdef CONFIG_ISM330DHCX_TRIGGER_OWN_THREAD static void ism330dhcx_thread(struct ism330dhcx_data *ism330dhcx) { while (1) { k_sem_take(&ism330dhcx->gpio_sem, K_FOREVER); ism330dhcx_handle_interrupt(ism330dhcx->dev); } } #endif /* CONFIG_ISM330DHCX_TRIGGER_OWN_THREAD */ #ifdef CONFIG_ISM330DHCX_TRIGGER_GLOBAL_THREAD static void ism330dhcx_work_cb(struct k_work *work) { struct ism330dhcx_data *ism330dhcx = CONTAINER_OF(work, struct ism330dhcx_data, work); ism330dhcx_handle_interrupt(ism330dhcx->dev); } #endif /* CONFIG_ISM330DHCX_TRIGGER_GLOBAL_THREAD */ int ism330dhcx_init_interrupt(const struct device *dev) { struct ism330dhcx_data *ism330dhcx = dev->data; const struct ism330dhcx_config *cfg = dev->config; int ret; /* setup data ready gpio interrupt (INT1 or INT2) */ ism330dhcx->gpio = device_get_binding(cfg->int_gpio_port); if (ism330dhcx->gpio == NULL) { LOG_ERR("Cannot get pointer to %s device", cfg->int_gpio_port); return -EINVAL; } #if defined(CONFIG_ISM330DHCX_TRIGGER_OWN_THREAD) k_sem_init(&ism330dhcx->gpio_sem, 0, K_SEM_MAX_LIMIT); k_thread_create(&ism330dhcx->thread, ism330dhcx->thread_stack, CONFIG_ISM330DHCX_THREAD_STACK_SIZE, (k_thread_entry_t)ism330dhcx_thread, ism330dhcx, NULL, NULL, K_PRIO_COOP(CONFIG_ISM330DHCX_THREAD_PRIORITY), 0, K_NO_WAIT); #elif defined(CONFIG_ISM330DHCX_TRIGGER_GLOBAL_THREAD) ism330dhcx->work.handler = ism330dhcx_work_cb; #endif /* CONFIG_ISM330DHCX_TRIGGER_OWN_THREAD */ ret = gpio_pin_configure(ism330dhcx->gpio, cfg->int_gpio_pin, GPIO_INPUT | cfg->int_gpio_flags); if (ret < 0) { LOG_ERR("Could not configure gpio"); return ret; } gpio_init_callback(&ism330dhcx->gpio_cb, ism330dhcx_gpio_callback, BIT(cfg->int_gpio_pin)); if (gpio_add_callback(ism330dhcx->gpio, &ism330dhcx->gpio_cb) < 0) { LOG_ERR("Could not set gpio callback"); return -EIO; } /* enable interrupt on int1/int2 in pulse mode */ if (ism330dhcx_int_notification_set(ism330dhcx->ctx, ISM330DHCX_ALL_INT_PULSED) < 0) { LOG_ERR("Could not set pulse mode"); return -EIO; } return gpio_pin_interrupt_configure(ism330dhcx->gpio, cfg->int_gpio_pin, GPIO_INT_EDGE_TO_ACTIVE); } |