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) |
Akinobu Mita | 6dba72e | 2016-04-24 22:52:10 +0900 | [diff] [blame] | 11 | depends on !(BMP085_I2C=y || BMP085_I2C=m) |
Linus Walleij | b26b4e9 | 2016-06-30 03:48:51 +0200 | [diff] [blame] | 12 | depends on !(BMP085_SPI=y || BMP085_SPI=m) |
Linus Walleij | 1711884 | 2016-06-30 03:48:50 +0200 | [diff] [blame] | 13 | select REGMAP |
| 14 | select BMP280_I2C if (I2C) |
Linus Walleij | b26b4e9 | 2016-06-30 03:48:51 +0200 | [diff] [blame] | 15 | select BMP280_SPI if (SPI_MASTER) |
Vlad Dogaru | d5c9456 | 2014-10-21 11:09:58 +0300 | [diff] [blame] | 16 | help |
Akinobu Mita | 6dba72e | 2016-04-24 22:52:10 +0900 | [diff] [blame] | 17 | Say yes here to build support for Bosch Sensortec BMP180 and BMP280 |
Matt Ranostay | 14beaa8 | 2016-05-04 22:57:30 -0700 | [diff] [blame] | 18 | pressure and temperature sensors. Also supports the BE280 with |
Linus Walleij | 1711884 | 2016-06-30 03:48:50 +0200 | [diff] [blame] | 19 | an additional humidity sensor channel. |
Vlad Dogaru | d5c9456 | 2014-10-21 11:09:58 +0300 | [diff] [blame] | 20 | |
Linus Walleij | b26b4e9 | 2016-06-30 03:48:51 +0200 | [diff] [blame] | 21 | 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 Walleij | 1711884 | 2016-06-30 03:48:50 +0200 | [diff] [blame] | 24 | |
| 25 | config BMP280_I2C |
| 26 | tristate |
| 27 | depends on BMP280 |
| 28 | depends on I2C |
| 29 | select REGMAP_I2C |
Vlad Dogaru | d5c9456 | 2014-10-21 11:09:58 +0300 | [diff] [blame] | 30 | |
Linus Walleij | b26b4e9 | 2016-06-30 03:48:51 +0200 | [diff] [blame] | 31 | config BMP280_SPI |
| 32 | tristate |
| 33 | depends on BMP280 |
| 34 | depends on SPI_MASTER |
| 35 | select REGMAP |
| 36 | |
Archana Patni | f64a799 | 2014-02-20 06:30:00 +0000 | [diff] [blame] | 37 | config 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 Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 48 | To compile this driver as a module, choose M here: the module |
| 49 | will be called hid-sensor-press. |
Archana Patni | f64a799 | 2014-02-20 06:30:00 +0000 | [diff] [blame] | 50 | |
Marek Vasut | d8469e9 | 2016-04-18 16:05:24 +0200 | [diff] [blame] | 51 | config 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 Meerwald | 3017d90 | 2014-02-05 16:58:00 +0000 | [diff] [blame] | 62 | config MPL115 |
Akinobu Mita | c984b9c | 2016-01-16 01:00:03 +0900 | [diff] [blame] | 63 | tristate |
| 64 | |
| 65 | config MPL115_I2C |
Peter Meerwald | 3017d90 | 2014-02-05 16:58:00 +0000 | [diff] [blame] | 66 | tristate "Freescale MPL115A2 pressure sensor driver" |
| 67 | depends on I2C |
Akinobu Mita | c984b9c | 2016-01-16 01:00:03 +0900 | [diff] [blame] | 68 | select MPL115 |
Peter Meerwald | 3017d90 | 2014-02-05 16:58:00 +0000 | [diff] [blame] | 69 | help |
| 70 | Say yes here to build support for the Freescale MPL115A2 |
| 71 | pressure sensor connected via I2C. |
| 72 | |
Jonathan Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 73 | To compile this driver as a module, choose M here: the module |
| 74 | will be called mpl115_i2c. |
Akinobu Mita | c984b9c | 2016-01-16 01:00:03 +0900 | [diff] [blame] | 75 | |
| 76 | config 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 Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 84 | To compile this driver as a module, choose M here: the module |
| 85 | will be called mpl115_spi. |
Peter Meerwald | 3017d90 | 2014-02-05 16:58:00 +0000 | [diff] [blame] | 86 | |
Peter Meerwald | cc26ad45 | 2013-11-12 19:43:00 +0000 | [diff] [blame] | 87 | config 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 Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 96 | To compile this driver as a module, choose M here: the module |
| 97 | will be called mpl3115. |
Peter Meerwald | cc26ad45 | 2013-11-12 19:43:00 +0000 | [diff] [blame] | 98 | |
Tomasz Duszynski | c0644160a | 2015-03-14 21:29:31 +0100 | [diff] [blame] | 99 | config MS5611 |
Peter Meerwald | 825c50d | 2015-06-16 21:27:03 +0200 | [diff] [blame] | 100 | tristate "Measurement Specialties MS5611 pressure sensor driver" |
Arnd Bergmann | 3d5032a | 2016-02-16 15:55:07 +0100 | [diff] [blame] | 101 | select IIO_BUFFER |
Daniel Baluta | 713bbb4 | 2016-02-03 18:50:38 +0200 | [diff] [blame] | 102 | select IIO_TRIGGERED_BUFFER |
Tomasz Duszynski | c0644160a | 2015-03-14 21:29:31 +0100 | [diff] [blame] | 103 | help |
Peter Meerwald | 825c50d | 2015-06-16 21:27:03 +0200 | [diff] [blame] | 104 | Say Y here to build support for the Measurement Specialties |
Tomasz Duszynski | 9690d81a | 2015-06-23 20:45:48 +0200 | [diff] [blame] | 105 | MS5611, MS5607 pressure and temperature sensors. |
Tomasz Duszynski | c0644160a | 2015-03-14 21:29:31 +0100 | [diff] [blame] | 106 | |
| 107 | To compile this driver as a module, choose M here: the module will |
| 108 | be called ms5611_core. |
| 109 | |
| 110 | config 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 | |
| 119 | config 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 Tancerel | 64a70c6 | 2015-10-01 16:13:40 +0200 | [diff] [blame] | 128 | config MS5637 |
| 129 | tristate "Measurement Specialties MS5637 pressure & temperature sensor" |
| 130 | depends on I2C |
Jonathan Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 131 | select IIO_MS_SENSORS_I2C |
Ludovic Tancerel | 64a70c6 | 2015-10-01 16:13:40 +0200 | [diff] [blame] | 132 | help |
| 133 | If you say yes here you get support for the Measurement Specialties |
| 134 | MS5637 pressure and temperature sensor. |
Ludovic Tancerel | 1b75ce6 | 2015-10-01 16:13:41 +0200 | [diff] [blame] | 135 | This driver is also used for MS8607 temperature, pressure & humidity |
| 136 | sensor |
Ludovic Tancerel | 64a70c6 | 2015-10-01 16:13:40 +0200 | [diff] [blame] | 137 | |
| 138 | This driver can also be built as a module. If so, the module will |
| 139 | be called ms5637. |
| 140 | |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 141 | config IIO_ST_PRESS |
Peter Meerwald | 93232cd | 2013-06-23 22:28:00 +0100 | [diff] [blame] | 142 | tristate "STMicroelectronics pressure sensor Driver" |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 143 | 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 Meerwald | 93232cd | 2013-06-23 22:28:00 +0100 | [diff] [blame] | 149 | Say yes here to build support for STMicroelectronics pressure |
Gregor Boirie | e039e2f | 2016-04-19 11:18:32 +0200 | [diff] [blame] | 150 | sensors: LPS001WP, LPS25H, LPS331AP, LPS22HB. |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 151 | |
Peter Meerwald | 341673f | 2013-06-23 22:28:00 +0100 | [diff] [blame] | 152 | This driver can also be built as a module. If so, these modules |
| 153 | will be created: |
Denis CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 154 | - 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 | |
| 160 | config IIO_ST_PRESS_I2C |
| 161 | tristate |
| 162 | depends on IIO_ST_PRESS |
| 163 | depends on IIO_ST_SENSORS_I2C |
| 164 | |
| 165 | config IIO_ST_PRESS_SPI |
| 166 | tristate |
| 167 | depends on IIO_ST_PRESS |
| 168 | depends on IIO_ST_SENSORS_SPI |
| 169 | |
Peter Meerwald | a2d8be6 | 2014-02-06 20:44:00 +0000 | [diff] [blame] | 170 | config 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 Cameron | 21cb454 | 2016-01-24 17:06:50 +0000 | [diff] [blame] | 177 | To compile this driver as a module, choose M here: the module |
| 178 | will be called t5403. |
Peter Meerwald | a2d8be6 | 2014-02-06 20:44:00 +0000 | [diff] [blame] | 179 | |
Crestez Dan Leonard | fa4c9c9 | 2016-03-29 19:14:27 +0300 | [diff] [blame] | 180 | config 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 CIOCCA | 217494e | 2013-06-03 15:58:00 +0100 | [diff] [blame] | 190 | endmenu |