blob: a3be53792072e454bcdcb38bee764c213d6d0ef6 [file] [log] [blame]
Denis CIOCCA217494e2013-06-03 15:58:00 +01001#
2# Pressure drivers
3#
Lars-Peter Clausen3edc84e2013-07-15 08:45:00 +01004# When adding new entries keep the list in alphabetical order
5
Peter Meerwald93232cd2013-06-23 22:28:00 +01006menu "Pressure sensors"
Denis CIOCCA217494e2013-06-03 15:58:00 +01007
Vlad Dogarud5c94562014-10-21 11:09:58 +03008config BMP280
9 tristate "Bosch Sensortec BMP280 pressure sensor driver"
10 depends on I2C
11 select REGMAP_I2C
12 help
13 Say yes here to build support for Bosch Sensortec BMP280
14 pressure and temperature sensor.
15
16 To compile this driver as a module, choose M here: the module
17 will be called bmp280.
18
Archana Patnif64a7992014-02-20 06:30:00 +000019config HID_SENSOR_PRESS
20 depends on HID_SENSOR_HUB
21 select IIO_BUFFER
22 select IIO_TRIGGERED_BUFFER
23 select HID_SENSOR_IIO_COMMON
24 select HID_SENSOR_IIO_TRIGGER
25 tristate "HID PRESS"
26 help
27 Say yes here to build support for the HID SENSOR
28 Pressure driver
29
30 To compile this driver as a module, choose M here: the module
31 will be called hid-sensor-press.
32
Peter Meerwald3017d902014-02-05 16:58:00 +000033config MPL115
34 tristate "Freescale MPL115A2 pressure sensor driver"
35 depends on I2C
36 help
37 Say yes here to build support for the Freescale MPL115A2
38 pressure sensor connected via I2C.
39
40 To compile this driver as a module, choose M here: the module
41 will be called mpl115.
42
Peter Meerwaldcc26ad452013-11-12 19:43:00 +000043config MPL3115
44 tristate "Freescale MPL3115A2 pressure sensor driver"
45 depends on I2C
46 select IIO_BUFFER
47 select IIO_TRIGGERED_BUFFER
48 help
49 Say yes here to build support for the Freescale MPL3115A2
50 pressure sensor / altimeter.
51
52 To compile this driver as a module, choose M here: the module
53 will be called mpl3115.
54
Denis CIOCCA217494e2013-06-03 15:58:00 +010055config IIO_ST_PRESS
Peter Meerwald93232cd2013-06-23 22:28:00 +010056 tristate "STMicroelectronics pressure sensor Driver"
Denis CIOCCA217494e2013-06-03 15:58:00 +010057 depends on (I2C || SPI_MASTER) && SYSFS
58 select IIO_ST_SENSORS_CORE
59 select IIO_ST_PRESS_I2C if (I2C)
60 select IIO_ST_PRESS_SPI if (SPI_MASTER)
61 select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
62 help
Peter Meerwald93232cd2013-06-23 22:28:00 +010063 Say yes here to build support for STMicroelectronics pressure
Denis CIOCCA93187842014-02-20 17:49:00 +000064 sensors: LPS001WP, LPS25H, LPS331AP.
Denis CIOCCA217494e2013-06-03 15:58:00 +010065
Peter Meerwald341673f2013-06-23 22:28:00 +010066 This driver can also be built as a module. If so, these modules
67 will be created:
Denis CIOCCA217494e2013-06-03 15:58:00 +010068 - st_pressure (core functions for the driver [it is mandatory]);
69 - st_pressure_i2c (necessary for the I2C devices [optional*]);
70 - st_pressure_spi (necessary for the SPI devices [optional*]);
71
72 (*) one of these is necessary to do something.
73
74config IIO_ST_PRESS_I2C
75 tristate
76 depends on IIO_ST_PRESS
77 depends on IIO_ST_SENSORS_I2C
78
79config IIO_ST_PRESS_SPI
80 tristate
81 depends on IIO_ST_PRESS
82 depends on IIO_ST_SENSORS_SPI
83
Peter Meerwalda2d8be62014-02-06 20:44:00 +000084config T5403
85 tristate "EPCOS T5403 digital barometric pressure sensor driver"
86 depends on I2C
87 help
88 Say yes here to build support for the EPCOS T5403 pressure sensor
89 connected via I2C.
90
91 To compile this driver as a module, choose M here: the module
92 will be called t5403.
93
Denis CIOCCA217494e2013-06-03 15:58:00 +010094endmenu