Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   1) # SPDX-License-Identifier: GPL-2.0-only
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   2) #
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   3) # Pressure drivers
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   4) #
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   5) # When adding new entries keep the list in alphabetical order
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   7) menu "Pressure sensors"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   8) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   9) config ABP060MG
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  10) 	tristate "Honeywell ABP pressure sensor driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  11) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  12) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  13) 	  Say yes here to build support for the Honeywell ABP pressure
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  14) 	  sensors.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  15) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  16) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  17) 	  will be called abp060mg.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  18) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  19) config BMP280
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  20) 	tristate "Bosch Sensortec BMP180/BMP280 pressure sensor I2C driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  21) 	depends on (I2C || SPI_MASTER)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  22) 	select REGMAP
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  23) 	select BMP280_I2C if (I2C)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  24) 	select BMP280_SPI if (SPI_MASTER)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  25) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  26) 	  Say yes here to build support for Bosch Sensortec BMP180 and BMP280
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  27) 	  pressure and temperature sensors. Also supports the BME280 with
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  28) 	  an additional humidity sensor channel.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  29) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  30) 	  To compile this driver as a module, choose M here: the core module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  31) 	  will be called bmp280 and you will also get bmp280-i2c for I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  32) 	  and/or bmp280-spi for SPI support.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  33) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  34) config BMP280_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  35) 	tristate
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  36) 	depends on BMP280
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  37) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  38) 	select REGMAP_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  39) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  40) config BMP280_SPI
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  41) 	tristate
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  42) 	depends on BMP280
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  43) 	depends on SPI_MASTER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  44) 	select REGMAP
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  45) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  46) config IIO_CROS_EC_BARO
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  47) 	tristate "ChromeOS EC Barometer Sensor"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  48) 	depends on IIO_CROS_EC_SENSORS_CORE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  49) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  50) 	  Say yes here to build support for the Barometer sensor when
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  51) 	  presented by the ChromeOS EC Sensor hub.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  52) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  53) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  54) 	  will be called cros_ec_baro.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  55) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  56) config DLHL60D
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  57) 	tristate "All Sensors DLHL60D and DLHL60G low voltage digital pressure sensors"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  58) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  59) 	select IIO_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  60) 	select IIO_TRIGGERED_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  61) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  62) 	  Say yes here to build support for the All Sensors DLH series
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  63) 	  pressure sensors driver.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  64) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  65) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  66) 	  will be called dlhl60d.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  67) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  68) config DPS310
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  69) 	tristate "Infineon DPS310 pressure and temperature sensor"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  70) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  71) 	select REGMAP_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  72) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  73) 	  Support for the Infineon DPS310 digital barometric pressure sensor.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  74) 	  It can be accessed over I2C bus.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  75) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  76) 	  This driver can also be built as a module.  If so, the module will be
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  77) 	  called dps310.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  78) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  79) config HID_SENSOR_PRESS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  80) 	depends on HID_SENSOR_HUB
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  81) 	select IIO_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  82) 	select HID_SENSOR_IIO_COMMON
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  83) 	select HID_SENSOR_IIO_TRIGGER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  84) 	tristate "HID PRESS"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  85) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  86) 	  Say yes here to build support for the HID SENSOR
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  87) 	  Pressure driver
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  88) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  89) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  90) 	  will be called hid-sensor-press.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  91) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  92) config HP03
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  93) 	tristate "Hope RF HP03 temperature and pressure sensor driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  94) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  95) 	select REGMAP_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  96) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  97) 	  Say yes here to build support for Hope RF HP03 pressure and
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  98) 	  temperature sensor.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  99) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 100) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 101) 	  will be called hp03.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 102) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 103) config ICP10100
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 104) 	tristate "InvenSense ICP-101xx pressure and temperature sensor"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 105) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 106) 	select CRC8
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 107) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 108) 	  Say yes here to build support for InvenSense ICP-101xx barometric
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 109) 	  pressure and temperature sensor.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 110) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 111) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 112) 	  will be called icp10100.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 113) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 114) config MPL115
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 115) 	tristate
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 116) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 117) config MPL115_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 118) 	tristate "Freescale MPL115A2 pressure sensor driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 119) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 120) 	select MPL115
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 121) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 122) 	  Say yes here to build support for the Freescale MPL115A2
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 123) 	  pressure sensor connected via I2C.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 124) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 125) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 126) 	  will be called mpl115_i2c.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 127) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 128) config MPL115_SPI
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 129) 	tristate "Freescale MPL115A1 pressure sensor driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 130) 	depends on SPI_MASTER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 131) 	select MPL115
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 132) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 133) 	  Say yes here to build support for the Freescale MPL115A1
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 134) 	  pressure sensor connected via SPI.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 135) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 136) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 137) 	  will be called mpl115_spi.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 138) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 139) config MPL3115
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 140) 	tristate "Freescale MPL3115A2 pressure sensor driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 141) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 142) 	select IIO_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 143) 	select IIO_TRIGGERED_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 144) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 145) 	  Say yes here to build support for the Freescale MPL3115A2
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 146) 	  pressure sensor / altimeter.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 147) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 148) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 149) 	  will be called mpl3115.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 150) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 151) config MS5611
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 152) 	tristate "Measurement Specialties MS5611 pressure sensor driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 153) 	select IIO_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 154) 	select IIO_TRIGGERED_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 155) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 156) 	  Say Y here to build support for the Measurement Specialties
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 157) 	  MS5611, MS5607 pressure and temperature sensors.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 158) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 159) 	  To compile this driver as a module, choose M here: the module will
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 160) 	  be called ms5611_core.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 161) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 162) config MS5611_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 163) 	tristate "support I2C bus connection"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 164) 	depends on I2C && MS5611
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 165) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 166) 	  Say Y here to build I2C bus support for MS5611.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 167) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 168) 	  To compile this driver as a module, choose M here: the module will
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 169) 	  be called ms5611_i2c.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 170) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 171) config MS5611_SPI
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 172) 	tristate "support SPI bus connection"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 173) 	depends on SPI_MASTER && MS5611
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 174) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 175) 	  Say Y here to build SPI bus support for MS5611.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 176) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 177) 	  To compile this driver as a module, choose M here: the module will
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 178) 	  be called ms5611_spi.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 179) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 180) config MS5637
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 181) 	tristate "Measurement Specialties MS5637 pressure & temperature sensor"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 182) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 183) 	select IIO_MS_SENSORS_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 184) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 185) 	  If you say yes here you get support for the Measurement Specialties
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 186) 	  MS5637 pressure and temperature sensor.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 187) 	  This driver is also used for MS8607 temperature, pressure & humidity
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 188) 	  sensor
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 189) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 190) 	  This driver can also be built as a module. If so, the module will
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 191) 	  be called ms5637.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 192) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 193) config IIO_ST_PRESS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 194) 	tristate "STMicroelectronics pressure sensor Driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 195) 	depends on (I2C || SPI_MASTER) && SYSFS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 196) 	select IIO_ST_SENSORS_CORE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 197) 	select IIO_ST_PRESS_I2C if (I2C)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 198) 	select IIO_ST_PRESS_SPI if (SPI_MASTER)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 199) 	select IIO_TRIGGERED_BUFFER if (IIO_BUFFER)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 200) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 201) 	  Say yes here to build support for STMicroelectronics pressure
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 202) 	  sensors: LPS001WP, LPS25H, LPS331AP, LPS22HB, LPS22HH.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 203) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 204) 	  This driver can also be built as a module. If so, these modules
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 205) 	  will be created:
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 206) 	  - st_pressure (core functions for the driver [it is mandatory]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 207) 	  - st_pressure_i2c (necessary for the I2C devices [optional*]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 208) 	  - st_pressure_spi (necessary for the SPI devices [optional*]);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 209) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 210) 	  (*) one of these is necessary to do something.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 211) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 212) config IIO_ST_PRESS_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 213) 	tristate
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 214) 	depends on IIO_ST_PRESS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 215) 	depends on IIO_ST_SENSORS_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 216) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 217) config IIO_ST_PRESS_SPI
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 218) 	tristate
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 219) 	depends on IIO_ST_PRESS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 220) 	depends on IIO_ST_SENSORS_SPI
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 221) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 222) config T5403
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 223) 	tristate "EPCOS T5403 digital barometric pressure sensor driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 224) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 225) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 226) 	  Say yes here to build support for the EPCOS T5403 pressure sensor
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 227) 	  connected via I2C.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 228) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 229) 	  To compile this driver as a module, choose M here: the module
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 230) 	  will be called t5403.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 231) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 232) config HP206C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 233) 	tristate "HOPERF HP206C precision barometer and altimeter sensor"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 234) 	depends on I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 235) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 236) 	  Say yes here to build support for the HOPREF HP206C precision
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 237) 	  barometer and altimeter sensor.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 238) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 239) 	  This driver can also be built as a module. If so, the module will
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 240) 	  be called hp206c.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 241) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 242) config ZPA2326
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 243) 	tristate "Murata ZPA2326 pressure sensor driver"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 244) 	select IIO_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 245) 	select IIO_TRIGGERED_BUFFER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 246) 	select REGMAP
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 247) 	select ZPA2326_I2C if I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 248) 	select ZPA2326_SPI if SPI_MASTER
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 249) 	help
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 250) 	  Say Y here to build support for the Murata ZPA2326 pressure and
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 251) 	  temperature sensor.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 252) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 253) 	  To compile this driver as a module, choose M here: the module will
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 254) 	  be called zpa2326.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 255) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 256) config ZPA2326_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 257) 	tristate
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 258) 	select REGMAP_I2C
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 259) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 260) config ZPA2326_SPI
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 261) 	tristate
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 262) 	select REGMAP_SPI
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 263) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 264) endmenu