kernel: add kmod-iio-bmp280
authorStijn Tintel <stijn@linux-ipv6.be>
Wed, 18 Oct 2017 17:17:56 +0000 (20:17 +0300)
committerStijn Tintel <stijn@linux-ipv6.be>
Mon, 23 Oct 2017 09:50:30 +0000 (12:50 +0300)
This driver supports the Bosch Sensortec BMP180/BMP280 pressure and
temperature sensors. It also supports the BME280 sensors with an
additional humidity channel.

Tested I2C and SPI modes with a BME280 sensor on a Raspberry Pi Zero W.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
package/kernel/linux/modules/iio.mk

index 29ccd6a07cabcd4f4221f17c21e3adaed3125a53..396ee7fbe4d3979c392eca3114d4a2656f80199a 100644 (file)
@@ -70,3 +70,51 @@ define KernelPackage/iio-dht11/description
 endef
 
 $(eval $(call KernelPackage,iio-dht11))
+
+define KernelPackage/iio-bmp280
+  SUBMENU:=$(IIO_MENU)
+  TITLE:=BMP180/BMP280/BME280 pressure/temperatur sensor
+  DEPENDS:=@LINUX_4_9 +kmod-iio-core +kmod-regmap
+  KCONFIG:=CONFIG_BMP280
+  FILES:=$(LINUX_DIR)/drivers/iio/pressure/bmp280.ko
+endef
+
+define KernelPackage/iio-bmp280/description
+ This driver adds support for Bosch Sensortec BMP180 and BMP280 pressure and
+ temperature sensors. Also supports the BME280 with an additional humidity
+ sensor channel.
+endef
+
+$(eval $(call KernelPackage,iio-bmp280))
+
+
+define KernelPackage/iio-bmp280-i2c
+  SUBMENU:=$(IIO_MENU)
+  TITLE:=BMP180/BMP280/BME280 pressure/temperatur sensor (I2C)
+  DEPENDS:=+kmod-iio-bmp280 +kmod-i2c-core
+  KCONFIG:=CONFIG_BMP280_I2C
+  FILES:=$(LINUX_DIR)/drivers/iio/pressure/bmp280-i2c.ko
+  AUTOLOAD:=$(call AutoProbe,iio-bmp280-i2c)
+endef
+define KernelPackage/iio-bmp280-i2c/description
+ This driver adds support for Bosch Sensortec's digital pressure and
+ temperature sensor connected via I2C.
+endef
+
+$(eval $(call KernelPackage,iio-bmp280-i2c))
+
+
+define KernelPackage/iio-bmp280-spi
+  SUBMENU:=$(IIO_MENU)
+  TITLE:=BMP180/BMP280/BME280 pressure/temperatur sensor (SPI)
+  DEPENDS:=+kmod-iio-bmp280 +kmod-spi-bitbang
+  KCONFIG:=CONFIG_BMP280_SPI
+  FILES:=$(LINUX_DIR)/drivers/iio/pressure/bmp280-spi.ko
+  AUTOLOAD:=$(call AutoProbe,iio-bmp280-spi)
+endef
+define KernelPackage/iio-bmp280-spi/description
+ This driver adds support for Bosch Sensortec's digital pressure and
+ temperature sensor connected via SPI.
+endef
+
+$(eval $(call KernelPackage,iio-bmp280-spi))