blob: d130cdc78f4344a885b1fac599a1330beb4ee3eb [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
Linus Walleij17118842016-06-30 03:48:50 +02009 tristate "Bosch Sensortec BMP180/BMP280 pressure sensor I2C driver"
Linus Walleijb26b4e92016-06-30 03:48:51 +020010 depends on (I2C || SPI_MASTER)
Akinobu Mita6dba72e2016-04-24 22:52:10 +090011 depends on !(BMP085_I2C=y || BMP085_I2C=m)
Linus Walleijb26b4e92016-06-30 03:48:51 +020012 depends on !(BMP085_SPI=y || BMP085_SPI=m)
Linus Walleij17118842016-06-30 03:48:50 +020013 select REGMAP
14 select BMP280_I2C if (I2C)
Linus Walleijb26b4e92016-06-30 03:48:51 +020015 select BMP280_SPI if (SPI_MASTER)
Vlad Dogarud5c94562014-10-21 11:09:58 +030016 help
Akinobu Mita6dba72e2016-04-24 22:52:10 +090017 Say yes here to build support for Bosch Sensortec BMP180 and BMP280
Matt Ranostay14beaa82016-05-04 22:57:30 -070018 pressure and temperature sensors. Also supports the BE280 with
Linus Walleij17118842016-06-30 03:48:50 +020019 an additional humidity sensor channel.
Vlad Dogarud5c94562014-10-21 11:09:58 +030020
Linus Walleijb26b4e92016-06-30 03:48:51 +020021 To compile this driver as a module, choose M here: the core module
22 will be called bmp280 and you will also get bmp280-i2c for I2C
23 and/or bmp280-spi for SPI support.
Linus Walleij17118842016-06-30 03:48:50 +020024
25config BMP280_I2C
26 tristate
27 depends on BMP280
28 depends on I2C
29 select REGMAP_I2C
Vlad Dogarud5c94562014-10-21 11:09:58 +030030
Linus Walleijb26b4e92016-06-30 03:48:51 +020031config BMP280_SPI
32 tristate
33 depends on BMP280
34 depends on SPI_MASTER
35 select REGMAP
36
Archana Patnif64a7992014-02-20 06:30:00 +000037config HID_SENSOR_PRESS
38 depends on HID_SENSOR_HUB
39 select IIO_BUFFER
40 select IIO_TRIGGERED_BUFFER
41 select HID_SENSOR_IIO_COMMON
42 select HID_SENSOR_IIO_TRIGGER
43 tristate "HID PRESS"
44 help
45 Say yes here to build support for the HID SENSOR
46 Pressure driver
47
Jonathan Cameron21cb4542016-01-24 17:06:50 +000048 To compile this driver as a module, choose M here: the module
49 will be called hid-sensor-press.
Archana Patnif64a7992014-02-20 06:30:00 +000050
Marek Vasutd8469e92016-04-18 16:05:24 +020051config HP03
52 tristate "Hope RF HP03 temperature and pressure sensor driver"
53 depends on I2C
54 select REGMAP_I2C
55 help
56 Say yes here to build support for Hope RF HP03 pressure and
57 temperature sensor.
58
59 To compile this driver as a module, choose M here: the module
60 will be called hp03.
61
Peter Meerwald3017d902014-02-05 16:58:00 +000062config MPL115
Akinobu Mitac984b9c2016-01-16 01:00:03 +090063 tristate
64
65config MPL115_I2C
Peter Meerwald3017d902014-02-05 16:58:00 +000066 tristate "Freescale MPL115A2 pressure sensor driver"
67 depends on I2C
Akinobu Mitac984b9c2016-01-16 01:00:03 +090068 select MPL115
Peter Meerwald3017d902014-02-05 16:58:00 +000069 help
70 Say yes here to build support for the Freescale MPL115A2
71 pressure sensor connected via I2C.
72
Jonathan Cameron21cb4542016-01-24 17:06:50 +000073 To compile this driver as a module, choose M here: the module
74 will be called mpl115_i2c.
Akinobu Mitac984b9c2016-01-16 01:00:03 +090075
76config MPL115_SPI
77 tristate "Freescale MPL115A1 pressure sensor driver"
78 depends on SPI_MASTER
79 select MPL115
80 help
81 Say yes here to build support for the Freescale MPL115A1
82 pressure sensor connected via SPI.
83
Jonathan Cameron21cb4542016-01-24 17:06:50 +000084 To compile this driver as a module, choose M here: the module
85 will be called mpl115_spi.
Peter Meerwald3017d902014-02-05 16:58:00 +000086
Peter Meerwaldcc26ad452013-11-12 19:43:00 +000087config MPL3115
88 tristate "Freescale MPL3115A2 pressure sensor driver"
89 depends on I2C
90 select IIO_BUFFER
91 select IIO_TRIGGERED_BUFFER
92 help
93 Say yes here to build support for the Freescale MPL3115A2
94 pressure sensor / altimeter.
95
Jonathan Cameron21cb4542016-01-24 17:06:50 +000096 To compile this driver as a module, choose M here: the module
97 will be called mpl3115.
Peter Meerwaldcc26ad452013-11-12 19:43:00 +000098
Tomasz Duszynskic0644160a2015-03-14 21:29:31 +010099config MS5611
Peter Meerwald825c50d2015-06-16 21:27:03 +0200100 tristate "Measurement Specialties MS5611 pressure sensor driver"
Arnd Bergmann3d5032a2016-02-16 15:55:07 +0100101 select IIO_BUFFER
Daniel Baluta713bbb42016-02-03 18:50:38 +0200102 select IIO_TRIGGERED_BUFFER
Tomasz Duszynskic0644160a2015-03-14 21:29:31 +0100103 help
Peter Meerwald825c50d2015-06-16 21:27:03 +0200104 Say Y here to build support for the Measurement Specialties
Tomasz Duszynski9690d81a2015-06-23 20:45:48 +0200105 MS5611, MS5607 pressure and temperature sensors.
Tomasz Duszynskic0644160a2015-03-14 21:29:31 +0100106
107 To compile this driver as a module, choose M here: the module will
108 be called ms5611_core.
109
110config MS5611_I2C
111 tristate "support I2C bus connection"
112 depends on I2C && MS5611
113 help
114 Say Y here to build I2C bus support for MS5611.
115
116 To compile this driver as a module, choose M here: the module will
117 be called ms5611_i2c.
118
119config MS5611_SPI
120 tristate "support SPI bus connection"
121 depends on SPI_MASTER && MS5611
122 help
123 Say Y here to build SPI bus support for MS5611.
124
125 To compile this driver as a module, choose M here: the module will
126 be called ms5611_spi.
127
Ludovic Tancerel64a70c62015-10-01 16:13:40 +0200128config MS5637
129 tristate "Measurement Specialties MS5637 pressure & temperature sensor"
130 depends on I2C
Jonathan Cameron21cb4542016-01-24 17:06:50 +0000131 select IIO_MS_SENSORS_I2C
Ludovic Tancerel64a70c62015-10-01 16:13:40 +0200132 help
133 If you say yes here you get support for the Measurement Specialties
134 MS5637 pressure and temperature sensor.
Ludovic Tancerel1b75ce62015-10-01 16:13:41 +0200135 This driver is also used for MS8607 temperature, pressure & humidity
136 sensor
Ludovic Tancerel64a70c62015-10-01 16:13:40 +0200137
138 This driver can also be built as a module. If so, the module will
139 be called ms5637.
140
Denis CIOCCA217494e2013-06-03 15:58:00 +0100141config IIO_ST_PRESS
Peter Meerwald93232cd2013-06-23 22:28:00 +0100142 tristate "STMicroelectronics pressure sensor Driver"
Denis CIOCCA217494e2013-06-03 15:58:00 +0100143 depends on (I2C || SPI_MASTER) && SYSFS
144 select IIO_ST_SENSORS_CORE
145 select IIO_ST_PRESS_I2C if (I2C)
146 select IIO_ST_PRESS_SPI if (SPI_MASTER)
147 select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
148 help
Peter Meerwald93232cd2013-06-23 22:28:00 +0100149 Say yes here to build support for STMicroelectronics pressure
Gregor Boiriee039e2f2016-04-19 11:18:32 +0200150 sensors: LPS001WP, LPS25H, LPS331AP, LPS22HB.
Denis CIOCCA217494e2013-06-03 15:58:00 +0100151
Peter Meerwald341673f2013-06-23 22:28:00 +0100152 This driver can also be built as a module. If so, these modules
153 will be created:
Denis CIOCCA217494e2013-06-03 15:58:00 +0100154 - st_pressure (core functions for the driver [it is mandatory]);
155 - st_pressure_i2c (necessary for the I2C devices [optional*]);
156 - st_pressure_spi (necessary for the SPI devices [optional*]);
157
158 (*) one of these is necessary to do something.
159
160config IIO_ST_PRESS_I2C
161 tristate
162 depends on IIO_ST_PRESS
163 depends on IIO_ST_SENSORS_I2C
164
165config IIO_ST_PRESS_SPI
166 tristate
167 depends on IIO_ST_PRESS
168 depends on IIO_ST_SENSORS_SPI
169
Peter Meerwalda2d8be62014-02-06 20:44:00 +0000170config T5403
171 tristate "EPCOS T5403 digital barometric pressure sensor driver"
172 depends on I2C
173 help
174 Say yes here to build support for the EPCOS T5403 pressure sensor
175 connected via I2C.
176
Jonathan Cameron21cb4542016-01-24 17:06:50 +0000177 To compile this driver as a module, choose M here: the module
178 will be called t5403.
Peter Meerwalda2d8be62014-02-06 20:44:00 +0000179
Crestez Dan Leonardfa4c9c92016-03-29 19:14:27 +0300180config HP206C
181 tristate "HOPERF HP206C precision barometer and altimeter sensor"
182 depends on I2C
183 help
184 Say yes here to build support for the HOPREF HP206C precision
185 barometer and altimeter sensor.
186
187 This driver can also be built as a module. If so, the module will
188 be called hp206c.
189
Denis CIOCCA217494e2013-06-03 15:58:00 +0100190endmenu