/* ST Microelectronics IIS3DHHC accelerometer sensor * * Copyright (c) 2019 STMicroelectronics * * SPDX-License-Identifier: Apache-2.0 * * Datasheet: * https://www.st.com/resource/en/datasheet/iis3dhhc.pdf */ #define DT_DRV_COMPAT st_iis3dhhc #include #include #include #include #include "iis3dhhc.h" LOG_MODULE_DECLARE(IIS3DHHC, CONFIG_SENSOR_LOG_LEVEL); /** * iis3dhhc_enable_int - enable selected int pin to generate interrupt */ static int iis3dhhc_enable_int(const struct device *dev, int enable) { struct iis3dhhc_data *iis3dhhc = dev->data; /* set interrupt */ #ifdef CONFIG_IIS3DHHC_DRDY_INT1 return iis3dhhc_drdy_on_int1_set(iis3dhhc->ctx, enable); #else return iis3dhhc_drdy_on_int2_set(iis3dhhc->ctx, enable); #endif } /** * iis3dhhc_trigger_set - link external trigger to event data ready */ int iis3dhhc_trigger_set(const struct device *dev, const struct sensor_trigger *trig, sensor_trigger_handler_t handler) { struct iis3dhhc_data *iis3dhhc = dev->data; const struct iis3dhhc_config *config = dev->config; int16_t raw[3]; if (!config->int_gpio.port) { return -ENOTSUP; } if (trig->chan == SENSOR_CHAN_ACCEL_XYZ) { iis3dhhc->handler_drdy = handler; iis3dhhc->trig_drdy = trig; if (handler) { /* dummy read: re-trigger interrupt */ iis3dhhc_acceleration_raw_get(iis3dhhc->ctx, raw); return iis3dhhc_enable_int(dev, PROPERTY_ENABLE); } else { return iis3dhhc_enable_int(dev, PROPERTY_DISABLE); } } return -ENOTSUP; } /** * iis3dhhc_handle_interrupt - handle the drdy event * read data and call handler if registered any */ static void iis3dhhc_handle_interrupt(const struct device *dev) { struct iis3dhhc_data *iis3dhhc = dev->data; const struct iis3dhhc_config *cfg = dev->config; if (iis3dhhc->handler_drdy != NULL) { iis3dhhc->handler_drdy(dev, iis3dhhc->trig_drdy); } gpio_pin_interrupt_configure_dt(&cfg->int_gpio, GPIO_INT_EDGE_TO_ACTIVE); } static void iis3dhhc_gpio_callback(const struct device *dev, struct gpio_callback *cb, uint32_t pins) { struct iis3dhhc_data *iis3dhhc = CONTAINER_OF(cb, struct iis3dhhc_data, gpio_cb); const struct iis3dhhc_config *cfg = iis3dhhc->dev->config; ARG_UNUSED(pins); gpio_pin_interrupt_configure_dt(&cfg->int_gpio, GPIO_INT_DISABLE); #if defined(CONFIG_IIS3DHHC_TRIGGER_OWN_THREAD) k_sem_give(&iis3dhhc->gpio_sem); #elif defined(CONFIG_IIS3DHHC_TRIGGER_GLOBAL_THREAD) k_work_submit(&iis3dhhc->work); #endif /* CONFIG_IIS3DHHC_TRIGGER_OWN_THREAD */ } #ifdef CONFIG_IIS3DHHC_TRIGGER_OWN_THREAD static void iis3dhhc_thread(void *p1, void *p2, void *p3) { ARG_UNUSED(p2); ARG_UNUSED(p3); struct iis3dhhc_data *iis3dhhc = p1; while (1) { k_sem_take(&iis3dhhc->gpio_sem, K_FOREVER); iis3dhhc_handle_interrupt(iis3dhhc->dev); } } #endif /* CONFIG_IIS3DHHC_TRIGGER_OWN_THREAD */ #ifdef CONFIG_IIS3DHHC_TRIGGER_GLOBAL_THREAD static void iis3dhhc_work_cb(struct k_work *work) { struct iis3dhhc_data *iis3dhhc = CONTAINER_OF(work, struct iis3dhhc_data, work); iis3dhhc_handle_interrupt(iis3dhhc->dev); } #endif /* CONFIG_IIS3DHHC_TRIGGER_GLOBAL_THREAD */ int iis3dhhc_init_interrupt(const struct device *dev) { struct iis3dhhc_data *iis3dhhc = dev->data; const struct iis3dhhc_config *cfg = dev->config; int ret; if (!gpio_is_ready_dt(&cfg->int_gpio)) { LOG_ERR("%s: device %s is not ready", dev->name, cfg->int_gpio.port->name); return -ENODEV; } iis3dhhc->dev = dev; #if defined(CONFIG_IIS3DHHC_TRIGGER_OWN_THREAD) k_sem_init(&iis3dhhc->gpio_sem, 0, K_SEM_MAX_LIMIT); k_thread_create(&iis3dhhc->thread, iis3dhhc->thread_stack, CONFIG_IIS3DHHC_THREAD_STACK_SIZE, iis3dhhc_thread, iis3dhhc, NULL, NULL, K_PRIO_COOP(CONFIG_IIS3DHHC_THREAD_PRIORITY), 0, K_NO_WAIT); #elif defined(CONFIG_IIS3DHHC_TRIGGER_GLOBAL_THREAD) iis3dhhc->work.handler = iis3dhhc_work_cb; #endif /* CONFIG_IIS3DHHC_TRIGGER_OWN_THREAD */ ret = gpio_pin_configure_dt(&cfg->int_gpio, GPIO_INPUT); if (ret < 0) { LOG_DBG("Could not configure gpio"); return ret; } gpio_init_callback(&iis3dhhc->gpio_cb, iis3dhhc_gpio_callback, BIT(cfg->int_gpio.pin)); if (gpio_add_callback(cfg->int_gpio.port, &iis3dhhc->gpio_cb) < 0) { LOG_DBG("Could not set gpio callback"); return -EIO; } /* enable interrupt on int1/int2 in pulse mode */ if (iis3dhhc_drdy_notification_mode_set(iis3dhhc->ctx, IIS3DHHC_PULSED)) { return -EIO; } return gpio_pin_interrupt_configure_dt(&cfg->int_gpio, GPIO_INT_EDGE_TO_ACTIVE); }