Add ms8607 meas-spec driver support
authorLudovic Tancerel <ludovic.tancerel@maplehightech.com>
Thu, 1 Oct 2015 14:13:41 +0000 (16:13 +0200)
committerJonathan Cameron <jic23@kernel.org>
Sun, 11 Oct 2015 09:21:21 +0000 (10:21 +0100)
Support for MS8607 temperature, pressure & humidity sensor.
This part is using functions from MS5637 for temperature and pressure
and HTU21 for humidity

Signed-off-by: Ludovic Tancerel <ludovic.tancerel@maplehightech.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Documentation/ABI/testing/sysfs-bus-iio-meas-spec
drivers/iio/humidity/Kconfig
drivers/iio/humidity/htu21.c
drivers/iio/pressure/Kconfig
drivers/iio/pressure/ms5637.c

index 6d47e548eee503516764e22ee87f6c3a20da4d04..1a6265e92e2faac745a5f06af3971205d443cb42 100644 (file)
@@ -5,3 +5,4 @@ Description:
                 Reading returns either '1' or '0'. '1' means that the
                 battery level supplied to sensor is below 2.25V.
                 This ABI is available for tsys02d, htu21, ms8607
+               This ABI is available for htu21, ms8607
index a7e5ee51e02155beb718ab8bcf020da7cf60ef14..6a23698d347c24c8e2a776ad09d42a0792d07309 100644 (file)
@@ -29,6 +29,8 @@ config HTU21
        help
          If you say yes here you get support for the Measurement Specialties
          HTU21 humidity and temperature sensor.
+         This driver is also used for MS8607 temperature, pressure & humidity
+         sensor
 
          This driver can also be built as a module. If so, the module will
          be called htu21.
index b7f8d0520dde27594e2d6ccf1fddde4640c96a62..d1636a74980ec7acf06c5456a8a2bc07851b59a2 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * htu21.c - Support for Measurement-Specialties
  *           htu21 temperature & humidity sensor
+ *          and humidity part of MS8607 sensor
  *
  * Copyright (c) 2014 Measurement-Specialties
  *
@@ -10,6 +11,8 @@
  *
  * Datasheet:
  *  http://www.meas-spec.com/downloads/HTU21D.pdf
+ * Datasheet:
+ *  http://www.meas-spec.com/downloads/MS8607-02BA01.pdf
  */
 
 #include <linux/init.h>
 
 #define HTU21_RESET                            0xFE
 
+enum {
+       HTU21,
+       MS8607
+};
+
 static const int htu21_samp_freq[4] = { 20, 40, 70, 120 };
 /* String copy of the above const for readability purpose */
 static const char htu21_show_samp_freq[] = "20 40 70 120";
@@ -106,6 +114,18 @@ static const struct iio_chan_spec htu21_channels[] = {
         }
 };
 
+/*
+ * Meas Spec recommendation is to not read temperature
+ * on this driver part for MS8607
+ */
+static const struct iio_chan_spec ms8607_channels[] = {
+       {
+               .type = IIO_HUMIDITYRELATIVE,
+               .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_PROCESSED),
+               .info_mask_shared_by_all = BIT(IIO_CHAN_INFO_SAMP_FREQ),
+        }
+};
+
 static ssize_t htu21_show_battery_low(struct device *dev,
                                      struct device_attribute *attr, char *buf)
 {
@@ -188,8 +208,14 @@ static int htu21_probe(struct i2c_client *client,
        indio_dev->name = id->name;
        indio_dev->dev.parent = &client->dev;
        indio_dev->modes = INDIO_DIRECT_MODE;
-       indio_dev->channels = htu21_channels;
-       indio_dev->num_channels = ARRAY_SIZE(htu21_channels);
+
+       if (id->driver_data == MS8607) {
+               indio_dev->channels = ms8607_channels;
+               indio_dev->num_channels = ARRAY_SIZE(ms8607_channels);
+       } else {
+               indio_dev->channels = htu21_channels;
+               indio_dev->num_channels = ARRAY_SIZE(htu21_channels);
+       }
 
        i2c_set_clientdata(client, indio_dev);
 
@@ -206,7 +232,8 @@ static int htu21_probe(struct i2c_client *client,
 }
 
 static const struct i2c_device_id htu21_id[] = {
-       {"htu21", 0},
+       {"htu21", HTU21},
+       {"ms8607-humidity", MS8607},
        {}
 };
 
index 9282ec4319fcfae6c5bd1a862bff0b803959e536..6f2e7c9ac23e33c557ecfd0517dca15dce91807e 100644 (file)
@@ -86,6 +86,8 @@ config MS5637
        help
          If you say yes here you get support for the Measurement Specialties
          MS5637 pressure and temperature sensor.
+         This driver is also used for MS8607 temperature, pressure & humidity
+         sensor
 
          This driver can also be built as a module. If so, the module will
          be called ms5637.
index e3ad9d39b966bdbecedcff49ef6d43e6a227aeb1..e8d0e0da938d10d048c2a534e8a6cb67fd1fd8c8 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * ms5637.c - Support for Measurement-Specialties ms5637
+ * ms5637.c - Support for Measurement-Specialties ms5637 and ms8607
  *            pressure & temperature sensor
  *
  * Copyright (c) 2015 Measurement-Specialties
  *
  * Datasheet:
  *  http://www.meas-spec.com/downloads/MS5637-02BA03.pdf
+ * Datasheet:
+ *  http://www.meas-spec.com/downloads/MS8607-02BA01.pdf
  */
+
 #include <linux/init.h>
 #include <linux/device.h>
 #include <linux/kernel.h>
@@ -167,6 +170,7 @@ static int ms5637_probe(struct i2c_client *client,
 
 static const struct i2c_device_id ms5637_id[] = {
        {"ms5637", 0},
+       {"ms8607-temppressure", 1},
        {}
 };
 
This page took 0.030347 seconds and 5 git commands to generate.