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 | /* ST Microelectronics IIS2DLPC 3-axis accelerometer driver * * Copyright (c) 2020 STMicroelectronics * * SPDX-License-Identifier: Apache-2.0 * * Datasheet: * https://www.st.com/resource/en/datasheet/iis2dlpc.pdf */ #define DT_DRV_COMPAT st_iis2dlpc #include <zephyr/kernel.h> #include <zephyr/drivers/sensor.h> #include <zephyr/drivers/gpio.h> #include <zephyr/logging/log.h> #include "iis2dlpc.h" LOG_MODULE_DECLARE(IIS2DLPC, CONFIG_SENSOR_LOG_LEVEL); /** * iis2dlpc_enable_int - enable selected int pin to generate interrupt */ static int iis2dlpc_enable_int(const struct device *dev, enum sensor_trigger_type type, int enable) { const struct iis2dlpc_config *cfg = dev->config; stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx; iis2dlpc_reg_t int_route; switch (type) { case SENSOR_TRIG_DATA_READY: if (cfg->drdy_int == 1) { /* set interrupt for pin INT1 */ iis2dlpc_pin_int1_route_get(ctx, &int_route.ctrl4_int1_pad_ctrl); int_route.ctrl4_int1_pad_ctrl.int1_drdy = enable; return iis2dlpc_pin_int1_route_set(ctx, &int_route.ctrl4_int1_pad_ctrl); } else { /* set interrupt for pin INT2 */ iis2dlpc_pin_int2_route_get(ctx, &int_route.ctrl5_int2_pad_ctrl); int_route.ctrl5_int2_pad_ctrl.int2_drdy = enable; return iis2dlpc_pin_int2_route_set(ctx, &int_route.ctrl5_int2_pad_ctrl); } break; #ifdef CONFIG_IIS2DLPC_TAP case SENSOR_TRIG_TAP: /* set interrupt for pin INT1 */ iis2dlpc_pin_int1_route_get(ctx, &int_route.ctrl4_int1_pad_ctrl); int_route.ctrl4_int1_pad_ctrl.int1_single_tap = enable; return iis2dlpc_pin_int1_route_set(ctx, &int_route.ctrl4_int1_pad_ctrl); case SENSOR_TRIG_DOUBLE_TAP: /* set interrupt for pin INT1 */ iis2dlpc_pin_int1_route_get(ctx, &int_route.ctrl4_int1_pad_ctrl); int_route.ctrl4_int1_pad_ctrl.int1_tap = enable; return iis2dlpc_pin_int1_route_set(ctx, &int_route.ctrl4_int1_pad_ctrl); #endif /* CONFIG_IIS2DLPC_TAP */ default: LOG_ERR("Unsupported trigger interrupt route %d", type); return -ENOTSUP; } } /** * iis2dlpc_trigger_set - link external trigger to event data ready */ int iis2dlpc_trigger_set(const struct device *dev, const struct sensor_trigger *trig, sensor_trigger_handler_t handler) { const struct iis2dlpc_config *cfg = dev->config; stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx; struct iis2dlpc_data *iis2dlpc = dev->data; int16_t raw[3]; int state = (handler != NULL) ? PROPERTY_ENABLE : PROPERTY_DISABLE; switch (trig->type) { case SENSOR_TRIG_DATA_READY: iis2dlpc->drdy_handler = handler; if (state) { /* dummy read: re-trigger interrupt */ iis2dlpc_acceleration_raw_get(ctx, raw); } return iis2dlpc_enable_int(dev, SENSOR_TRIG_DATA_READY, state); #ifdef CONFIG_IIS2DLPC_TAP case SENSOR_TRIG_TAP: iis2dlpc->tap_handler = handler; return iis2dlpc_enable_int(dev, SENSOR_TRIG_TAP, state); case SENSOR_TRIG_DOUBLE_TAP: iis2dlpc->double_tap_handler = handler; return iis2dlpc_enable_int(dev, SENSOR_TRIG_DOUBLE_TAP, state); #endif /* CONFIG_IIS2DLPC_TAP */ default: LOG_ERR("Unsupported sensor trigger"); return -ENOTSUP; } } static int iis2dlpc_handle_drdy_int(const struct device *dev) { struct iis2dlpc_data *data = dev->data; struct sensor_trigger drdy_trig = { .type = SENSOR_TRIG_DATA_READY, .chan = SENSOR_CHAN_ALL, }; if (data->drdy_handler) { data->drdy_handler(dev, &drdy_trig); } return 0; } #ifdef CONFIG_IIS2DLPC_TAP static int iis2dlpc_handle_single_tap_int(const struct device *dev) { struct iis2dlpc_data *data = dev->data; sensor_trigger_handler_t handler = data->tap_handler; struct sensor_trigger tap_trig = { .type = SENSOR_TRIG_TAP, .chan = SENSOR_CHAN_ALL, }; if (handler) { handler(dev, &tap_trig); } return 0; } static int iis2dlpc_handle_double_tap_int(const struct device *dev) { struct iis2dlpc_data *data = dev->data; sensor_trigger_handler_t handler = data->double_tap_handler; struct sensor_trigger tap_trig = { .type = SENSOR_TRIG_DOUBLE_TAP, .chan = SENSOR_CHAN_ALL, }; if (handler) { handler(dev, &tap_trig); } return 0; } #endif /* CONFIG_IIS2DLPC_TAP */ /** * iis2dlpc_handle_interrupt - handle the drdy event * read data and call handler if registered any */ static void iis2dlpc_handle_interrupt(const struct device *dev) { const struct iis2dlpc_config *cfg = dev->config; stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx; iis2dlpc_all_sources_t sources; iis2dlpc_all_sources_get(ctx, &sources); if (sources.status_dup.drdy) { iis2dlpc_handle_drdy_int(dev); } #ifdef CONFIG_IIS2DLPC_TAP if (sources.status_dup.single_tap) { iis2dlpc_handle_single_tap_int(dev); } if (sources.status_dup.double_tap) { iis2dlpc_handle_double_tap_int(dev); } #endif /* CONFIG_IIS2DLPC_TAP */ gpio_pin_interrupt_configure_dt(&cfg->gpio_drdy, GPIO_INT_EDGE_TO_ACTIVE); } static void iis2dlpc_gpio_callback(const struct device *dev, struct gpio_callback *cb, uint32_t pins) { struct iis2dlpc_data *iis2dlpc = CONTAINER_OF(cb, struct iis2dlpc_data, gpio_cb); const struct iis2dlpc_config *cfg = iis2dlpc->dev->config; ARG_UNUSED(pins); gpio_pin_interrupt_configure_dt(&cfg->gpio_drdy, GPIO_INT_DISABLE); #if defined(CONFIG_IIS2DLPC_TRIGGER_OWN_THREAD) k_sem_give(&iis2dlpc->gpio_sem); #elif defined(CONFIG_IIS2DLPC_TRIGGER_GLOBAL_THREAD) k_work_submit(&iis2dlpc->work); #endif /* CONFIG_IIS2DLPC_TRIGGER_OWN_THREAD */ } #ifdef CONFIG_IIS2DLPC_TRIGGER_OWN_THREAD static void iis2dlpc_thread(struct iis2dlpc_data *iis2dlpc) { while (1) { k_sem_take(&iis2dlpc->gpio_sem, K_FOREVER); iis2dlpc_handle_interrupt(iis2dlpc->dev); } } #endif /* CONFIG_IIS2DLPC_TRIGGER_OWN_THREAD */ #ifdef CONFIG_IIS2DLPC_TRIGGER_GLOBAL_THREAD static void iis2dlpc_work_cb(struct k_work *work) { struct iis2dlpc_data *iis2dlpc = CONTAINER_OF(work, struct iis2dlpc_data, work); iis2dlpc_handle_interrupt(iis2dlpc->dev); } #endif /* CONFIG_IIS2DLPC_TRIGGER_GLOBAL_THREAD */ int iis2dlpc_init_interrupt(const struct device *dev) { struct iis2dlpc_data *iis2dlpc = dev->data; const struct iis2dlpc_config *cfg = dev->config; stmdev_ctx_t *ctx = (stmdev_ctx_t *)&cfg->ctx; int ret; /* setup data ready gpio interrupt (INT1 or INT2) */ if (!device_is_ready(cfg->gpio_drdy.port)) { LOG_ERR("Cannot get pointer to drdy_gpio device"); return -EINVAL; } #if defined(CONFIG_IIS2DLPC_TRIGGER_OWN_THREAD) k_sem_init(&iis2dlpc->gpio_sem, 0, K_SEM_MAX_LIMIT); k_thread_create(&iis2dlpc->thread, iis2dlpc->thread_stack, CONFIG_IIS2DLPC_THREAD_STACK_SIZE, (k_thread_entry_t)iis2dlpc_thread, iis2dlpc, NULL, NULL, K_PRIO_COOP(CONFIG_IIS2DLPC_THREAD_PRIORITY), 0, K_NO_WAIT); #elif defined(CONFIG_IIS2DLPC_TRIGGER_GLOBAL_THREAD) iis2dlpc->work.handler = iis2dlpc_work_cb; #endif /* CONFIG_IIS2DLPC_TRIGGER_OWN_THREAD */ ret = gpio_pin_configure_dt(&cfg->gpio_drdy, GPIO_INPUT); if (ret < 0) { LOG_ERR("Could not configure gpio"); return ret; } gpio_init_callback(&iis2dlpc->gpio_cb, iis2dlpc_gpio_callback, BIT(cfg->gpio_drdy.pin)); if (gpio_add_callback(cfg->gpio_drdy.port, &iis2dlpc->gpio_cb) < 0) { LOG_ERR("Could not set gpio callback"); return -EIO; } /* enable interrupt on int1/int2 in pulse mode */ if (iis2dlpc_int_notification_set(ctx, IIS2DLPC_INT_PULSED)) { LOG_ERR("Could not set pulse mode"); return -EIO; } return gpio_pin_interrupt_configure_dt(&cfg->gpio_drdy, GPIO_INT_EDGE_TO_ACTIVE); } |