* [PATCH v3 0/3] iio: chemical: add atlas ph sensor support
@ 2016-01-18 15:28 Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 1/3] devicetree: add Atlas Scientific LLC vendor prefix Matt Ranostay
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Matt Ranostay @ 2016-01-18 15:28 UTC (permalink / raw)
To: jic23; +Cc: linux-iio, Matt Ranostay
Changes from v2:
* calibration status check to report missing reference points
* add temp range check
* switch to using both edges of interrupt option to avoid having to
re-enable after every event. Which could cause a rare deadlock if an
interrupt was dropped
* add missing iio_trigger_poll and irq_work queue to schedule task
* add missing ->num_channels field
Matt Ranostay (3):
devicetree: add Atlas Scientific LLC vendor prefix
iio: ph: add IIO_PH channel type
iio: chemical: add Atlas pH-SM sensor support
Documentation/ABI/testing/sysfs-bus-iio | 7 +
.../bindings/iio/chemical/atlas,ph-sm.txt | 22 +
.../devicetree/bindings/vendor-prefixes.txt | 1 +
arch/arm/boot/dts/am335x-bone-common.dtsi | 4 +-
drivers/iio/chemical/Kconfig | 13 +
drivers/iio/chemical/Makefile | 1 +
drivers/iio/chemical/atlas-ph-sensor.c | 505 +++++++++++++++++++++
drivers/iio/industrialio-core.c | 1 +
include/uapi/linux/iio/types.h | 1 +
9 files changed, 553 insertions(+), 2 deletions(-)
create mode 100644 Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
create mode 100644 drivers/iio/chemical/atlas-ph-sensor.c
--
2.7.0.rc3
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v3 1/3] devicetree: add Atlas Scientific LLC vendor prefix
2016-01-18 15:28 [PATCH v3 0/3] iio: chemical: add atlas ph sensor support Matt Ranostay
@ 2016-01-18 15:28 ` Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 2/3] iio: ph: add IIO_PH channel type Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 3/3] iio: chemical: add Atlas pH-SM sensor support Matt Ranostay
2 siblings, 0 replies; 6+ messages in thread
From: Matt Ranostay @ 2016-01-18 15:28 UTC (permalink / raw)
To: jic23; +Cc: linux-iio, Matt Ranostay
Add the "atlas" vendor prefix for Atlas Scientific LLC
Signed-off-by: Matt Ranostay <mranostay@gmail.com>
---
Documentation/devicetree/bindings/vendor-prefixes.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index 72e2c5a..44ddc98 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -28,6 +28,7 @@ arm ARM Ltd.
armadeus ARMadeus Systems SARL
artesyn Artesyn Embedded Technologies Inc.
asahi-kasei Asahi Kasei Corp.
+atlas Atlas Scientific LLC
atmel Atmel Corporation
auo AU Optronics Corporation
avago Avago Technologies
--
2.7.0.rc3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 2/3] iio: ph: add IIO_PH channel type
2016-01-18 15:28 [PATCH v3 0/3] iio: chemical: add atlas ph sensor support Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 1/3] devicetree: add Atlas Scientific LLC vendor prefix Matt Ranostay
@ 2016-01-18 15:28 ` Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 3/3] iio: chemical: add Atlas pH-SM sensor support Matt Ranostay
2 siblings, 0 replies; 6+ messages in thread
From: Matt Ranostay @ 2016-01-18 15:28 UTC (permalink / raw)
To: jic23; +Cc: linux-iio, Matt Ranostay
Signed-off-by: Matt Ranostay <mranostay@gmail.com>
---
Documentation/ABI/testing/sysfs-bus-iio | 7 +++++++
drivers/iio/industrialio-core.c | 1 +
include/uapi/linux/iio/types.h | 1 +
3 files changed, 9 insertions(+)
diff --git a/Documentation/ABI/testing/sysfs-bus-iio b/Documentation/ABI/testing/sysfs-bus-iio
index 0439c2a..86ba8d6 100644
--- a/Documentation/ABI/testing/sysfs-bus-iio
+++ b/Documentation/ABI/testing/sysfs-bus-iio
@@ -1491,3 +1491,10 @@ Description:
This ABI is especially applicable for humidity sensors
to heatup the device and get rid of any condensation
in some humidity environment
+
+What: /sys/bus/iio/devices/iio:deviceX/in_ph_raw
+KernelVersion: 4.5
+Contact: linux-iio@vger.kernel.org
+Description:
+ Raw (unscaled no offset etc.) pH reading of a substance as a negative
+ base-10 logarithm of hydrodium ions in a litre of water.
diff --git a/drivers/iio/industrialio-core.c b/drivers/iio/industrialio-core.c
index af7cc1e..70cb7eb 100644
--- a/drivers/iio/industrialio-core.c
+++ b/drivers/iio/industrialio-core.c
@@ -77,6 +77,7 @@ static const char * const iio_chan_type_name_spec[] = {
[IIO_VELOCITY] = "velocity",
[IIO_CONCENTRATION] = "concentration",
[IIO_RESISTANCE] = "resistance",
+ [IIO_PH] = "ph",
};
static const char * const iio_modifier_names[] = {
diff --git a/include/uapi/linux/iio/types.h b/include/uapi/linux/iio/types.h
index 7c63bd6..c077617 100644
--- a/include/uapi/linux/iio/types.h
+++ b/include/uapi/linux/iio/types.h
@@ -37,6 +37,7 @@ enum iio_chan_type {
IIO_VELOCITY,
IIO_CONCENTRATION,
IIO_RESISTANCE,
+ IIO_PH,
};
enum iio_modifier {
--
2.7.0.rc3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 3/3] iio: chemical: add Atlas pH-SM sensor support
2016-01-18 15:28 [PATCH v3 0/3] iio: chemical: add atlas ph sensor support Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 1/3] devicetree: add Atlas Scientific LLC vendor prefix Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 2/3] iio: ph: add IIO_PH channel type Matt Ranostay
@ 2016-01-18 15:28 ` Matt Ranostay
2016-01-18 19:28 ` Peter Meerwald-Stadler
2 siblings, 1 reply; 6+ messages in thread
From: Matt Ranostay @ 2016-01-18 15:28 UTC (permalink / raw)
To: jic23; +Cc: linux-iio, Matt Ranostay
Add support for the Atlas Scientific pH-SM chemical sensor that can
detect pH levels of solutions in the range of 0-14.
Signed-off-by: Matt Ranostay <mranostay@gmail.com>
---
.../bindings/iio/chemical/atlas,ph-sm.txt | 22 +
drivers/iio/chemical/Kconfig | 13 +
drivers/iio/chemical/Makefile | 1 +
drivers/iio/chemical/atlas-ph-sensor.c | 505 +++++++++++++++++++++
4 files changed, 541 insertions(+)
create mode 100644 Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
create mode 100644 drivers/iio/chemical/atlas-ph-sensor.c
diff --git a/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt b/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
new file mode 100644
index 0000000..cffa190
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
@@ -0,0 +1,22 @@
+* Atlas Scientific pH-SM OEM sensor
+
+http://www.atlas-scientific.com/_files/_datasheets/_oem/pH_oem_datasheet.pdf
+
+Required properties:
+
+ - compatible: must be "atlas,ph-sm"
+ - reg: the I2C address of the sensor
+ - interrupt-parent: should be the phandle for the interrupt controller
+ - interrupts: the sole interrupt generated by the device
+
+ Refer to interrupt-controller/interrupts.txt for generic interrupt client
+ node bindings.
+
+Example:
+
+atlas@65 {
+ compatible = "atlas,ph-sm";
+ reg = <0x65>;
+ interrupt-parent = <&gpio1>;
+ interrupts = <16 2>;
+};
diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig
index f16de61..ce7cd1370 100644
--- a/drivers/iio/chemical/Kconfig
+++ b/drivers/iio/chemical/Kconfig
@@ -4,6 +4,19 @@
menu "Chemical Sensors"
+config ATLAS_PH_SENSOR
+ tristate "Atlas Scientific OEM pH-SM sensor"
+ depends on I2C
+ select REGMAP_I2C
+ select IIO_BUFFER
+ select IIO_TRIGGERED_BUFFER
+ help
+ Say Y here to build I2C interface support for the Atlas
+ Scientific OEM pH-SM sensor.
+
+ To compile this driver as module, choose M here: the
+ module will be called atlas-ph-sensor.
+
config IAQCORE
tristate "AMS iAQ-Core VOC sensors"
depends on I2C
diff --git a/drivers/iio/chemical/Makefile b/drivers/iio/chemical/Makefile
index 167861f..b02202b 100644
--- a/drivers/iio/chemical/Makefile
+++ b/drivers/iio/chemical/Makefile
@@ -3,5 +3,6 @@
#
# When adding new entries keep the list in alphabetical order
+obj-$(CONFIG_ATLAS_PH_SENSOR) += atlas-ph-sensor.o
obj-$(CONFIG_IAQCORE) += ams-iaq-core.o
obj-$(CONFIG_VZ89X) += vz89x.o
diff --git a/drivers/iio/chemical/atlas-ph-sensor.c b/drivers/iio/chemical/atlas-ph-sensor.c
new file mode 100644
index 0000000..775e85c
--- /dev/null
+++ b/drivers/iio/chemical/atlas-ph-sensor.c
@@ -0,0 +1,505 @@
+/*
+ * atlas-ph-sensor.c - Support for Atlas Scientific OEM pH-SM sensor
+ *
+ * Copyright (C) 2015 Matt Ranostay <mranostay@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#include <linux/module.h>
+#include <linux/init.h>
+#include <linux/interrupt.h>
+#include <linux/delay.h>
+#include <linux/mutex.h>
+#include <linux/err.h>
+#include <linux/irq.h>
+#include <linux/irq_work.h>
+#include <linux/gpio.h>
+#include <linux/i2c.h>
+#include <linux/regmap.h>
+#include <linux/iio/iio.h>
+#include <linux/iio/buffer.h>
+#include <linux/iio/trigger.h>
+#include <linux/iio/trigger_consumer.h>
+#include <linux/iio/triggered_buffer.h>
+#include <linux/pm_runtime.h>
+
+#define ATLAS_REGMAP_NAME "atlas_ph_regmap"
+#define ATLAS_DRV_NAME "atlas_ph"
+
+#define ATLAS_REG_DEV_TYPE 0x00
+#define ATLAS_REG_DEV_VERSION 0x01
+
+#define ATLAS_REG_INT_CONTROL 0x04
+#define ATLAS_REG_INT_CONTROL_EN BIT(3)
+
+#define ATLAS_REG_PWR_CONTROL 0x06
+
+#define ATLAS_REG_CALIB_STATUS 0x0d
+#define ATLAS_REG_CALIB_STATUS_MASK 0x07
+#define ATLAS_REG_CALIB_STATUS_LOW BIT(0)
+#define ATLAS_REG_CALIB_STATUS_MID BIT(1)
+#define ATLAS_REG_CALIB_STATUS_HIGH BIT(2)
+
+#define ATLAS_REG_TEMP_DATA_1 0x0e
+#define ATLAS_REG_TEMP_DATA_2 0x0f
+#define ATLAS_REG_TEMP_DATA_3 0x10
+#define ATLAS_REG_TEMP_DATA_4 0x11
+#define ATLAS_REG_PH_DATA 0x16
+
+#define ATLAS_PH_INT_TIME_IN_US 450000
+
+struct atlas_data {
+ struct i2c_client *client;
+ struct iio_trigger *trig;
+ struct regmap *regmap;
+ struct irq_work work;
+
+ __be32 buffer[4]; /* 32-bit pH data + 32-bit pad + 64-bit timestamp */
+};
+
+static bool atlas_is_volatile_reg(struct device *dev, unsigned int reg)
+{
+ switch (reg) {
+ case ATLAS_REG_INT_CONTROL:
+ case ATLAS_REG_TEMP_DATA_1:
+ case ATLAS_REG_TEMP_DATA_2:
+ case ATLAS_REG_TEMP_DATA_3:
+ case ATLAS_REG_TEMP_DATA_4:
+ return true;
+ }
+
+ return false;
+}
+
+static const struct regmap_config atlas_regmap_config = {
+ .name = ATLAS_REGMAP_NAME,
+
+ .reg_bits = 8,
+ .val_bits = 8,
+
+ .volatile_reg = atlas_is_volatile_reg,
+ .max_register = ATLAS_REG_PH_DATA + 4,
+ .cache_type = REGCACHE_FLAT,
+};
+
+static const struct iio_chan_spec atlas_channels[] = {
+ {
+ .type = IIO_PH,
+ .info_mask_separate =
+ BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE),
+ .scan_index = 0,
+ .scan_type = {
+ .sign = 'u',
+ .realbits = 32,
+ .storagebits = 32,
+ .endianness = IIO_BE,
+ },
+ },
+ IIO_CHAN_SOFT_TIMESTAMP(1),
+ {
+ .type = IIO_TEMP,
+ .address = ATLAS_REG_TEMP_DATA_1,
+ .info_mask_separate =
+ BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE),
+ .output = 1,
+ .scan_index = -1
+ },
+};
+
+static int atlas_set_powermode(struct atlas_data *data, int on)
+{
+ return regmap_write(data->regmap, ATLAS_REG_PWR_CONTROL, on);
+}
+
+static int atlas_set_interrupt(struct atlas_data *data, bool state)
+{
+ return regmap_update_bits(data->regmap, ATLAS_REG_INT_CONTROL,
+ ATLAS_REG_INT_CONTROL_EN,
+ state ? ATLAS_REG_INT_CONTROL_EN : 0);
+}
+
+static int atlas_buffer_postenable(struct iio_dev *indio_dev)
+{
+ struct atlas_data *data = iio_priv(indio_dev);
+ int ret;
+
+ ret = iio_triggered_buffer_postenable(indio_dev);
+ if (ret)
+ return ret;
+
+ ret = pm_runtime_get_sync(&data->client->dev);
+ if (ret < 0) {
+ pm_runtime_put_noidle(&data->client->dev);
+ return ret;
+ }
+
+ return atlas_set_interrupt(data, true);
+}
+
+static int atlas_buffer_predisable(struct iio_dev *indio_dev)
+{
+ struct atlas_data *data = iio_priv(indio_dev);
+ int ret;
+
+ ret = iio_triggered_buffer_predisable(indio_dev);
+ if (ret)
+ return ret;
+
+ ret = atlas_set_interrupt(data, false);
+ if (ret)
+ return ret;
+
+ pm_runtime_mark_last_busy(&data->client->dev);
+ return pm_runtime_put_autosuspend(&data->client->dev);
+}
+
+static const struct iio_trigger_ops atlas_interrupt_trigger_ops = {
+ .owner = THIS_MODULE,
+};
+
+static const struct iio_buffer_setup_ops atlas_buffer_setup_ops = {
+ .postenable = atlas_buffer_postenable,
+ .predisable = atlas_buffer_predisable,
+};
+
+static void atlas_work_handler(struct irq_work *work)
+{
+ struct atlas_data *data = container_of(work, struct atlas_data, work);
+
+ iio_trigger_poll(data->trig);
+}
+
+static irqreturn_t atlas_trigger_handler(int irq, void *private)
+{
+ struct iio_poll_func *pf = private;
+ struct iio_dev *indio_dev = pf->indio_dev;
+ struct atlas_data *data = iio_priv(indio_dev);
+ int ret;
+
+ ret = i2c_smbus_read_i2c_block_data(data->client, ATLAS_REG_PH_DATA,
+ sizeof(data->buffer[0]), (u8 *) &data->buffer);
+
+ if (ret > 0)
+ iio_push_to_buffers_with_timestamp(indio_dev, data->buffer,
+ iio_get_time_ns());
+
+ iio_trigger_notify_done(indio_dev->trig);
+
+ return IRQ_HANDLED;
+}
+
+static irqreturn_t atlas_interrupt_handler(int irq, void *private)
+{
+ struct iio_dev *indio_dev = private;
+ struct atlas_data *data = iio_priv(indio_dev);
+
+ irq_work_queue(&data->work);
+
+ return IRQ_HANDLED;
+}
+
+static int atlas_read_ph_measurement(struct atlas_data *data, __be32 *val)
+{
+ struct device *dev = &data->client->dev;
+ int suspended = pm_runtime_suspended(dev);
+ int ret, cnt = 0;
+
+ ret = pm_runtime_get_sync(dev);
+ if (ret < 0) {
+ pm_runtime_put_noidle(dev);
+ return ret;
+ }
+
+ if (suspended)
+ usleep_range(ATLAS_PH_INT_TIME_IN_US,
+ ATLAS_PH_INT_TIME_IN_US + 100000);
+
+ cnt = i2c_smbus_read_i2c_block_data(data->client, ATLAS_REG_PH_DATA,
+ sizeof(*val), (u8 *) val);
+
+ pm_runtime_mark_last_busy(dev);
+ ret = pm_runtime_put_autosuspend(dev);
+ if (ret)
+ return ret;
+
+ return cnt == sizeof(*val) ? 0 : -EINVAL;
+}
+
+static int atlas_read_raw(struct iio_dev *indio_dev,
+ struct iio_chan_spec const *chan,
+ int *val, int *val2, long mask)
+{
+ struct atlas_data *data = iio_priv(indio_dev);
+
+ switch (mask) {
+ case IIO_CHAN_INFO_RAW: {
+ int ret;
+ __be32 reg;
+
+ mutex_lock(&indio_dev->mlock);
+
+ if (iio_buffer_enabled(indio_dev)) {
+ ret = -EBUSY;
+ goto error_busy;
+ }
+
+ switch (chan->type) {
+ case IIO_TEMP:
+ ret = regmap_bulk_read(data->regmap, chan->address,
+ (u8 *) ®, sizeof(reg));
+ break;
+ case IIO_PH:
+ ret = atlas_read_ph_measurement(data, ®);
+ break;
+ default:
+ ret = -EINVAL;
+ }
+
+ if (!ret) {
+ *val = be32_to_cpu(reg);
+ ret = IIO_VAL_INT;
+ }
+error_busy:
+ mutex_unlock(&indio_dev->mlock);
+ return ret;
+ }
+ case IIO_CHAN_INFO_SCALE:
+ *val = 0; /* 0.001 */
+ *val2 = 1000;
+ return IIO_VAL_INT_PLUS_MICRO;
+ }
+
+ return -EINVAL;
+}
+
+static int atlas_write_raw(struct iio_dev *indio_dev,
+ struct iio_chan_spec const *chan,
+ int val, int val2, long mask)
+{
+ struct atlas_data *data = iio_priv(indio_dev);
+ __be32 reg = cpu_to_be32(val);
+
+ if (val2 > 0 || val < 0 || val > 20000)
+ return -EINVAL;
+
+ if (mask != IIO_CHAN_INFO_RAW || chan->type != IIO_TEMP)
+ return -EINVAL;
+
+ return regmap_bulk_write(data->regmap, chan->address, ®, 4);
+}
+
+static const struct iio_info atlas_info = {
+ .driver_module = THIS_MODULE,
+ .read_raw = atlas_read_raw,
+ .write_raw = atlas_write_raw,
+};
+
+static int atlas_check_calibration(struct atlas_data *data)
+{
+ struct device *dev = &data->client->dev;
+ int ret;
+ unsigned int val;
+
+ ret = regmap_read(data->regmap, ATLAS_REG_CALIB_STATUS, &val);
+ if (ret)
+ return ret;
+
+ if (!(val & ATLAS_REG_CALIB_STATUS_MASK)) {
+ dev_warn(dev, "device has not been calibrated");
+ return 0;
+ }
+
+ if (!(val & ATLAS_REG_CALIB_STATUS_LOW))
+ dev_warn(dev, "device missing low point calibration");
+
+ if (!(val & ATLAS_REG_CALIB_STATUS_MID))
+ dev_warn(dev, "device missing mid point calibration");
+
+ if (!(val & ATLAS_REG_CALIB_STATUS_HIGH))
+ dev_warn(dev, "device missing high point calibration");
+
+ return 0;
+};
+
+static int atlas_probe(struct i2c_client *client,
+ const struct i2c_device_id *id)
+{
+ struct atlas_data *data;
+ struct iio_trigger *trig;
+ struct iio_dev *indio_dev;
+ int ret;
+
+ indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
+ if (!indio_dev)
+ return -ENOMEM;
+
+ indio_dev->info = &atlas_info;
+ indio_dev->name = ATLAS_DRV_NAME;
+ indio_dev->channels = atlas_channels;
+ indio_dev->num_channels = ARRAY_SIZE(atlas_channels);
+ indio_dev->modes = INDIO_BUFFER_SOFTWARE | INDIO_DIRECT_MODE;
+ indio_dev->dev.parent = &client->dev;
+
+ trig = devm_iio_trigger_alloc(&client->dev, "%s-dev%d",
+ indio_dev->name, indio_dev->id);
+
+ if (!trig)
+ return -ENOMEM;
+
+ data = iio_priv(indio_dev);
+ data->client = client;
+ data->trig = trig;
+ trig->dev.parent = indio_dev->dev.parent;
+ trig->ops = &atlas_interrupt_trigger_ops;
+ iio_trigger_set_drvdata(trig, indio_dev);
+
+ i2c_set_clientdata(client, indio_dev);
+
+ data->regmap = devm_regmap_init_i2c(client, &atlas_regmap_config);
+ if (IS_ERR(data->regmap)) {
+ dev_err(&client->dev, "regmap initialization failed\n");
+ return PTR_ERR(data->regmap);
+ }
+
+ ret = pm_runtime_set_active(&client->dev);
+ if (ret)
+ return ret;
+
+ if (client->irq <= 0) {
+ dev_err(&client->dev, "no valid irq defined\n");
+ return -EINVAL;
+ }
+
+ ret = atlas_check_calibration(data);
+ if (ret)
+ return ret;
+
+ ret = iio_trigger_register(trig);
+ if (ret) {
+ dev_err(&client->dev, "failed to register trigger\n");
+ return ret;
+ }
+
+ ret = iio_triggered_buffer_setup(indio_dev, &iio_pollfunc_store_time,
+ &atlas_trigger_handler, &atlas_buffer_setup_ops);
+ if (ret) {
+ dev_err(&client->dev, "cannot setup iio trigger\n");
+ goto unregister_trigger;
+ }
+
+ init_irq_work(&data->work, atlas_work_handler);
+
+ ret = devm_request_threaded_irq(&client->dev, client->irq,
+ NULL, atlas_interrupt_handler,
+ IRQF_TRIGGER_RISING |
+ IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
+ "atlas_irq",
+ indio_dev);
+ if (ret) {
+ dev_err(&client->dev, "request irq (%d) failed\n", client->irq);
+ goto unregister_buffer;
+ }
+
+ ret = atlas_set_powermode(data, 1);
+ if (ret) {
+ dev_err(&client->dev, "cannot power device on");
+ goto unregister_buffer;
+ }
+
+ pm_runtime_enable(&client->dev);
+ pm_runtime_set_autosuspend_delay(&client->dev, 2500);
+ pm_runtime_use_autosuspend(&client->dev);
+
+ ret = iio_device_register(indio_dev);
+ if (ret) {
+ dev_err(&client->dev, "unable to register device\n");
+ goto unregister_buffer;
+ }
+
+ return 0;
+
+unregister_buffer:
+ iio_triggered_buffer_cleanup(indio_dev);
+
+unregister_trigger:
+ iio_trigger_unregister(data->trig);
+
+ return ret;
+}
+
+static int atlas_remove(struct i2c_client *client)
+{
+ struct iio_dev *indio_dev = i2c_get_clientdata(client);
+ struct atlas_data *data = iio_priv(indio_dev);
+
+ iio_device_unregister(indio_dev);
+ iio_triggered_buffer_cleanup(indio_dev);
+ iio_trigger_unregister(data->trig);
+
+ pm_runtime_disable(&client->dev);
+ pm_runtime_set_suspended(&client->dev);
+ pm_runtime_put_noidle(&client->dev);
+
+ return atlas_set_powermode(data, 0);
+}
+
+#ifdef CONFIG_PM
+static int atlas_runtime_suspend(struct device *dev)
+{
+ struct atlas_data *data =
+ iio_priv(i2c_get_clientdata(to_i2c_client(dev)));
+
+ return atlas_set_powermode(data, 0);
+}
+
+static int atlas_runtime_resume(struct device *dev)
+{
+ struct atlas_data *data =
+ iio_priv(i2c_get_clientdata(to_i2c_client(dev)));
+
+ return atlas_set_powermode(data, 1);
+}
+#endif
+
+static const struct dev_pm_ops atlas_pm_ops = {
+ SET_RUNTIME_PM_OPS(atlas_runtime_suspend,
+ atlas_runtime_resume, NULL)
+};
+
+static const struct i2c_device_id atlas_id[] = {
+ { "atlas-ph-sm", 0 },
+ {}
+};
+MODULE_DEVICE_TABLE(i2c, atlas_id);
+
+static const struct of_device_id atlas_dt_ids[] = {
+ { .compatible = "atlas,ph-sm" },
+ { }
+};
+MODULE_DEVICE_TABLE(of, atlas_dt_ids);
+
+static struct i2c_driver atlas_driver = {
+ .driver = {
+ .name = ATLAS_DRV_NAME,
+ .of_match_table = of_match_ptr(atlas_dt_ids),
+ .pm = &atlas_pm_ops,
+ },
+ .probe = atlas_probe,
+ .remove = atlas_remove,
+ .id_table = atlas_id,
+};
+module_i2c_driver(atlas_driver);
+
+MODULE_AUTHOR("Matt Ranostay <mranostay@gmail.com>");
+MODULE_DESCRIPTION("Atlas Scientific pH-SM sensor");
+MODULE_LICENSE("GPL");
--
2.7.0.rc3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v3 3/3] iio: chemical: add Atlas pH-SM sensor support
2016-01-18 15:28 ` [PATCH v3 3/3] iio: chemical: add Atlas pH-SM sensor support Matt Ranostay
@ 2016-01-18 19:28 ` Peter Meerwald-Stadler
2016-01-19 1:04 ` Matt Ranostay
0 siblings, 1 reply; 6+ messages in thread
From: Peter Meerwald-Stadler @ 2016-01-18 19:28 UTC (permalink / raw)
To: Matt Ranostay; +Cc: jic23, linux-iio
> Add support for the Atlas Scientific pH-SM chemical sensor that can
> detect pH levels of solutions in the range of 0-14.
looks mostly good to me
why is regmap_bulk_read() used for _TEMP, but
i2c_smbus_read_i2c_block_data() for _PH?
I2C_FUNC_SMBUS_READ_BLOCK_DATA may not be supported, could check in
_probe()
> Signed-off-by: Matt Ranostay <mranostay@gmail.com>
> ---
> .../bindings/iio/chemical/atlas,ph-sm.txt | 22 +
> drivers/iio/chemical/Kconfig | 13 +
> drivers/iio/chemical/Makefile | 1 +
> drivers/iio/chemical/atlas-ph-sensor.c | 505 +++++++++++++++++++++
> 4 files changed, 541 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
> create mode 100644 drivers/iio/chemical/atlas-ph-sensor.c
>
> diff --git a/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt b/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
> new file mode 100644
> index 0000000..cffa190
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
> @@ -0,0 +1,22 @@
> +* Atlas Scientific pH-SM OEM sensor
> +
> +http://www.atlas-scientific.com/_files/_datasheets/_oem/pH_oem_datasheet.pdf
> +
> +Required properties:
> +
> + - compatible: must be "atlas,ph-sm"
> + - reg: the I2C address of the sensor
> + - interrupt-parent: should be the phandle for the interrupt controller
> + - interrupts: the sole interrupt generated by the device
> +
> + Refer to interrupt-controller/interrupts.txt for generic interrupt client
> + node bindings.
> +
> +Example:
> +
> +atlas@65 {
> + compatible = "atlas,ph-sm";
> + reg = <0x65>;
> + interrupt-parent = <&gpio1>;
> + interrupts = <16 2>;
> +};
> diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig
> index f16de61..ce7cd1370 100644
> --- a/drivers/iio/chemical/Kconfig
> +++ b/drivers/iio/chemical/Kconfig
> @@ -4,6 +4,19 @@
>
> menu "Chemical Sensors"
>
> +config ATLAS_PH_SENSOR
> + tristate "Atlas Scientific OEM pH-SM sensor"
> + depends on I2C
> + select REGMAP_I2C
> + select IIO_BUFFER
> + select IIO_TRIGGERED_BUFFER
> + help
> + Say Y here to build I2C interface support for the Atlas
> + Scientific OEM pH-SM sensor.
> +
> + To compile this driver as module, choose M here: the
> + module will be called atlas-ph-sensor.
> +
> config IAQCORE
> tristate "AMS iAQ-Core VOC sensors"
> depends on I2C
> diff --git a/drivers/iio/chemical/Makefile b/drivers/iio/chemical/Makefile
> index 167861f..b02202b 100644
> --- a/drivers/iio/chemical/Makefile
> +++ b/drivers/iio/chemical/Makefile
> @@ -3,5 +3,6 @@
> #
>
> # When adding new entries keep the list in alphabetical order
> +obj-$(CONFIG_ATLAS_PH_SENSOR) += atlas-ph-sensor.o
> obj-$(CONFIG_IAQCORE) += ams-iaq-core.o
> obj-$(CONFIG_VZ89X) += vz89x.o
> diff --git a/drivers/iio/chemical/atlas-ph-sensor.c b/drivers/iio/chemical/atlas-ph-sensor.c
> new file mode 100644
> index 0000000..775e85c
> --- /dev/null
> +++ b/drivers/iio/chemical/atlas-ph-sensor.c
> @@ -0,0 +1,505 @@
> +/*
> + * atlas-ph-sensor.c - Support for Atlas Scientific OEM pH-SM sensor
> + *
> + * Copyright (C) 2015 Matt Ranostay <mranostay@gmail.com>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License as published by
> + * the Free Software Foundation; either version 2 of the License, or
> + * (at your option) any later version.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> + *
> + */
> +
> +#include <linux/module.h>
> +#include <linux/init.h>
> +#include <linux/interrupt.h>
> +#include <linux/delay.h>
> +#include <linux/mutex.h>
> +#include <linux/err.h>
> +#include <linux/irq.h>
> +#include <linux/irq_work.h>
> +#include <linux/gpio.h>
> +#include <linux/i2c.h>
> +#include <linux/regmap.h>
> +#include <linux/iio/iio.h>
> +#include <linux/iio/buffer.h>
> +#include <linux/iio/trigger.h>
> +#include <linux/iio/trigger_consumer.h>
> +#include <linux/iio/triggered_buffer.h>
> +#include <linux/pm_runtime.h>
> +
> +#define ATLAS_REGMAP_NAME "atlas_ph_regmap"
> +#define ATLAS_DRV_NAME "atlas_ph"
> +
> +#define ATLAS_REG_DEV_TYPE 0x00
> +#define ATLAS_REG_DEV_VERSION 0x01
> +
> +#define ATLAS_REG_INT_CONTROL 0x04
> +#define ATLAS_REG_INT_CONTROL_EN BIT(3)
> +
> +#define ATLAS_REG_PWR_CONTROL 0x06
> +
> +#define ATLAS_REG_CALIB_STATUS 0x0d
> +#define ATLAS_REG_CALIB_STATUS_MASK 0x07
> +#define ATLAS_REG_CALIB_STATUS_LOW BIT(0)
> +#define ATLAS_REG_CALIB_STATUS_MID BIT(1)
> +#define ATLAS_REG_CALIB_STATUS_HIGH BIT(2)
> +
> +#define ATLAS_REG_TEMP_DATA_1 0x0e
> +#define ATLAS_REG_TEMP_DATA_2 0x0f
> +#define ATLAS_REG_TEMP_DATA_3 0x10
> +#define ATLAS_REG_TEMP_DATA_4 0x11
> +#define ATLAS_REG_PH_DATA 0x16
> +
> +#define ATLAS_PH_INT_TIME_IN_US 450000
> +
> +struct atlas_data {
> + struct i2c_client *client;
> + struct iio_trigger *trig;
> + struct regmap *regmap;
> + struct irq_work work;
> +
> + __be32 buffer[4]; /* 32-bit pH data + 32-bit pad + 64-bit timestamp */
> +};
> +
> +static bool atlas_is_volatile_reg(struct device *dev, unsigned int reg)
> +{
> + switch (reg) {
> + case ATLAS_REG_INT_CONTROL:
> + case ATLAS_REG_TEMP_DATA_1:
> + case ATLAS_REG_TEMP_DATA_2:
> + case ATLAS_REG_TEMP_DATA_3:
> + case ATLAS_REG_TEMP_DATA_4:
> + return true;
> + }
> +
> + return false;
> +}
> +
> +static const struct regmap_config atlas_regmap_config = {
> + .name = ATLAS_REGMAP_NAME,
> +
> + .reg_bits = 8,
> + .val_bits = 8,
> +
> + .volatile_reg = atlas_is_volatile_reg,
> + .max_register = ATLAS_REG_PH_DATA + 4,
> + .cache_type = REGCACHE_FLAT,
> +};
> +
> +static const struct iio_chan_spec atlas_channels[] = {
> + {
> + .type = IIO_PH,
> + .info_mask_separate =
> + BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE),
> + .scan_index = 0,
> + .scan_type = {
> + .sign = 'u',
> + .realbits = 32,
> + .storagebits = 32,
> + .endianness = IIO_BE,
> + },
> + },
> + IIO_CHAN_SOFT_TIMESTAMP(1),
> + {
> + .type = IIO_TEMP,
> + .address = ATLAS_REG_TEMP_DATA_1,
> + .info_mask_separate =
> + BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE),
> + .output = 1,
> + .scan_index = -1
> + },
> +};
> +
> +static int atlas_set_powermode(struct atlas_data *data, int on)
maybe bool on
> +{
> + return regmap_write(data->regmap, ATLAS_REG_PWR_CONTROL, on);
> +}
> +
> +static int atlas_set_interrupt(struct atlas_data *data, bool state)
> +{
> + return regmap_update_bits(data->regmap, ATLAS_REG_INT_CONTROL,
> + ATLAS_REG_INT_CONTROL_EN,
> + state ? ATLAS_REG_INT_CONTROL_EN : 0);
> +}
> +
> +static int atlas_buffer_postenable(struct iio_dev *indio_dev)
> +{
> + struct atlas_data *data = iio_priv(indio_dev);
> + int ret;
> +
> + ret = iio_triggered_buffer_postenable(indio_dev);
> + if (ret)
> + return ret;
> +
> + ret = pm_runtime_get_sync(&data->client->dev);
> + if (ret < 0) {
> + pm_runtime_put_noidle(&data->client->dev);
> + return ret;
> + }
> +
> + return atlas_set_interrupt(data, true);
> +}
> +
> +static int atlas_buffer_predisable(struct iio_dev *indio_dev)
> +{
> + struct atlas_data *data = iio_priv(indio_dev);
> + int ret;
> +
> + ret = iio_triggered_buffer_predisable(indio_dev);
> + if (ret)
> + return ret;
> +
> + ret = atlas_set_interrupt(data, false);
> + if (ret)
> + return ret;
> +
> + pm_runtime_mark_last_busy(&data->client->dev);
> + return pm_runtime_put_autosuspend(&data->client->dev);
> +}
> +
> +static const struct iio_trigger_ops atlas_interrupt_trigger_ops = {
> + .owner = THIS_MODULE,
> +};
> +
> +static const struct iio_buffer_setup_ops atlas_buffer_setup_ops = {
> + .postenable = atlas_buffer_postenable,
> + .predisable = atlas_buffer_predisable,
> +};
> +
> +static void atlas_work_handler(struct irq_work *work)
> +{
> + struct atlas_data *data = container_of(work, struct atlas_data, work);
> +
> + iio_trigger_poll(data->trig);
> +}
> +
> +static irqreturn_t atlas_trigger_handler(int irq, void *private)
> +{
> + struct iio_poll_func *pf = private;
> + struct iio_dev *indio_dev = pf->indio_dev;
> + struct atlas_data *data = iio_priv(indio_dev);
> + int ret;
> +
> + ret = i2c_smbus_read_i2c_block_data(data->client, ATLAS_REG_PH_DATA,
> + sizeof(data->buffer[0]), (u8 *) &data->buffer);
> +
> + if (ret > 0)
> + iio_push_to_buffers_with_timestamp(indio_dev, data->buffer,
> + iio_get_time_ns());
> +
> + iio_trigger_notify_done(indio_dev->trig);
> +
> + return IRQ_HANDLED;
> +}
> +
> +static irqreturn_t atlas_interrupt_handler(int irq, void *private)
> +{
> + struct iio_dev *indio_dev = private;
> + struct atlas_data *data = iio_priv(indio_dev);
> +
> + irq_work_queue(&data->work);
> +
> + return IRQ_HANDLED;
> +}
> +
> +static int atlas_read_ph_measurement(struct atlas_data *data, __be32 *val)
> +{
> + struct device *dev = &data->client->dev;
> + int suspended = pm_runtime_suspended(dev);
> + int ret, cnt = 0;
> +
> + ret = pm_runtime_get_sync(dev);
> + if (ret < 0) {
> + pm_runtime_put_noidle(dev);
> + return ret;
> + }
> +
> + if (suspended)
> + usleep_range(ATLAS_PH_INT_TIME_IN_US,
> + ATLAS_PH_INT_TIME_IN_US + 100000);
> +
> + cnt = i2c_smbus_read_i2c_block_data(data->client, ATLAS_REG_PH_DATA,
> + sizeof(*val), (u8 *) val);
> +
> + pm_runtime_mark_last_busy(dev);
> + ret = pm_runtime_put_autosuspend(dev);
> + if (ret)
> + return ret;
> +
> + return cnt == sizeof(*val) ? 0 : -EINVAL;
> +}
> +
> +static int atlas_read_raw(struct iio_dev *indio_dev,
> + struct iio_chan_spec const *chan,
> + int *val, int *val2, long mask)
> +{
> + struct atlas_data *data = iio_priv(indio_dev);
> +
> + switch (mask) {
> + case IIO_CHAN_INFO_RAW: {
> + int ret;
> + __be32 reg;
> +
> + mutex_lock(&indio_dev->mlock);
> +
> + if (iio_buffer_enabled(indio_dev)) {
> + ret = -EBUSY;
> + goto error_busy;
> + }
> +
> + switch (chan->type) {
> + case IIO_TEMP:
> + ret = regmap_bulk_read(data->regmap, chan->address,
> + (u8 *) ®, sizeof(reg));
> + break;
> + case IIO_PH:
> + ret = atlas_read_ph_measurement(data, ®);
> + break;
> + default:
> + ret = -EINVAL;
> + }
> +
> + if (!ret) {
> + *val = be32_to_cpu(reg);
> + ret = IIO_VAL_INT;
> + }
> +error_busy:
> + mutex_unlock(&indio_dev->mlock);
> + return ret;
> + }
> + case IIO_CHAN_INFO_SCALE:
> + *val = 0; /* 0.001 */
> + *val2 = 1000;
> + return IIO_VAL_INT_PLUS_MICRO;
> + }
> +
> + return -EINVAL;
> +}
> +
> +static int atlas_write_raw(struct iio_dev *indio_dev,
> + struct iio_chan_spec const *chan,
> + int val, int val2, long mask)
> +{
> + struct atlas_data *data = iio_priv(indio_dev);
> + __be32 reg = cpu_to_be32(val);
> +
> + if (val2 > 0 || val < 0 || val > 20000)
probably clearer to check val2 != 0
> + return -EINVAL;
> +
> + if (mask != IIO_CHAN_INFO_RAW || chan->type != IIO_TEMP)
> + return -EINVAL;
> +
> + return regmap_bulk_write(data->regmap, chan->address, ®, 4);
everywhere else sizeof(__be32) instead of 4
> +}
> +
> +static const struct iio_info atlas_info = {
> + .driver_module = THIS_MODULE,
> + .read_raw = atlas_read_raw,
> + .write_raw = atlas_write_raw,
> +};
> +
> +static int atlas_check_calibration(struct atlas_data *data)
> +{
> + struct device *dev = &data->client->dev;
> + int ret;
> + unsigned int val;
> +
> + ret = regmap_read(data->regmap, ATLAS_REG_CALIB_STATUS, &val);
> + if (ret)
> + return ret;
> +
> + if (!(val & ATLAS_REG_CALIB_STATUS_MASK)) {
> + dev_warn(dev, "device has not been calibrated");
\n at the end
> + return 0;
maybe an error code here?
> + }
> +
> + if (!(val & ATLAS_REG_CALIB_STATUS_LOW))
> + dev_warn(dev, "device missing low point calibration");
> +
> + if (!(val & ATLAS_REG_CALIB_STATUS_MID))
> + dev_warn(dev, "device missing mid point calibration");
> +
> + if (!(val & ATLAS_REG_CALIB_STATUS_HIGH))
> + dev_warn(dev, "device missing high point calibration");
> +
> + return 0;
> +};
> +
> +static int atlas_probe(struct i2c_client *client,
> + const struct i2c_device_id *id)
> +{
> + struct atlas_data *data;
> + struct iio_trigger *trig;
> + struct iio_dev *indio_dev;
> + int ret;
> +
> + indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
> + if (!indio_dev)
> + return -ENOMEM;
> +
> + indio_dev->info = &atlas_info;
> + indio_dev->name = ATLAS_DRV_NAME;
> + indio_dev->channels = atlas_channels;
> + indio_dev->num_channels = ARRAY_SIZE(atlas_channels);
> + indio_dev->modes = INDIO_BUFFER_SOFTWARE | INDIO_DIRECT_MODE;
> + indio_dev->dev.parent = &client->dev;
> +
> + trig = devm_iio_trigger_alloc(&client->dev, "%s-dev%d",
> + indio_dev->name, indio_dev->id);
> +
> + if (!trig)
> + return -ENOMEM;
> +
> + data = iio_priv(indio_dev);
> + data->client = client;
> + data->trig = trig;
> + trig->dev.parent = indio_dev->dev.parent;
> + trig->ops = &atlas_interrupt_trigger_ops;
> + iio_trigger_set_drvdata(trig, indio_dev);
> +
> + i2c_set_clientdata(client, indio_dev);
> +
> + data->regmap = devm_regmap_init_i2c(client, &atlas_regmap_config);
> + if (IS_ERR(data->regmap)) {
> + dev_err(&client->dev, "regmap initialization failed\n");
> + return PTR_ERR(data->regmap);
> + }
> +
> + ret = pm_runtime_set_active(&client->dev);
> + if (ret)
> + return ret;
> +
> + if (client->irq <= 0) {
> + dev_err(&client->dev, "no valid irq defined\n");
> + return -EINVAL;
> + }
> +
> + ret = atlas_check_calibration(data);
> + if (ret)
> + return ret;
> +
> + ret = iio_trigger_register(trig);
> + if (ret) {
> + dev_err(&client->dev, "failed to register trigger\n");
> + return ret;
> + }
> +
> + ret = iio_triggered_buffer_setup(indio_dev, &iio_pollfunc_store_time,
> + &atlas_trigger_handler, &atlas_buffer_setup_ops);
> + if (ret) {
> + dev_err(&client->dev, "cannot setup iio trigger\n");
> + goto unregister_trigger;
> + }
> +
> + init_irq_work(&data->work, atlas_work_handler);
> +
> + ret = devm_request_threaded_irq(&client->dev, client->irq,
> + NULL, atlas_interrupt_handler,
> + IRQF_TRIGGER_RISING |
> + IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
> + "atlas_irq",
> + indio_dev);
> + if (ret) {
> + dev_err(&client->dev, "request irq (%d) failed\n", client->irq);
> + goto unregister_buffer;
> + }
> +
> + ret = atlas_set_powermode(data, 1);
> + if (ret) {
> + dev_err(&client->dev, "cannot power device on");
\n
> + goto unregister_buffer;
> + }
> +
> + pm_runtime_enable(&client->dev);
> + pm_runtime_set_autosuspend_delay(&client->dev, 2500);
> + pm_runtime_use_autosuspend(&client->dev);
> +
> + ret = iio_device_register(indio_dev);
> + if (ret) {
> + dev_err(&client->dev, "unable to register device\n");
> + goto unregister_buffer;
> + }
> +
> + return 0;
> +
> +unregister_buffer:
> + iio_triggered_buffer_cleanup(indio_dev);
> +
> +unregister_trigger:
> + iio_trigger_unregister(data->trig);
> +
> + return ret;
> +}
> +
> +static int atlas_remove(struct i2c_client *client)
> +{
> + struct iio_dev *indio_dev = i2c_get_clientdata(client);
> + struct atlas_data *data = iio_priv(indio_dev);
> +
> + iio_device_unregister(indio_dev);
> + iio_triggered_buffer_cleanup(indio_dev);
> + iio_trigger_unregister(data->trig);
> +
> + pm_runtime_disable(&client->dev);
> + pm_runtime_set_suspended(&client->dev);
> + pm_runtime_put_noidle(&client->dev);
> +
> + return atlas_set_powermode(data, 0);
> +}
> +
> +#ifdef CONFIG_PM
> +static int atlas_runtime_suspend(struct device *dev)
> +{
> + struct atlas_data *data =
> + iio_priv(i2c_get_clientdata(to_i2c_client(dev)));
> +
> + return atlas_set_powermode(data, 0);
> +}
> +
> +static int atlas_runtime_resume(struct device *dev)
> +{
> + struct atlas_data *data =
> + iio_priv(i2c_get_clientdata(to_i2c_client(dev)));
> +
> + return atlas_set_powermode(data, 1);
> +}
> +#endif
> +
> +static const struct dev_pm_ops atlas_pm_ops = {
> + SET_RUNTIME_PM_OPS(atlas_runtime_suspend,
> + atlas_runtime_resume, NULL)
> +};
> +
> +static const struct i2c_device_id atlas_id[] = {
> + { "atlas-ph-sm", 0 },
> + {}
> +};
> +MODULE_DEVICE_TABLE(i2c, atlas_id);
> +
> +static const struct of_device_id atlas_dt_ids[] = {
> + { .compatible = "atlas,ph-sm" },
> + { }
> +};
> +MODULE_DEVICE_TABLE(of, atlas_dt_ids);
> +
> +static struct i2c_driver atlas_driver = {
> + .driver = {
> + .name = ATLAS_DRV_NAME,
> + .of_match_table = of_match_ptr(atlas_dt_ids),
> + .pm = &atlas_pm_ops,
> + },
> + .probe = atlas_probe,
> + .remove = atlas_remove,
> + .id_table = atlas_id,
> +};
> +module_i2c_driver(atlas_driver);
> +
> +MODULE_AUTHOR("Matt Ranostay <mranostay@gmail.com>");
> +MODULE_DESCRIPTION("Atlas Scientific pH-SM sensor");
> +MODULE_LICENSE("GPL");
>
--
Peter Meerwald-Stadler
+43-664-2444418 (mobile)
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3 3/3] iio: chemical: add Atlas pH-SM sensor support
2016-01-18 19:28 ` Peter Meerwald-Stadler
@ 2016-01-19 1:04 ` Matt Ranostay
0 siblings, 0 replies; 6+ messages in thread
From: Matt Ranostay @ 2016-01-19 1:04 UTC (permalink / raw)
To: Peter Meerwald-Stadler; +Cc: Jonathan Cameron, linux-iio@vger.kernel.org
On Mon, Jan 18, 2016 at 11:28 AM, Peter Meerwald-Stadler
<pmeerw@pmeerw.net> wrote:
>
>> Add support for the Atlas Scientific pH-SM chemical sensor that can
>> detect pH levels of solutions in the range of 0-14.
>
> looks mostly good to me
>
> why is regmap_bulk_read() used for _TEMP, but
> i2c_smbus_read_i2c_block_data() for _PH?
Gah yeah have no excuse besides I forgot i was using
i2c_smbus_read_i2c_block_data beforehand. Will fix.
>
> I2C_FUNC_SMBUS_READ_BLOCK_DATA may not be supported, could check in
> _probe()
Got it.
>
>> Signed-off-by: Matt Ranostay <mranostay@gmail.com>
>> ---
>> .../bindings/iio/chemical/atlas,ph-sm.txt | 22 +
>> drivers/iio/chemical/Kconfig | 13 +
>> drivers/iio/chemical/Makefile | 1 +
>> drivers/iio/chemical/atlas-ph-sensor.c | 505 +++++++++++++++++++++
>> 4 files changed, 541 insertions(+)
>> create mode 100644 Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
>> create mode 100644 drivers/iio/chemical/atlas-ph-sensor.c
>>
>> diff --git a/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt b/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
>> new file mode 100644
>> index 0000000..cffa190
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/iio/chemical/atlas,ph-sm.txt
>> @@ -0,0 +1,22 @@
>> +* Atlas Scientific pH-SM OEM sensor
>> +
>> +http://www.atlas-scientific.com/_files/_datasheets/_oem/pH_oem_datasheet.pdf
>> +
>> +Required properties:
>> +
>> + - compatible: must be "atlas,ph-sm"
>> + - reg: the I2C address of the sensor
>> + - interrupt-parent: should be the phandle for the interrupt controller
>> + - interrupts: the sole interrupt generated by the device
>> +
>> + Refer to interrupt-controller/interrupts.txt for generic interrupt client
>> + node bindings.
>> +
>> +Example:
>> +
>> +atlas@65 {
>> + compatible = "atlas,ph-sm";
>> + reg = <0x65>;
>> + interrupt-parent = <&gpio1>;
>> + interrupts = <16 2>;
>> +};
>> diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig
>> index f16de61..ce7cd1370 100644
>> --- a/drivers/iio/chemical/Kconfig
>> +++ b/drivers/iio/chemical/Kconfig
>> @@ -4,6 +4,19 @@
>>
>> menu "Chemical Sensors"
>>
>> +config ATLAS_PH_SENSOR
>> + tristate "Atlas Scientific OEM pH-SM sensor"
>> + depends on I2C
>> + select REGMAP_I2C
>> + select IIO_BUFFER
>> + select IIO_TRIGGERED_BUFFER
>> + help
>> + Say Y here to build I2C interface support for the Atlas
>> + Scientific OEM pH-SM sensor.
>> +
>> + To compile this driver as module, choose M here: the
>> + module will be called atlas-ph-sensor.
>> +
>> config IAQCORE
>> tristate "AMS iAQ-Core VOC sensors"
>> depends on I2C
>> diff --git a/drivers/iio/chemical/Makefile b/drivers/iio/chemical/Makefile
>> index 167861f..b02202b 100644
>> --- a/drivers/iio/chemical/Makefile
>> +++ b/drivers/iio/chemical/Makefile
>> @@ -3,5 +3,6 @@
>> #
>>
>> # When adding new entries keep the list in alphabetical order
>> +obj-$(CONFIG_ATLAS_PH_SENSOR) += atlas-ph-sensor.o
>> obj-$(CONFIG_IAQCORE) += ams-iaq-core.o
>> obj-$(CONFIG_VZ89X) += vz89x.o
>> diff --git a/drivers/iio/chemical/atlas-ph-sensor.c b/drivers/iio/chemical/atlas-ph-sensor.c
>> new file mode 100644
>> index 0000000..775e85c
>> --- /dev/null
>> +++ b/drivers/iio/chemical/atlas-ph-sensor.c
>> @@ -0,0 +1,505 @@
>> +/*
>> + * atlas-ph-sensor.c - Support for Atlas Scientific OEM pH-SM sensor
>> + *
>> + * Copyright (C) 2015 Matt Ranostay <mranostay@gmail.com>
>> + *
>> + * This program is free software; you can redistribute it and/or modify
>> + * it under the terms of the GNU General Public License as published by
>> + * the Free Software Foundation; either version 2 of the License, or
>> + * (at your option) any later version.
>> + *
>> + * This program is distributed in the hope that it will be useful,
>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
>> + * GNU General Public License for more details.
>> + *
>> + */
>> +
>> +#include <linux/module.h>
>> +#include <linux/init.h>
>> +#include <linux/interrupt.h>
>> +#include <linux/delay.h>
>> +#include <linux/mutex.h>
>> +#include <linux/err.h>
>> +#include <linux/irq.h>
>> +#include <linux/irq_work.h>
>> +#include <linux/gpio.h>
>> +#include <linux/i2c.h>
>> +#include <linux/regmap.h>
>> +#include <linux/iio/iio.h>
>> +#include <linux/iio/buffer.h>
>> +#include <linux/iio/trigger.h>
>> +#include <linux/iio/trigger_consumer.h>
>> +#include <linux/iio/triggered_buffer.h>
>> +#include <linux/pm_runtime.h>
>> +
>> +#define ATLAS_REGMAP_NAME "atlas_ph_regmap"
>> +#define ATLAS_DRV_NAME "atlas_ph"
>> +
>> +#define ATLAS_REG_DEV_TYPE 0x00
>> +#define ATLAS_REG_DEV_VERSION 0x01
>> +
>> +#define ATLAS_REG_INT_CONTROL 0x04
>> +#define ATLAS_REG_INT_CONTROL_EN BIT(3)
>> +
>> +#define ATLAS_REG_PWR_CONTROL 0x06
>> +
>> +#define ATLAS_REG_CALIB_STATUS 0x0d
>> +#define ATLAS_REG_CALIB_STATUS_MASK 0x07
>> +#define ATLAS_REG_CALIB_STATUS_LOW BIT(0)
>> +#define ATLAS_REG_CALIB_STATUS_MID BIT(1)
>> +#define ATLAS_REG_CALIB_STATUS_HIGH BIT(2)
>> +
>> +#define ATLAS_REG_TEMP_DATA_1 0x0e
>> +#define ATLAS_REG_TEMP_DATA_2 0x0f
>> +#define ATLAS_REG_TEMP_DATA_3 0x10
>> +#define ATLAS_REG_TEMP_DATA_4 0x11
>> +#define ATLAS_REG_PH_DATA 0x16
>> +
>> +#define ATLAS_PH_INT_TIME_IN_US 450000
>> +
>> +struct atlas_data {
>> + struct i2c_client *client;
>> + struct iio_trigger *trig;
>> + struct regmap *regmap;
>> + struct irq_work work;
>> +
>> + __be32 buffer[4]; /* 32-bit pH data + 32-bit pad + 64-bit timestamp */
>> +};
>> +
>> +static bool atlas_is_volatile_reg(struct device *dev, unsigned int reg)
>> +{
>> + switch (reg) {
>> + case ATLAS_REG_INT_CONTROL:
>> + case ATLAS_REG_TEMP_DATA_1:
>> + case ATLAS_REG_TEMP_DATA_2:
>> + case ATLAS_REG_TEMP_DATA_3:
>> + case ATLAS_REG_TEMP_DATA_4:
>> + return true;
>> + }
>> +
>> + return false;
>> +}
>> +
>> +static const struct regmap_config atlas_regmap_config = {
>> + .name = ATLAS_REGMAP_NAME,
>> +
>> + .reg_bits = 8,
>> + .val_bits = 8,
>> +
>> + .volatile_reg = atlas_is_volatile_reg,
>> + .max_register = ATLAS_REG_PH_DATA + 4,
>> + .cache_type = REGCACHE_FLAT,
>> +};
>> +
>> +static const struct iio_chan_spec atlas_channels[] = {
>> + {
>> + .type = IIO_PH,
>> + .info_mask_separate =
>> + BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE),
>> + .scan_index = 0,
>> + .scan_type = {
>> + .sign = 'u',
>> + .realbits = 32,
>> + .storagebits = 32,
>> + .endianness = IIO_BE,
>> + },
>> + },
>> + IIO_CHAN_SOFT_TIMESTAMP(1),
>> + {
>> + .type = IIO_TEMP,
>> + .address = ATLAS_REG_TEMP_DATA_1,
>> + .info_mask_separate =
>> + BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE),
>> + .output = 1,
>> + .scan_index = -1
>> + },
>> +};
>> +
>> +static int atlas_set_powermode(struct atlas_data *data, int on)
>
> maybe bool on
>
>> +{
>> + return regmap_write(data->regmap, ATLAS_REG_PWR_CONTROL, on);
>> +}
>> +
>> +static int atlas_set_interrupt(struct atlas_data *data, bool state)
>> +{
>> + return regmap_update_bits(data->regmap, ATLAS_REG_INT_CONTROL,
>> + ATLAS_REG_INT_CONTROL_EN,
>> + state ? ATLAS_REG_INT_CONTROL_EN : 0);
>> +}
>> +
>> +static int atlas_buffer_postenable(struct iio_dev *indio_dev)
>> +{
>> + struct atlas_data *data = iio_priv(indio_dev);
>> + int ret;
>> +
>> + ret = iio_triggered_buffer_postenable(indio_dev);
>> + if (ret)
>> + return ret;
>> +
>> + ret = pm_runtime_get_sync(&data->client->dev);
>> + if (ret < 0) {
>> + pm_runtime_put_noidle(&data->client->dev);
>> + return ret;
>> + }
>> +
>> + return atlas_set_interrupt(data, true);
>> +}
>> +
>> +static int atlas_buffer_predisable(struct iio_dev *indio_dev)
>> +{
>> + struct atlas_data *data = iio_priv(indio_dev);
>> + int ret;
>> +
>> + ret = iio_triggered_buffer_predisable(indio_dev);
>> + if (ret)
>> + return ret;
>> +
>> + ret = atlas_set_interrupt(data, false);
>> + if (ret)
>> + return ret;
>> +
>> + pm_runtime_mark_last_busy(&data->client->dev);
>> + return pm_runtime_put_autosuspend(&data->client->dev);
>> +}
>> +
>> +static const struct iio_trigger_ops atlas_interrupt_trigger_ops = {
>> + .owner = THIS_MODULE,
>> +};
>> +
>> +static const struct iio_buffer_setup_ops atlas_buffer_setup_ops = {
>> + .postenable = atlas_buffer_postenable,
>> + .predisable = atlas_buffer_predisable,
>> +};
>> +
>> +static void atlas_work_handler(struct irq_work *work)
>> +{
>> + struct atlas_data *data = container_of(work, struct atlas_data, work);
>> +
>> + iio_trigger_poll(data->trig);
>> +}
>> +
>> +static irqreturn_t atlas_trigger_handler(int irq, void *private)
>> +{
>> + struct iio_poll_func *pf = private;
>> + struct iio_dev *indio_dev = pf->indio_dev;
>> + struct atlas_data *data = iio_priv(indio_dev);
>> + int ret;
>> +
>> + ret = i2c_smbus_read_i2c_block_data(data->client, ATLAS_REG_PH_DATA,
>> + sizeof(data->buffer[0]), (u8 *) &data->buffer);
>> +
>> + if (ret > 0)
>> + iio_push_to_buffers_with_timestamp(indio_dev, data->buffer,
>> + iio_get_time_ns());
>> +
>> + iio_trigger_notify_done(indio_dev->trig);
>> +
>> + return IRQ_HANDLED;
>> +}
>> +
>> +static irqreturn_t atlas_interrupt_handler(int irq, void *private)
>> +{
>> + struct iio_dev *indio_dev = private;
>> + struct atlas_data *data = iio_priv(indio_dev);
>> +
>> + irq_work_queue(&data->work);
>> +
>> + return IRQ_HANDLED;
>> +}
>> +
>> +static int atlas_read_ph_measurement(struct atlas_data *data, __be32 *val)
>> +{
>> + struct device *dev = &data->client->dev;
>> + int suspended = pm_runtime_suspended(dev);
>> + int ret, cnt = 0;
>> +
>> + ret = pm_runtime_get_sync(dev);
>> + if (ret < 0) {
>> + pm_runtime_put_noidle(dev);
>> + return ret;
>> + }
>> +
>> + if (suspended)
>> + usleep_range(ATLAS_PH_INT_TIME_IN_US,
>> + ATLAS_PH_INT_TIME_IN_US + 100000);
>> +
>> + cnt = i2c_smbus_read_i2c_block_data(data->client, ATLAS_REG_PH_DATA,
>> + sizeof(*val), (u8 *) val);
>> +
>> + pm_runtime_mark_last_busy(dev);
>> + ret = pm_runtime_put_autosuspend(dev);
>> + if (ret)
>> + return ret;
>> +
>> + return cnt == sizeof(*val) ? 0 : -EINVAL;
>> +}
>> +
>> +static int atlas_read_raw(struct iio_dev *indio_dev,
>> + struct iio_chan_spec const *chan,
>> + int *val, int *val2, long mask)
>> +{
>> + struct atlas_data *data = iio_priv(indio_dev);
>> +
>> + switch (mask) {
>> + case IIO_CHAN_INFO_RAW: {
>> + int ret;
>> + __be32 reg;
>> +
>> + mutex_lock(&indio_dev->mlock);
>> +
>> + if (iio_buffer_enabled(indio_dev)) {
>> + ret = -EBUSY;
>> + goto error_busy;
>> + }
>> +
>> + switch (chan->type) {
>> + case IIO_TEMP:
>> + ret = regmap_bulk_read(data->regmap, chan->address,
>> + (u8 *) ®, sizeof(reg));
>> + break;
>> + case IIO_PH:
>> + ret = atlas_read_ph_measurement(data, ®);
>> + break;
>> + default:
>> + ret = -EINVAL;
>> + }
>> +
>> + if (!ret) {
>> + *val = be32_to_cpu(reg);
>> + ret = IIO_VAL_INT;
>> + }
>> +error_busy:
>> + mutex_unlock(&indio_dev->mlock);
>> + return ret;
>> + }
>> + case IIO_CHAN_INFO_SCALE:
>> + *val = 0; /* 0.001 */
>> + *val2 = 1000;
>> + return IIO_VAL_INT_PLUS_MICRO;
>> + }
>> +
>> + return -EINVAL;
>> +}
>> +
>> +static int atlas_write_raw(struct iio_dev *indio_dev,
>> + struct iio_chan_spec const *chan,
>> + int val, int val2, long mask)
>> +{
>> + struct atlas_data *data = iio_priv(indio_dev);
>> + __be32 reg = cpu_to_be32(val);
>> +
>> + if (val2 > 0 || val < 0 || val > 20000)
>
> probably clearer to check val2 != 0
Noted.
>
>> + return -EINVAL;
>> +
>> + if (mask != IIO_CHAN_INFO_RAW || chan->type != IIO_TEMP)
>> + return -EINVAL;
>> +
>> + return regmap_bulk_write(data->regmap, chan->address, ®, 4);
>
> everywhere else sizeof(__be32) instead of 4
Will make this one or the other in v5
>
>> +}
>> +
>> +static const struct iio_info atlas_info = {
>> + .driver_module = THIS_MODULE,
>> + .read_raw = atlas_read_raw,
>> + .write_raw = atlas_write_raw,
>> +};
>> +
>> +static int atlas_check_calibration(struct atlas_data *data)
>> +{
>> + struct device *dev = &data->client->dev;
>> + int ret;
>> + unsigned int val;
>> +
>> + ret = regmap_read(data->regmap, ATLAS_REG_CALIB_STATUS, &val);
>> + if (ret)
>> + return ret;
>> +
>> + if (!(val & ATLAS_REG_CALIB_STATUS_MASK)) {
>> + dev_warn(dev, "device has not been calibrated");
>
> \n at the end
>
>> + return 0;
>
> maybe an error code here?
Not sure we want to error out just because there is no calibration
data. Will think this over.
>
>> + }
>> +
>> + if (!(val & ATLAS_REG_CALIB_STATUS_LOW))
>> + dev_warn(dev, "device missing low point calibration");
>> +
>> + if (!(val & ATLAS_REG_CALIB_STATUS_MID))
>> + dev_warn(dev, "device missing mid point calibration");
>> +
>> + if (!(val & ATLAS_REG_CALIB_STATUS_HIGH))
>> + dev_warn(dev, "device missing high point calibration");
>> +
>> + return 0;
>> +};
>> +
>> +static int atlas_probe(struct i2c_client *client,
>> + const struct i2c_device_id *id)
>> +{
>> + struct atlas_data *data;
>> + struct iio_trigger *trig;
>> + struct iio_dev *indio_dev;
>> + int ret;
>> +
>> + indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
>> + if (!indio_dev)
>> + return -ENOMEM;
>> +
>> + indio_dev->info = &atlas_info;
>> + indio_dev->name = ATLAS_DRV_NAME;
>> + indio_dev->channels = atlas_channels;
>> + indio_dev->num_channels = ARRAY_SIZE(atlas_channels);
>> + indio_dev->modes = INDIO_BUFFER_SOFTWARE | INDIO_DIRECT_MODE;
>> + indio_dev->dev.parent = &client->dev;
>> +
>> + trig = devm_iio_trigger_alloc(&client->dev, "%s-dev%d",
>> + indio_dev->name, indio_dev->id);
>> +
>> + if (!trig)
>> + return -ENOMEM;
>> +
>> + data = iio_priv(indio_dev);
>> + data->client = client;
>> + data->trig = trig;
>> + trig->dev.parent = indio_dev->dev.parent;
>> + trig->ops = &atlas_interrupt_trigger_ops;
>> + iio_trigger_set_drvdata(trig, indio_dev);
>> +
>> + i2c_set_clientdata(client, indio_dev);
>> +
>> + data->regmap = devm_regmap_init_i2c(client, &atlas_regmap_config);
>> + if (IS_ERR(data->regmap)) {
>> + dev_err(&client->dev, "regmap initialization failed\n");
>> + return PTR_ERR(data->regmap);
>> + }
>> +
>> + ret = pm_runtime_set_active(&client->dev);
>> + if (ret)
>> + return ret;
>> +
>> + if (client->irq <= 0) {
>> + dev_err(&client->dev, "no valid irq defined\n");
>> + return -EINVAL;
>> + }
>> +
>> + ret = atlas_check_calibration(data);
>> + if (ret)
>> + return ret;
>> +
>> + ret = iio_trigger_register(trig);
>> + if (ret) {
>> + dev_err(&client->dev, "failed to register trigger\n");
>> + return ret;
>> + }
>> +
>> + ret = iio_triggered_buffer_setup(indio_dev, &iio_pollfunc_store_time,
>> + &atlas_trigger_handler, &atlas_buffer_setup_ops);
>> + if (ret) {
>> + dev_err(&client->dev, "cannot setup iio trigger\n");
>> + goto unregister_trigger;
>> + }
>> +
>> + init_irq_work(&data->work, atlas_work_handler);
>> +
>> + ret = devm_request_threaded_irq(&client->dev, client->irq,
>> + NULL, atlas_interrupt_handler,
>> + IRQF_TRIGGER_RISING |
>> + IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
>> + "atlas_irq",
>> + indio_dev);
>> + if (ret) {
>> + dev_err(&client->dev, "request irq (%d) failed\n", client->irq);
>> + goto unregister_buffer;
>> + }
>> +
>> + ret = atlas_set_powermode(data, 1);
>> + if (ret) {
>> + dev_err(&client->dev, "cannot power device on");
>
> \n
>
>> + goto unregister_buffer;
>> + }
>> +
>> + pm_runtime_enable(&client->dev);
>> + pm_runtime_set_autosuspend_delay(&client->dev, 2500);
>> + pm_runtime_use_autosuspend(&client->dev);
>> +
>> + ret = iio_device_register(indio_dev);
>> + if (ret) {
>> + dev_err(&client->dev, "unable to register device\n");
>> + goto unregister_buffer;
>> + }
>> +
>> + return 0;
>> +
>> +unregister_buffer:
>> + iio_triggered_buffer_cleanup(indio_dev);
>> +
>> +unregister_trigger:
>> + iio_trigger_unregister(data->trig);
>> +
>> + return ret;
>> +}
>> +
>> +static int atlas_remove(struct i2c_client *client)
>> +{
>> + struct iio_dev *indio_dev = i2c_get_clientdata(client);
>> + struct atlas_data *data = iio_priv(indio_dev);
>> +
>> + iio_device_unregister(indio_dev);
>> + iio_triggered_buffer_cleanup(indio_dev);
>> + iio_trigger_unregister(data->trig);
>> +
>> + pm_runtime_disable(&client->dev);
>> + pm_runtime_set_suspended(&client->dev);
>> + pm_runtime_put_noidle(&client->dev);
>> +
>> + return atlas_set_powermode(data, 0);
>> +}
>> +
>> +#ifdef CONFIG_PM
>> +static int atlas_runtime_suspend(struct device *dev)
>> +{
>> + struct atlas_data *data =
>> + iio_priv(i2c_get_clientdata(to_i2c_client(dev)));
>> +
>> + return atlas_set_powermode(data, 0);
>> +}
>> +
>> +static int atlas_runtime_resume(struct device *dev)
>> +{
>> + struct atlas_data *data =
>> + iio_priv(i2c_get_clientdata(to_i2c_client(dev)));
>> +
>> + return atlas_set_powermode(data, 1);
>> +}
>> +#endif
>> +
>> +static const struct dev_pm_ops atlas_pm_ops = {
>> + SET_RUNTIME_PM_OPS(atlas_runtime_suspend,
>> + atlas_runtime_resume, NULL)
>> +};
>> +
>> +static const struct i2c_device_id atlas_id[] = {
>> + { "atlas-ph-sm", 0 },
>> + {}
>> +};
>> +MODULE_DEVICE_TABLE(i2c, atlas_id);
>> +
>> +static const struct of_device_id atlas_dt_ids[] = {
>> + { .compatible = "atlas,ph-sm" },
>> + { }
>> +};
>> +MODULE_DEVICE_TABLE(of, atlas_dt_ids);
>> +
>> +static struct i2c_driver atlas_driver = {
>> + .driver = {
>> + .name = ATLAS_DRV_NAME,
>> + .of_match_table = of_match_ptr(atlas_dt_ids),
>> + .pm = &atlas_pm_ops,
>> + },
>> + .probe = atlas_probe,
>> + .remove = atlas_remove,
>> + .id_table = atlas_id,
>> +};
>> +module_i2c_driver(atlas_driver);
>> +
>> +MODULE_AUTHOR("Matt Ranostay <mranostay@gmail.com>");
>> +MODULE_DESCRIPTION("Atlas Scientific pH-SM sensor");
>> +MODULE_LICENSE("GPL");
>>
>
> --
>
> Peter Meerwald-Stadler
> +43-664-2444418 (mobile)
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-01-19 1:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-18 15:28 [PATCH v3 0/3] iio: chemical: add atlas ph sensor support Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 1/3] devicetree: add Atlas Scientific LLC vendor prefix Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 2/3] iio: ph: add IIO_PH channel type Matt Ranostay
2016-01-18 15:28 ` [PATCH v3 3/3] iio: chemical: add Atlas pH-SM sensor support Matt Ranostay
2016-01-18 19:28 ` Peter Meerwald-Stadler
2016-01-19 1:04 ` Matt Ranostay
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).