Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 1 | # |
| 2 | # Pressure drivers |
| 3 | # |
Lars-Peter Clausen | 3edc84e | 2013-07-15 08:45:00 +0100 | [diff] [blame] | 4 | # When adding new entries keep the list in alphabetical order |
| 5 | |
Peter Meerwald | 93232cd | 2013-06-23 22:28:00 +0100 | [diff] [blame] | 6 | menu "Pressure sensors" |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 7 | |
Vlad Dogaru | d5c9456 | 2014-10-21 11:09:58 +0300 | [diff] [blame] | 8 | config BMP280 |
Linus Walleij | 1711884 | 2016-06-30 03:48:50 +0200 | [diff] [blame] | 9 | tristate "Bosch Sensortec BMP180/BMP280 pressure sensor I2C driver" |
Linus Walleij | b26b4e9 | 2016-06-30 03:48:51 +0200 | [diff] [blame] | 10 | depends on (I2C || SPI_MASTER) |
Linus Walleij | 1711884 | 2016-06-30 03:48:50 +0200 | [diff] [blame] | 11 | select REGMAP |
| 12 | select BMP280_I2C if (I2C) |
Linus Walleij | b26b4e9 | 2016-06-30 03:48:51 +0200 | [diff] [blame] | 13 | select BMP280_SPI if (SPI_MASTER) |
Vlad Dogaru | d5c9456 | 2014-10-21 11:09:58 +0300 | [diff] [blame] | 14 | help |
Akinobu Mita | 6dba72e | 2016-04-24 22:52:10 +0900 | [diff] [blame] | 15 | Say yes here to build support for Bosch Sensortec BMP180 and BMP280 |
Matt Ranostay | 14beaa8 | 2016-05-04 22:57:30 -0700 | [diff] [blame] | 16 | pressure and temperature sensors. Also supports the BE280 with |
Linus Walleij | 1711884 | 2016-06-30 03:48:50 +0200 | [diff] [blame] | 17 | an additional humidity sensor channel. |
Vlad Dogaru | d5c9456 | 2014-10-21 11:09:58 +0300 | [diff] [blame] | 18 | |
Linus Walleij | b26b4e9 | 2016-06-30 03:48:51 +0200 | [diff] [blame] | 19 | To compile this driver as a module, choose M here: the core module |
| 20 | will be called bmp280 and you will also get bmp280-i2c for I2C |
| 21 | and/or bmp280-spi for SPI support. |
Linus Walleij | 1711884 | 2016-06-30 03:48:50 +0200 | [diff] [blame] | 22 | |
| 23 | config BMP280_I2C |
| 24 | tristate |
| 25 | depends on BMP280 |
| 26 | depends on I2C |
| 27 | select REGMAP_I2C |
Vlad Dogaru | d5c9456 | 2014-10-21 11:09:58 +0300 | [diff] [blame] | 28 | |
Linus Walleij | b26b4e9 | 2016-06-30 03:48:51 +0200 | [diff] [blame] | 29 | config BMP280_SPI |
| 30 | tristate |
| 31 | depends on BMP280 |
| 32 | depends on SPI_MASTER |
| 33 | select REGMAP |
| 34 | |
Archana Patni | f64a799 | 2014-02-20 06:30:00 +0000 | [diff] [blame] | 35 | config HID_SENSOR_PRESS |
| 36 | depends on HID_SENSOR_HUB |
| 37 | select IIO_BUFFER |
| 38 | select IIO_TRIGGERED_BUFFER |
| 39 | select HID_SENSOR_IIO_COMMON |
| 40 | select HID_SENSOR_IIO_TRIGGER |
| 41 | tristate "HID PRESS" |
| 42 | help |
| 43 | Say yes here to build support for the HID SENSOR |
| 44 | Pressure driver |
| 45 | |
Jonathan Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 46 | To compile this driver as a module, choose M here: the module |
| 47 | will be called hid-sensor-press. |
Archana Patni | f64a799 | 2014-02-20 06:30:00 +0000 | [diff] [blame] | 48 | |
Marek Vasut | d8469e9 | 2016-04-18 16:05:24 +0200 | [diff] [blame] | 49 | config HP03 |
| 50 | tristate "Hope RF HP03 temperature and pressure sensor driver" |
| 51 | depends on I2C |
| 52 | select REGMAP_I2C |
| 53 | help |
| 54 | Say yes here to build support for Hope RF HP03 pressure and |
| 55 | temperature sensor. |
| 56 | |
| 57 | To compile this driver as a module, choose M here: the module |
| 58 | will be called hp03. |
| 59 | |
Peter Meerwald | 3017d90 | 2014-02-05 16:58:00 +0000 | [diff] [blame] | 60 | config MPL115 |
Akinobu Mita | c984b9c | 2016-01-16 01:00:03 +0900 | [diff] [blame] | 61 | tristate |
| 62 | |
| 63 | config MPL115_I2C |
Peter Meerwald | 3017d90 | 2014-02-05 16:58:00 +0000 | [diff] [blame] | 64 | tristate "Freescale MPL115A2 pressure sensor driver" |
| 65 | depends on I2C |
Akinobu Mita | c984b9c | 2016-01-16 01:00:03 +0900 | [diff] [blame] | 66 | select MPL115 |
Peter Meerwald | 3017d90 | 2014-02-05 16:58:00 +0000 | [diff] [blame] | 67 | help |
| 68 | Say yes here to build support for the Freescale MPL115A2 |
| 69 | pressure sensor connected via I2C. |
| 70 | |
Jonathan Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 71 | To compile this driver as a module, choose M here: the module |
| 72 | will be called mpl115_i2c. |
Akinobu Mita | c984b9c | 2016-01-16 01:00:03 +0900 | [diff] [blame] | 73 | |
| 74 | config MPL115_SPI |
| 75 | tristate "Freescale MPL115A1 pressure sensor driver" |
| 76 | depends on SPI_MASTER |
| 77 | select MPL115 |
| 78 | help |
| 79 | Say yes here to build support for the Freescale MPL115A1 |
| 80 | pressure sensor connected via SPI. |
| 81 | |
Jonathan Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 82 | To compile this driver as a module, choose M here: the module |
| 83 | will be called mpl115_spi. |
Peter Meerwald | 3017d90 | 2014-02-05 16:58:00 +0000 | [diff] [blame] | 84 | |
Peter Meerwald | cc26ad45 | 2013-11-12 19:43:00 +0000 | [diff] [blame] | 85 | config MPL3115 |
| 86 | tristate "Freescale MPL3115A2 pressure sensor driver" |
| 87 | depends on I2C |
| 88 | select IIO_BUFFER |
| 89 | select IIO_TRIGGERED_BUFFER |
| 90 | help |
| 91 | Say yes here to build support for the Freescale MPL3115A2 |
| 92 | pressure sensor / altimeter. |
| 93 | |
Jonathan Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 94 | To compile this driver as a module, choose M here: the module |
| 95 | will be called mpl3115. |
Peter Meerwald | cc26ad45 | 2013-11-12 19:43:00 +0000 | [diff] [blame] | 96 | |
Tomasz Duszynski | c064416 | 2015-03-14 21:29:31 +0100 | [diff] [blame] | 97 | config MS5611 |
Peter Meerwald | 825c50d | 2015-06-16 21:27:03 +0200 | [diff] [blame] | 98 | tristate "Measurement Specialties MS5611 pressure sensor driver" |
Arnd Bergmann | 3d5032a | 2016-02-16 15:55:07 +0100 | [diff] [blame] | 99 | select IIO_BUFFER |
Daniel Baluta | 713bbb4 | 2016-02-03 18:50:38 +0200 | [diff] [blame] | 100 | select IIO_TRIGGERED_BUFFER |
Tomasz Duszynski | c064416 | 2015-03-14 21:29:31 +0100 | [diff] [blame] | 101 | help |
Peter Meerwald | 825c50d | 2015-06-16 21:27:03 +0200 | [diff] [blame] | 102 | Say Y here to build support for the Measurement Specialties |
Tomasz Duszynski | 9690d81a | 2015-06-23 20:45:48 +0200 | [diff] [blame] | 103 | MS5611, MS5607 pressure and temperature sensors. |
Tomasz Duszynski | c064416 | 2015-03-14 21:29:31 +0100 | [diff] [blame] | 104 | |
| 105 | To compile this driver as a module, choose M here: the module will |
| 106 | be called ms5611_core. |
| 107 | |
| 108 | config MS5611_I2C |
| 109 | tristate "support I2C bus connection" |
| 110 | depends on I2C && MS5611 |
| 111 | help |
| 112 | Say Y here to build I2C bus support for MS5611. |
| 113 | |
| 114 | To compile this driver as a module, choose M here: the module will |
| 115 | be called ms5611_i2c. |
| 116 | |
| 117 | config MS5611_SPI |
| 118 | tristate "support SPI bus connection" |
| 119 | depends on SPI_MASTER && MS5611 |
| 120 | help |
| 121 | Say Y here to build SPI bus support for MS5611. |
| 122 | |
| 123 | To compile this driver as a module, choose M here: the module will |
| 124 | be called ms5611_spi. |
| 125 | |
Ludovic Tancerel | 64a70c6 | 2015-10-01 16:13:40 +0200 | [diff] [blame] | 126 | config MS5637 |
| 127 | tristate "Measurement Specialties MS5637 pressure & temperature sensor" |
| 128 | depends on I2C |
Jonathan Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 129 | select IIO_MS_SENSORS_I2C |
Ludovic Tancerel | 64a70c6 | 2015-10-01 16:13:40 +0200 | [diff] [blame] | 130 | help |
| 131 | If you say yes here you get support for the Measurement Specialties |
| 132 | MS5637 pressure and temperature sensor. |
Ludovic Tancerel | 1b75ce6 | 2015-10-01 16:13:41 +0200 | [diff] [blame] | 133 | This driver is also used for MS8607 temperature, pressure & humidity |
| 134 | sensor |
Ludovic Tancerel | 64a70c6 | 2015-10-01 16:13:40 +0200 | [diff] [blame] | 135 | |
| 136 | This driver can also be built as a module. If so, the module will |
| 137 | be called ms5637. |
| 138 | |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 139 | config IIO_ST_PRESS |
Peter Meerwald | 93232cd | 2013-06-23 22:28:00 +0100 | [diff] [blame] | 140 | tristate "STMicroelectronics pressure sensor Driver" |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 141 | depends on (I2C || SPI_MASTER) && SYSFS |
| 142 | select IIO_ST_SENSORS_CORE |
| 143 | select IIO_ST_PRESS_I2C if (I2C) |
| 144 | select IIO_ST_PRESS_SPI if (SPI_MASTER) |
| 145 | select IIO_TRIGGERED_BUFFER if (IIO_BUFFER) |
| 146 | help |
Peter Meerwald | 93232cd | 2013-06-23 22:28:00 +0100 | [diff] [blame] | 147 | Say yes here to build support for STMicroelectronics pressure |
Gregor Boirie | e039e2f | 2016-04-19 11:18:32 +0200 | [diff] [blame] | 148 | sensors: LPS001WP, LPS25H, LPS331AP, LPS22HB. |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 149 | |
Peter Meerwald | 341673f | 2013-06-23 22:28:00 +0100 | [diff] [blame] | 150 | This driver can also be built as a module. If so, these modules |
| 151 | will be created: |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 152 | - st_pressure (core functions for the driver [it is mandatory]); |
| 153 | - st_pressure_i2c (necessary for the I2C devices [optional*]); |
| 154 | - st_pressure_spi (necessary for the SPI devices [optional*]); |
| 155 | |
| 156 | (*) one of these is necessary to do something. |
| 157 | |
| 158 | config IIO_ST_PRESS_I2C |
| 159 | tristate |
| 160 | depends on IIO_ST_PRESS |
| 161 | depends on IIO_ST_SENSORS_I2C |
| 162 | |
| 163 | config IIO_ST_PRESS_SPI |
| 164 | tristate |
| 165 | depends on IIO_ST_PRESS |
| 166 | depends on IIO_ST_SENSORS_SPI |
| 167 | |
Peter Meerwald | a2d8be6 | 2014-02-06 20:44:00 +0000 | [diff] [blame] | 168 | config T5403 |
| 169 | tristate "EPCOS T5403 digital barometric pressure sensor driver" |
| 170 | depends on I2C |
| 171 | help |
| 172 | Say yes here to build support for the EPCOS T5403 pressure sensor |
| 173 | connected via I2C. |
| 174 | |
Jonathan Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 175 | To compile this driver as a module, choose M here: the module |
| 176 | will be called t5403. |
Peter Meerwald | a2d8be6 | 2014-02-06 20:44:00 +0000 | [diff] [blame] | 177 | |
Crestez Dan Leonard | fa4c9c9 | 2016-03-29 19:14:27 +0300 | [diff] [blame] | 178 | config HP206C |
| 179 | tristate "HOPERF HP206C precision barometer and altimeter sensor" |
| 180 | depends on I2C |
| 181 | help |
| 182 | Say yes here to build support for the HOPREF HP206C precision |
| 183 | barometer and altimeter sensor. |
| 184 | |
| 185 | This driver can also be built as a module. If so, the module will |
| 186 | be called hp206c. |
| 187 | |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 188 | endmenu |