mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-17 14:42:58 +00:00
Add I2C and SPI bus communication routines in separate files, and register one or the other as read/write callbacks based on bus selection in DTS. This commit is fixing issue #22348 as well, as the SPI part is handling in the proper way the CS GPIO part. Signed-off-by: Armando Visconti <armando.visconti@st.com>
93 lines
2.3 KiB
C
93 lines
2.3 KiB
C
/* ST Microelectronics LIS2DH 3-axis accelerometer driver
|
|
*
|
|
* Copyright (c) 2020 STMicroelectronics
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Datasheet:
|
|
* https://www.st.com/resource/en/datasheet/lis2dh.pdf
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <drivers/i2c.h>
|
|
#include <logging/log.h>
|
|
|
|
#include "lis2dh.h"
|
|
|
|
#ifdef DT_ST_LIS2DH_BUS_I2C
|
|
|
|
LOG_MODULE_DECLARE(lis2dh, CONFIG_SENSOR_LOG_LEVEL);
|
|
|
|
static int lis2dh_i2c_read_data(struct device *dev, u8_t reg_addr,
|
|
u8_t *value, u8_t len)
|
|
{
|
|
struct lis2dh_data *data = dev->driver_data;
|
|
const struct lis2dh_config *cfg = dev->config->config_info;
|
|
|
|
return i2c_burst_read(data->bus, cfg->i2c_slv_addr,
|
|
reg_addr | LIS2DH_AUTOINCREMENT_ADDR,
|
|
value, len);
|
|
}
|
|
|
|
static int lis2dh_i2c_write_data(struct device *dev, u8_t reg_addr,
|
|
u8_t *value, u8_t len)
|
|
{
|
|
struct lis2dh_data *data = dev->driver_data;
|
|
const struct lis2dh_config *cfg = dev->config->config_info;
|
|
|
|
return i2c_burst_write(data->bus, cfg->i2c_slv_addr,
|
|
reg_addr | LIS2DH_AUTOINCREMENT_ADDR,
|
|
value, len);
|
|
}
|
|
|
|
static int lis2dh_i2c_read_reg(struct device *dev, u8_t reg_addr,
|
|
u8_t *value)
|
|
{
|
|
struct lis2dh_data *data = dev->driver_data;
|
|
const struct lis2dh_config *cfg = dev->config->config_info;
|
|
|
|
return i2c_reg_read_byte(data->bus,
|
|
cfg->i2c_slv_addr,
|
|
reg_addr, value);
|
|
}
|
|
|
|
static int lis2dh_i2c_write_reg(struct device *dev, u8_t reg_addr,
|
|
u8_t value)
|
|
{
|
|
struct lis2dh_data *data = dev->driver_data;
|
|
const struct lis2dh_config *cfg = dev->config->config_info;
|
|
|
|
return i2c_reg_write_byte(data->bus,
|
|
cfg->i2c_slv_addr,
|
|
reg_addr, value);
|
|
}
|
|
|
|
static int lis2dh_i2c_update_reg(struct device *dev, u8_t reg_addr,
|
|
u8_t mask, u8_t value)
|
|
{
|
|
struct lis2dh_data *data = dev->driver_data;
|
|
const struct lis2dh_config *cfg = dev->config->config_info;
|
|
|
|
return i2c_reg_update_byte(data->bus,
|
|
cfg->i2c_slv_addr,
|
|
reg_addr, mask, value);
|
|
}
|
|
|
|
static const struct lis2dh_transfer_function lis2dh_i2c_transfer_fn = {
|
|
.read_data = lis2dh_i2c_read_data,
|
|
.write_data = lis2dh_i2c_write_data,
|
|
.read_reg = lis2dh_i2c_read_reg,
|
|
.write_reg = lis2dh_i2c_write_reg,
|
|
.update_reg = lis2dh_i2c_update_reg,
|
|
};
|
|
|
|
int lis2dh_i2c_init(struct device *dev)
|
|
{
|
|
struct lis2dh_data *data = dev->driver_data;
|
|
|
|
data->hw_tf = &lis2dh_i2c_transfer_fn;
|
|
|
|
return 0;
|
|
}
|
|
#endif /* DT_ST_LIS2DH_BUS_I2C */
|