2019-01-15 21:59:12 +08:00
|
|
|
/* ST Microelectronics LIS2DS12 3-axis accelerometer driver
|
|
|
|
*
|
|
|
|
* Copyright (c) 2019 STMicroelectronics
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Datasheet:
|
|
|
|
* https://www.st.com/resource/en/datasheet/lis2ds12.pdf
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZEPHYR_DRIVERS_SENSOR_LIS2DS12_LIS2DS12_H_
|
|
|
|
#define ZEPHYR_DRIVERS_SENSOR_LIS2DS12_LIS2DS12_H_
|
|
|
|
|
|
|
|
#include <zephyr/types.h>
|
2019-06-26 03:54:00 +08:00
|
|
|
#include <drivers/sensor.h>
|
2019-06-26 03:53:52 +08:00
|
|
|
#include <drivers/gpio.h>
|
2019-01-15 21:59:12 +08:00
|
|
|
|
|
|
|
#define LIS2DS12_REG_WHO_AM_I 0x0F
|
|
|
|
#define LIS2DS12_VAL_WHO_AM_I 0x43
|
|
|
|
|
|
|
|
#define LIS2DS12_REG_CTRL1 0x20
|
|
|
|
#define LIS2DS12_MASK_CTRL1_ODR (BIT(7) | BIT(6) | \
|
|
|
|
BIT(5) | BIT(4))
|
|
|
|
#define LIS2DS12_SHIFT_CTRL1_ODR 4
|
|
|
|
#define LIS2DS12_MASK_CTRL1_FS (BIT(3) | BIT(2))
|
|
|
|
#define LIS2DS12_SHIFT_CTRL1_FS 2
|
|
|
|
#define LIS2DS12_MASK_CTRL1_HF_ODR BIT(1)
|
|
|
|
#define LIS2DS12_MASK_CTRL1_HF_BDU BIT(0)
|
|
|
|
|
|
|
|
#define LIS2DS12_REG_CTRL2 0x21
|
|
|
|
#define LIS2DS12_SOFT_RESET 0x40
|
|
|
|
|
|
|
|
#define LIS2DS12_REG_CTRL3 0x22
|
|
|
|
#define LIS2DS12_SHIFT_LIR 0x02
|
|
|
|
#define LIS2DS12_MASK_LIR 0x04
|
|
|
|
|
|
|
|
#define LIS2DS12_REG_CTRL4 0x23
|
|
|
|
#define LIS2DS12_SHIFT_INT1_DRDY 0x00
|
|
|
|
#define LIS2DS12_MASK_INT1_DRDY 0x01
|
|
|
|
|
|
|
|
#define LIS2DS12_REG_OUT_T 0x26
|
|
|
|
|
|
|
|
#define LIS2DS12_REG_STATUS 0x27
|
|
|
|
#define LIS2DS12_INT_DRDY 0x01
|
|
|
|
|
|
|
|
#define LIS2DS12_REG_OUTX_L 0x28
|
|
|
|
#define LIS2DS12_REG_OUTX_H 0x29
|
|
|
|
#define LIS2DS12_REG_OUTY_L 0x2A
|
|
|
|
#define LIS2DS12_REG_OUTY_H 0x2B
|
|
|
|
#define LIS2DS12_REG_OUTZ_L 0x2C
|
|
|
|
#define LIS2DS12_REG_OUTZ_H 0x2D
|
|
|
|
|
|
|
|
|
|
|
|
#if (CONFIG_LIS2DS12_ODR == 0)
|
|
|
|
#define LIS2DS12_ODR_RUNTIME 1
|
|
|
|
#define LIS2DS12_DEFAULT_ODR 0
|
|
|
|
#else
|
|
|
|
#define LIS2DS12_DEFAULT_ODR (CONFIG_LIS2DS12_ODR << 4)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Accel sensor sensitivity unit is 0.061 mg/LSB */
|
|
|
|
#define GAIN_XL (61LL / 1000.0)
|
|
|
|
|
|
|
|
#if CONFIG_LIS2DS12_FS == 0
|
|
|
|
#define LIS2DS12_FS_RUNTIME 1
|
|
|
|
#define LIS2DS12_DEFAULT_FS (0 << 2)
|
|
|
|
#define LIS2DS12_DEFAULT_GAIN GAIN_XL
|
|
|
|
#elif CONFIG_LIS2DS12_FS == 2
|
|
|
|
#define LIS2DS12_DEFAULT_FS (0 << 2)
|
|
|
|
#define LIS2DS12_DEFAULT_GAIN GAIN_XL
|
|
|
|
#elif CONFIG_LIS2DS12_FS == 4
|
|
|
|
#define LIS2DS12_DEFAULT_FS (2 << 2)
|
|
|
|
#define LIS2DS12_DEFAULT_GAIN (2.0 * GAIN_XL)
|
|
|
|
#elif CONFIG_LIS2DS12_FS == 8
|
|
|
|
#define LIS2DS12_DEFAULT_FS (3 << 2)
|
|
|
|
#define LIS2DS12_DEFAULT_GAIN (4.0 * GAIN_XL)
|
|
|
|
#elif CONFIG_LIS2DS12_FS == 16
|
|
|
|
#define LIS2DS12_DEFAULT_FS (1 << 2)
|
|
|
|
#define LIS2DS12_DEFAULT_GAIN (8.0 * GAIN_XL)
|
|
|
|
#else
|
|
|
|
#error "Bad LIS2DS12 FS value (should be 0, 2, 4, 8, 16)"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct lis2ds12_config {
|
|
|
|
char *comm_master_dev_name;
|
|
|
|
int (*bus_init)(struct device *dev);
|
2020-01-20 19:09:57 +08:00
|
|
|
#ifdef CONFIG_LIS2DS12_TRIGGER
|
|
|
|
const char *irq_port;
|
|
|
|
gpio_pin_t irq_pin;
|
2020-02-04 07:20:19 +08:00
|
|
|
gpio_dt_flags_t irq_flags;
|
2020-01-20 19:09:57 +08:00
|
|
|
#endif
|
2019-01-15 21:59:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct lis2ds12_data;
|
|
|
|
|
|
|
|
struct lis2ds12_transfer_function {
|
2020-05-28 00:26:57 +08:00
|
|
|
int (*read_data)(struct lis2ds12_data *data, uint8_t reg_addr,
|
|
|
|
uint8_t *value, uint8_t len);
|
|
|
|
int (*write_data)(struct lis2ds12_data *data, uint8_t reg_addr,
|
|
|
|
uint8_t *value, uint8_t len);
|
|
|
|
int (*read_reg)(struct lis2ds12_data *data, uint8_t reg_addr,
|
|
|
|
uint8_t *value);
|
|
|
|
int (*write_reg)(struct lis2ds12_data *data, uint8_t reg_addr,
|
|
|
|
uint8_t value);
|
|
|
|
int (*update_reg)(struct lis2ds12_data *data, uint8_t reg_addr,
|
|
|
|
uint8_t mask, uint8_t value);
|
2019-01-15 21:59:12 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct lis2ds12_data {
|
|
|
|
struct device *comm_master;
|
|
|
|
int sample_x;
|
|
|
|
int sample_y;
|
|
|
|
int sample_z;
|
|
|
|
float gain;
|
|
|
|
const struct lis2ds12_transfer_function *hw_tf;
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIS2DS12_TRIGGER
|
|
|
|
struct device *gpio;
|
|
|
|
struct gpio_callback gpio_cb;
|
|
|
|
|
|
|
|
struct sensor_trigger data_ready_trigger;
|
|
|
|
sensor_trigger_handler_t data_ready_handler;
|
|
|
|
|
|
|
|
#if defined(CONFIG_LIS2DS12_TRIGGER_OWN_THREAD)
|
|
|
|
K_THREAD_STACK_MEMBER(thread_stack, CONFIG_LIS2DS12_THREAD_STACK_SIZE);
|
|
|
|
struct k_thread thread;
|
|
|
|
struct k_sem trig_sem;
|
|
|
|
#elif defined(CONFIG_LIS2DS12_TRIGGER_GLOBAL_THREAD)
|
|
|
|
struct k_work work;
|
|
|
|
struct device *dev;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CONFIG_LIS2DS12_TRIGGER */
|
|
|
|
};
|
|
|
|
|
|
|
|
int lis2ds12_spi_init(struct device *dev);
|
|
|
|
int lis2ds12_i2c_init(struct device *dev);
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIS2DS12_TRIGGER
|
|
|
|
int lis2ds12_trigger_set(struct device *dev,
|
|
|
|
const struct sensor_trigger *trig,
|
|
|
|
sensor_trigger_handler_t handler);
|
|
|
|
|
|
|
|
int lis2ds12_trigger_init(struct device *dev);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ZEPHYR_DRIVERS_SENSOR_LIS2DS12_LIS2DS12_H_ */
|