mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-28 15:13:55 +08:00
0e6f6871a1
Some types of ST Sensors can be connected to the same IRQ line as other peripherals using open drain. Add a device tree binding and a sensor data property to flip the right bit in the interrupt control register to enable open drain mode on the INT line. If the line is set to be open drain, also tag on IRQF_SHARED to the IRQ flags when requesting the interrupt, as the whole point of using open drain interrupt lines is to share them with more than one peripheral (wire-or). Cc: devicetree@vger.kernel.org Cc: Giuseppe Barba <giuseppe.barba@st.com> Cc: Denis Ciocca <denis.ciocca@st.com> Acked-by: Rob Herring <rob@kernel.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
27 lines
675 B
C
27 lines
675 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.
|
|
*/
|
|
struct st_sensors_platform_data {
|
|
u8 drdy_int_pin;
|
|
bool open_drain;
|
|
};
|
|
|
|
#endif /* ST_SENSORS_PDATA_H */
|