mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 07:04:00 +08:00
c91c1c844e
i2c controller embedded in lsm6dx series can connect up to four slave devices using accelerometer sensor as trigger for i2c read/write operations. Introduce sensor hub support for lsm6dso sensor. Add register map for lis2mdl magnetometer sensor. In order to perform single read/write operations st_lsm6dsx driver relies on SLV0 channel (hw FIFO is not supported yet) Signed-off-by: Lorenzo Bianconi <lorenzo.bianconi@redhat.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
31 lines
806 B
C
31 lines
806 B
C
/*
|
|
* STMicroelectronics sensors platform-data driver
|
|
*
|
|
* Copyright 2013 STMicroelectronics Inc.
|
|
*
|
|
* Denis Ciocca <denis.ciocca@st.com>
|
|
*
|
|
* Licensed under the GPL-2.
|
|
*/
|
|
|
|
#ifndef ST_SENSORS_PDATA_H
|
|
#define ST_SENSORS_PDATA_H
|
|
|
|
/**
|
|
* struct st_sensors_platform_data - Platform data for the ST sensors
|
|
* @drdy_int_pin: Redirect DRDY on pin 1 (1) or pin 2 (2).
|
|
* Available only for accelerometer and pressure sensors.
|
|
* Accelerometer DRDY on LSM330 available only on pin 1 (see datasheet).
|
|
* @open_drain: set the interrupt line to be open drain if possible.
|
|
* @spi_3wire: enable spi-3wire mode.
|
|
* @pullups: enable/disable i2c controller pullup resistors.
|
|
*/
|
|
struct st_sensors_platform_data {
|
|
u8 drdy_int_pin;
|
|
bool open_drain;
|
|
bool spi_3wire;
|
|
bool pullups;
|
|
};
|
|
|
|
#endif /* ST_SENSORS_PDATA_H */
|