linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] iio: adc: ad7766: Change alignment to match paranthesis
@ 2019-04-23 20:03 Camylla Gonçalves Cantanheide
  2019-04-24  7:43 ` Alexandru Ardelean
  0 siblings, 1 reply; 3+ messages in thread
From: Camylla Gonçalves Cantanheide @ 2019-04-23 20:03 UTC (permalink / raw)
  To: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
	Peter Meerwald-Stadler
  Cc: linux-iio, linux-kernel, kernel-usp

This commit align broken line to match upper line parenthesis,
in lines 80, 130, 237, 242, 255, 264 and 293. Solves the checkpatch.pl's message:

CHECK: Alignment should match open parenthesis

In lines 130, 255, 264 and 293 it was necessary to break a line.

Signed-off-by: Camylla Gonçalves Cantanheide <c.cantanheide@gmail.com>
---
 .../bindings/iio/adc/nuvoton,npcm-adc.txt     |  11 -
 .../iio/chemical/plantower,pms7003.txt        |  20 ++
 .../devicetree/bindings/vendor-prefixes.txt   |   1 +
 drivers/iio/adc/ad7766.c                      |  22 +-
 drivers/iio/chemical/Kconfig                  |  10 +
 drivers/iio/chemical/Makefile                 |   1 +
 drivers/iio/chemical/pms7003.c                | 340 ++++++++++++++++++
 drivers/iio/chemical/sps30.c                  |   3 +
 8 files changed, 388 insertions(+), 20 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
 create mode 100644 drivers/iio/chemical/pms7003.c

diff --git a/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt b/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
index 1b8132cd9060..eb939fe77836 100644
--- a/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
+++ b/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
@@ -14,11 +14,6 @@ Optional properties:
 			   vref-supply is not added the ADC will use internal voltage
 			   reference.
 
-Required Node in the NPCM7xx BMC:
-An additional register is present in the NPCM7xx SOC which is
-assumed to be in the same device tree, with and marked as
-compatible with "nuvoton,npcm750-rst".
-
 Example:
 
 adc: adc@f000c000 {
@@ -27,9 +22,3 @@ adc: adc@f000c000 {
 	interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>;
 	clocks = <&clk NPCM7XX_CLK_ADC>;
 };
-
-rst: rst@f0801000 {
-	compatible = "nuvoton,npcm750-rst", "syscon",
-	"simple-mfd";
-	reg = <0xf0801000 0x6C>;
-};
diff --git a/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt b/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
new file mode 100644
index 000000000000..7b5f06f324c8
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
@@ -0,0 +1,20 @@
+* Plantower PMS7003 particulate matter sensor
+
+Required properties:
+- compatible: must be "plantower,pms7003"
+- vcc-supply: phandle to the regulator that provides power to the sensor
+
+Optional properties:
+- plantower,set-gpios: phandle to the GPIO connected to the SET line
+- reset-gpios: phandle to the GPIO connected to the RESET line
+
+Refer to serial/slave-device.txt for generic serial attached device bindings.
+
+Example:
+
+&uart0 {
+	air-pollution-sensor {
+		compatible = "plantower,pms7003";
+		vcc-supply = <&reg_vcc5v0>;
+	};
+};
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
index 389508584f48..42816baeb381 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.txt
+++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
@@ -304,6 +304,7 @@ phytec	PHYTEC Messtechnik GmbH
 picochip	Picochip Ltd
 pine64	Pine64
 pixcir  PIXCIR MICROELECTRONICS Co., Ltd
+plantower Plantower Co., Ltd
 plathome	Plat'Home Co., Ltd.
 plda	PLDA
 plx	Broadcom Corporation (formerly PLX Technology)
diff --git a/drivers/iio/adc/ad7766.c b/drivers/iio/adc/ad7766.c
index 3ae14fc8c649..101502435768 100644
--- a/drivers/iio/adc/ad7766.c
+++ b/drivers/iio/adc/ad7766.c
@@ -77,7 +77,7 @@ static irqreturn_t ad7766_trigger_handler(int irq, void *p)
 		goto done;
 
 	iio_push_to_buffers_with_timestamp(indio_dev, ad7766->data,
-		pf->timestamp);
+					   pf->timestamp);
 done:
 	iio_trigger_notify_done(indio_dev->trig);
 
@@ -127,7 +127,8 @@ static int ad7766_postdisable(struct iio_dev *indio_dev)
 }
 
 static int ad7766_read_raw(struct iio_dev *indio_dev,
-	const struct iio_chan_spec *chan, int *val, int *val2, long info)
+			   const struct iio_chan_spec *chan, int *val,
+			   int *val2, long info)
 {
 	struct ad7766 *ad7766 = iio_priv(indio_dev);
 	struct regulator *vref = ad7766->reg[AD7766_SUPPLY_VREF].consumer;
@@ -234,12 +235,12 @@ static int ad7766_probe(struct spi_device *spi)
 	ad7766->reg[AD7766_SUPPLY_VREF].supply = "vref";
 
 	ret = devm_regulator_bulk_get(&spi->dev, ARRAY_SIZE(ad7766->reg),
-		ad7766->reg);
+				      ad7766->reg);
 	if (ret)
 		return ret;
 
 	ad7766->pd_gpio = devm_gpiod_get_optional(&spi->dev, "powerdown",
-		GPIOD_OUT_HIGH);
+						  GPIOD_OUT_HIGH);
 	if (IS_ERR(ad7766->pd_gpio))
 		return PTR_ERR(ad7766->pd_gpio);
 
@@ -252,7 +253,8 @@ static int ad7766_probe(struct spi_device *spi)
 
 	if (spi->irq > 0) {
 		ad7766->trig = devm_iio_trigger_alloc(&spi->dev, "%s-dev%d",
-			indio_dev->name, indio_dev->id);
+						      indio_dev->name,
+						      indio_dev->id);
 		if (!ad7766->trig)
 			return -ENOMEM;
 
@@ -261,8 +263,9 @@ static int ad7766_probe(struct spi_device *spi)
 		iio_trigger_set_drvdata(ad7766->trig, ad7766);
 
 		ret = devm_request_irq(&spi->dev, spi->irq, ad7766_irq,
-			IRQF_TRIGGER_FALLING, dev_name(&spi->dev),
-			ad7766->trig);
+				       IRQF_TRIGGER_FALLING,
+				       dev_name(&spi->dev),
+				       ad7766->trig);
 		if (ret < 0)
 			return ret;
 
@@ -290,8 +293,9 @@ static int ad7766_probe(struct spi_device *spi)
 	spi_message_add_tail(&ad7766->xfer, &ad7766->msg);
 
 	ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev,
-		&iio_pollfunc_store_time, &ad7766_trigger_handler,
-		&ad7766_buffer_setup_ops);
+					      &iio_pollfunc_store_time,
+					      &ad7766_trigger_handler,
+					      &ad7766_buffer_setup_ops);
 	if (ret)
 		return ret;
 
diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig
index 57832b4360e9..d5d146e9e372 100644
--- a/drivers/iio/chemical/Kconfig
+++ b/drivers/iio/chemical/Kconfig
@@ -61,6 +61,16 @@ config IAQCORE
 	  iAQ-Core Continuous/Pulsed VOC (Volatile Organic Compounds)
 	  sensors
 
+config PMS7003
+	tristate "Plantower PMS7003 particulate matter sensor"
+	depends on SERIAL_DEV_BUS
+	help
+	  Say Y here to build support for the Plantower PMS7003 particulate
+	  matter sensor.
+
+	  To compile this driver as a module, choose M here: the module will
+	  be called pms7003.
+
 config SPS30
 	tristate "SPS30 particulate matter sensor"
 	depends on I2C
diff --git a/drivers/iio/chemical/Makefile b/drivers/iio/chemical/Makefile
index 65bf0f89c0e4..f5d1365acb49 100644
--- a/drivers/iio/chemical/Makefile
+++ b/drivers/iio/chemical/Makefile
@@ -9,6 +9,7 @@ obj-$(CONFIG_BME680_I2C) += bme680_i2c.o
 obj-$(CONFIG_BME680_SPI) += bme680_spi.o
 obj-$(CONFIG_CCS811)		+= ccs811.o
 obj-$(CONFIG_IAQCORE)		+= ams-iaq-core.o
+obj-$(CONFIG_PMS7003) += pms7003.o
 obj-$(CONFIG_SENSIRION_SGP30)	+= sgp30.o
 obj-$(CONFIG_SPS30) += sps30.o
 obj-$(CONFIG_VZ89X)		+= vz89x.o
diff --git a/drivers/iio/chemical/pms7003.c b/drivers/iio/chemical/pms7003.c
new file mode 100644
index 000000000000..db8e7b2327b3
--- /dev/null
+++ b/drivers/iio/chemical/pms7003.c
@@ -0,0 +1,340 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Plantower PMS7003 particulate matter sensor driver
+ *
+ * Copyright (c) Tomasz Duszynski <tduszyns@gmail.com>
+ */
+
+#include <asm/unaligned.h>
+#include <linux/completion.h>
+#include <linux/device.h>
+#include <linux/errno.h>
+#include <linux/iio/buffer.h>
+#include <linux/iio/iio.h>
+#include <linux/iio/trigger_consumer.h>
+#include <linux/iio/triggered_buffer.h>
+#include <linux/jiffies.h>
+#include <linux/kernel.h>
+#include <linux/mod_devicetable.h>
+#include <linux/module.h>
+#include <linux/mutex.h>
+#include <linux/serdev.h>
+
+#define PMS7003_DRIVER_NAME "pms7003"
+
+#define PMS7003_MAGIC 0x424d
+/* last 2 data bytes hold frame checksum */
+#define PMS7003_MAX_DATA_LENGTH 28
+#define PMS7003_CHECKSUM_LENGTH 2
+#define PMS7003_PM10_OFFSET 10
+#define PMS7003_PM2P5_OFFSET 8
+#define PMS7003_PM1_OFFSET 6
+
+#define PMS7003_TIMEOUT msecs_to_jiffies(6000)
+#define PMS7003_CMD_LENGTH 7
+#define PMS7003_PM_MAX 1000
+#define PMS7003_PM_MIN 0
+
+enum {
+	PM1,
+	PM2P5,
+	PM10,
+};
+
+enum pms7003_cmd {
+	CMD_WAKEUP,
+	CMD_ENTER_PASSIVE_MODE,
+	CMD_READ_PASSIVE,
+	CMD_SLEEP,
+};
+
+/*
+ * commands have following format:
+ *
+ * +------+------+-----+------+-----+-----------+-----------+
+ * | 0x42 | 0x4d | cmd | 0x00 | arg | cksum msb | cksum lsb |
+ * +------+------+-----+------+-----+-----------+-----------+
+ */
+static const u8 pms7003_cmd_tbl[][PMS7003_CMD_LENGTH] = {
+	[CMD_WAKEUP] = { 0x42, 0x4d, 0xe4, 0x00, 0x01, 0x01, 0x74 },
+	[CMD_ENTER_PASSIVE_MODE] = { 0x42, 0x4d, 0xe1, 0x00, 0x00, 0x01, 0x70 },
+	[CMD_READ_PASSIVE] = { 0x42, 0x4d, 0xe2, 0x00, 0x00, 0x01, 0x71 },
+	[CMD_SLEEP] = { 0x42, 0x4d, 0xe4, 0x00, 0x00, 0x01, 0x73 },
+};
+
+struct pms7003_frame {
+	u8 data[PMS7003_MAX_DATA_LENGTH];
+	u16 expected_length;
+	u16 length;
+};
+
+struct pms7003_state {
+	struct serdev_device *serdev;
+	struct pms7003_frame frame;
+	struct completion frame_ready;
+	struct mutex lock; /* must be held whenever state gets touched */
+};
+
+static int pms7003_do_cmd(struct pms7003_state *state, enum pms7003_cmd cmd)
+{
+	int ret;
+
+	ret = serdev_device_write(state->serdev, pms7003_cmd_tbl[cmd],
+				  PMS7003_CMD_LENGTH, PMS7003_TIMEOUT);
+	if (ret < PMS7003_CMD_LENGTH)
+		return ret < 0 ? ret : -EIO;
+
+	ret = wait_for_completion_interruptible_timeout(&state->frame_ready,
+							PMS7003_TIMEOUT);
+	if (!ret)
+		ret = -ETIMEDOUT;
+
+	return ret < 0 ? ret : 0;
+}
+
+static u16 pms7003_get_pm(const u8 *data)
+{
+	return clamp_val(get_unaligned_be16(data),
+			 PMS7003_PM_MIN, PMS7003_PM_MAX);
+}
+
+static irqreturn_t pms7003_trigger_handler(int irq, void *p)
+{
+	struct iio_poll_func *pf = p;
+	struct iio_dev *indio_dev = pf->indio_dev;
+	struct pms7003_state *state = iio_priv(indio_dev);
+	struct pms7003_frame *frame = &state->frame;
+	u16 data[3 + 1 + 4]; /* PM1, PM2P5, PM10, padding, timestamp */
+	int ret;
+
+	mutex_lock(&state->lock);
+	ret = pms7003_do_cmd(state, CMD_READ_PASSIVE);
+	if (ret) {
+		mutex_unlock(&state->lock);
+		goto err;
+	}
+
+	data[PM1] = pms7003_get_pm(frame->data + PMS7003_PM1_OFFSET);
+	data[PM2P5] = pms7003_get_pm(frame->data + PMS7003_PM2P5_OFFSET);
+	data[PM10] = pms7003_get_pm(frame->data + PMS7003_PM10_OFFSET);
+	mutex_unlock(&state->lock);
+
+	iio_push_to_buffers_with_timestamp(indio_dev, data,
+					   iio_get_time_ns(indio_dev));
+err:
+	iio_trigger_notify_done(indio_dev->trig);
+
+	return IRQ_HANDLED;
+}
+
+static int pms7003_read_raw(struct iio_dev *indio_dev,
+			    struct iio_chan_spec const *chan,
+			    int *val, int *val2, long mask)
+{
+	struct pms7003_state *state = iio_priv(indio_dev);
+	struct pms7003_frame *frame = &state->frame;
+	int ret;
+
+	switch (mask) {
+	case IIO_CHAN_INFO_PROCESSED:
+		switch (chan->type) {
+		case IIO_MASSCONCENTRATION:
+			mutex_lock(&state->lock);
+			ret = pms7003_do_cmd(state, CMD_READ_PASSIVE);
+			if (ret) {
+				mutex_unlock(&state->lock);
+				return ret;
+			}
+
+			*val = pms7003_get_pm(frame->data + chan->address);
+			mutex_unlock(&state->lock);
+
+			return IIO_VAL_INT;
+		default:
+			return -EINVAL;
+		}
+	}
+
+	return -EINVAL;
+}
+
+static const struct iio_info pms7003_info = {
+	.read_raw = pms7003_read_raw,
+};
+
+#define PMS7003_CHAN(_index, _mod, _addr) { \
+	.type = IIO_MASSCONCENTRATION, \
+	.modified = 1, \
+	.channel2 = IIO_MOD_ ## _mod, \
+	.address = _addr, \
+	.info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED), \
+	.scan_index = _index, \
+	.scan_type = { \
+		.sign = 'u', \
+		.realbits = 10, \
+		.storagebits = 16, \
+		.endianness = IIO_CPU, \
+	}, \
+}
+
+static const struct iio_chan_spec pms7003_channels[] = {
+	PMS7003_CHAN(0, PM1, PMS7003_PM1_OFFSET),
+	PMS7003_CHAN(1, PM2P5, PMS7003_PM2P5_OFFSET),
+	PMS7003_CHAN(2, PM10, PMS7003_PM10_OFFSET),
+	IIO_CHAN_SOFT_TIMESTAMP(3),
+};
+
+static u16 pms7003_calc_checksum(struct pms7003_frame *frame)
+{
+	u16 checksum = (PMS7003_MAGIC >> 8) + (u8)(PMS7003_MAGIC & 0xff) +
+		       (frame->length >> 8) + (u8)frame->length;
+	int i;
+
+	for (i = 0; i < frame->length - PMS7003_CHECKSUM_LENGTH; i++)
+		checksum += frame->data[i];
+
+	return checksum;
+}
+
+static bool pms7003_frame_is_okay(struct pms7003_frame *frame)
+{
+	int offset = frame->length - PMS7003_CHECKSUM_LENGTH;
+	u16 checksum = get_unaligned_be16(frame->data + offset);
+
+	return checksum == pms7003_calc_checksum(frame);
+}
+
+static int pms7003_receive_buf(struct serdev_device *serdev,
+			       const unsigned char *buf, size_t size)
+{
+	struct iio_dev *indio_dev = serdev_device_get_drvdata(serdev);
+	struct pms7003_state *state = iio_priv(indio_dev);
+	struct pms7003_frame *frame = &state->frame;
+	int num;
+
+	if (!frame->expected_length) {
+		u16 magic;
+
+		/* wait for SOF and data length */
+		if (size < 4)
+			return 0;
+
+		magic = get_unaligned_be16(buf);
+		if (magic != PMS7003_MAGIC)
+			return 2;
+
+		num = get_unaligned_be16(buf + 2);
+		if (num <= PMS7003_MAX_DATA_LENGTH) {
+			frame->expected_length = num;
+			frame->length = 0;
+		}
+
+		return 4;
+	}
+
+	num = min(size, (size_t)(frame->expected_length - frame->length));
+	memcpy(frame->data + frame->length, buf, num);
+	frame->length += num;
+
+	if (frame->length == frame->expected_length) {
+		if (pms7003_frame_is_okay(frame))
+			complete(&state->frame_ready);
+
+		frame->expected_length = 0;
+	}
+
+	return num;
+}
+
+static const struct serdev_device_ops pms7003_serdev_ops = {
+	.receive_buf = pms7003_receive_buf,
+	.write_wakeup = serdev_device_write_wakeup,
+};
+
+static void pms7003_stop(void *data)
+{
+	struct pms7003_state *state = data;
+
+	pms7003_do_cmd(state, CMD_SLEEP);
+}
+
+static const unsigned long pms7003_scan_masks[] = { 0x07, 0x00 };
+
+static int pms7003_probe(struct serdev_device *serdev)
+{
+	struct pms7003_state *state;
+	struct iio_dev *indio_dev;
+	int ret;
+
+	indio_dev = devm_iio_device_alloc(&serdev->dev, sizeof(*state));
+	if (!indio_dev)
+		return -ENOMEM;
+
+	state = iio_priv(indio_dev);
+	serdev_device_set_drvdata(serdev, indio_dev);
+	state->serdev = serdev;
+	indio_dev->dev.parent = &serdev->dev;
+	indio_dev->info = &pms7003_info;
+	indio_dev->name = PMS7003_DRIVER_NAME;
+	indio_dev->channels = pms7003_channels,
+	indio_dev->num_channels = ARRAY_SIZE(pms7003_channels);
+	indio_dev->modes = INDIO_DIRECT_MODE;
+	indio_dev->available_scan_masks = pms7003_scan_masks;
+
+	mutex_init(&state->lock);
+	init_completion(&state->frame_ready);
+
+	serdev_device_set_client_ops(serdev, &pms7003_serdev_ops);
+	ret = devm_serdev_device_open(&serdev->dev, serdev);
+	if (ret)
+		return ret;
+
+	serdev_device_set_baudrate(serdev, 9600);
+	serdev_device_set_flow_control(serdev, false);
+
+	ret = serdev_device_set_parity(serdev, SERDEV_PARITY_NONE);
+	if (ret)
+		return ret;
+
+	ret = pms7003_do_cmd(state, CMD_WAKEUP);
+	if (ret) {
+		dev_err(&serdev->dev, "failed to wakeup sensor\n");
+		return ret;
+	}
+
+	ret = pms7003_do_cmd(state, CMD_ENTER_PASSIVE_MODE);
+	if (ret) {
+		dev_err(&serdev->dev, "failed to enter passive mode\n");
+		return ret;
+	}
+
+	ret = devm_add_action_or_reset(&serdev->dev, pms7003_stop, state);
+	if (ret)
+		return ret;
+
+	ret = devm_iio_triggered_buffer_setup(&serdev->dev, indio_dev, NULL,
+					      pms7003_trigger_handler, NULL);
+	if (ret)
+		return ret;
+
+	return devm_iio_device_register(&serdev->dev, indio_dev);
+}
+
+static const struct of_device_id pms7003_of_match[] = {
+	{ .compatible = "plantower,pms7003" },
+	{ }
+};
+MODULE_DEVICE_TABLE(of, pms7003_of_match);
+
+static struct serdev_device_driver pms7003_driver = {
+	.driver = {
+		.name = PMS7003_DRIVER_NAME,
+		.of_match_table = pms7003_of_match,
+	},
+	.probe = pms7003_probe,
+};
+module_serdev_device_driver(pms7003_driver);
+
+MODULE_AUTHOR("Tomasz Duszynski <tduszyns@gmail.com>");
+MODULE_DESCRIPTION("Plantower PMS7003 particulate matter sensor driver");
+MODULE_LICENSE("GPL v2");
diff --git a/drivers/iio/chemical/sps30.c b/drivers/iio/chemical/sps30.c
index 375df5060ed5..edbb956e81e8 100644
--- a/drivers/iio/chemical/sps30.c
+++ b/drivers/iio/chemical/sps30.c
@@ -118,6 +118,7 @@ static int sps30_do_cmd(struct sps30_state *state, u16 cmd, u8 *data, int size)
 	case SPS30_READ_AUTO_CLEANING_PERIOD:
 		buf[0] = SPS30_AUTO_CLEANING_PERIOD >> 8;
 		buf[1] = (u8)SPS30_AUTO_CLEANING_PERIOD;
+		/* fall through */
 	case SPS30_READ_DATA_READY_FLAG:
 	case SPS30_READ_DATA:
 	case SPS30_READ_SERIAL:
@@ -295,6 +296,8 @@ static int sps30_read_raw(struct iio_dev *indio_dev,
 				*val2 = 10000;
 
 				return IIO_VAL_INT_PLUS_MICRO;
+			default:
+				return -EINVAL;
 			}
 		default:
 			return -EINVAL;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] iio: adc: ad7766: Change alignment to match paranthesis
  2019-04-23 20:03 [PATCH v2] iio: adc: ad7766: Change alignment to match paranthesis Camylla Gonçalves Cantanheide
@ 2019-04-24  7:43 ` Alexandru Ardelean
       [not found]   ` <CAG3pErKazCrupucQk91t9rWDiF+afLnozdAJFxVmS3AE+9ZWFg@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandru Ardelean @ 2019-04-24  7:43 UTC (permalink / raw)
  To: Camylla Gonçalves Cantanheide
  Cc: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
	Peter Meerwald-Stadler, linux-iio, LKML, kernel-usp

On Tue, Apr 23, 2019 at 11:04 PM Camylla Gonçalves Cantanheide
<c.cantanheide@gmail.com> wrote:
>
> This commit align broken line to match upper line parenthesis,
> in lines 80, 130, 237, 242, 255, 264 and 293. Solves the checkpatch.pl's message:
>
> CHECK: Alignment should match open parenthesis
>
>In lines 130, 255, 264 and 293 it was necessary to break a line.
>

This patch is errounous; seems it wasn't generated correctly.
It does too many things in one commit.

> Signed-off-by: Camylla Gonçalves Cantanheide <c.cantanheide@gmail.com>
> ---
>  .../bindings/iio/adc/nuvoton,npcm-adc.txt     |  11 -
>  .../iio/chemical/plantower,pms7003.txt        |  20 ++
>  .../devicetree/bindings/vendor-prefixes.txt   |   1 +
>  drivers/iio/adc/ad7766.c                      |  22 +-
>  drivers/iio/chemical/Kconfig                  |  10 +
>  drivers/iio/chemical/Makefile                 |   1 +
>  drivers/iio/chemical/pms7003.c                | 340 ++++++++++++++++++
>  drivers/iio/chemical/sps30.c                  |   3 +
>  8 files changed, 388 insertions(+), 20 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
>  create mode 100644 drivers/iio/chemical/pms7003.c
>
> diff --git a/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt b/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
> index 1b8132cd9060..eb939fe77836 100644
> --- a/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
> +++ b/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
> @@ -14,11 +14,6 @@ Optional properties:
>                            vref-supply is not added the ADC will use internal voltage
>                            reference.
>
> -Required Node in the NPCM7xx BMC:
> -An additional register is present in the NPCM7xx SOC which is
> -assumed to be in the same device tree, with and marked as
> -compatible with "nuvoton,npcm750-rst".
> -
>  Example:
>
>  adc: adc@f000c000 {
> @@ -27,9 +22,3 @@ adc: adc@f000c000 {
>         interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>;
>         clocks = <&clk NPCM7XX_CLK_ADC>;
>  };
> -
> -rst: rst@f0801000 {
> -       compatible = "nuvoton,npcm750-rst", "syscon",
> -       "simple-mfd";
> -       reg = <0xf0801000 0x6C>;
> -};
> diff --git a/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt b/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
> new file mode 100644
> index 000000000000..7b5f06f324c8
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
> @@ -0,0 +1,20 @@
> +* Plantower PMS7003 particulate matter sensor
> +
> +Required properties:
> +- compatible: must be "plantower,pms7003"
> +- vcc-supply: phandle to the regulator that provides power to the sensor
> +
> +Optional properties:
> +- plantower,set-gpios: phandle to the GPIO connected to the SET line
> +- reset-gpios: phandle to the GPIO connected to the RESET line
> +
> +Refer to serial/slave-device.txt for generic serial attached device bindings.
> +
> +Example:
> +
> +&uart0 {
> +       air-pollution-sensor {
> +               compatible = "plantower,pms7003";
> +               vcc-supply = <&reg_vcc5v0>;
> +       };
> +};
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
> index 389508584f48..42816baeb381 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
> @@ -304,6 +304,7 @@ phytec      PHYTEC Messtechnik GmbH
>  picochip       Picochip Ltd
>  pine64 Pine64
>  pixcir  PIXCIR MICROELECTRONICS Co., Ltd
> +plantower Plantower Co., Ltd
>  plathome       Plat'Home Co., Ltd.
>  plda   PLDA
>  plx    Broadcom Corporation (formerly PLX Technology)
> diff --git a/drivers/iio/adc/ad7766.c b/drivers/iio/adc/ad7766.c
> index 3ae14fc8c649..101502435768 100644
> --- a/drivers/iio/adc/ad7766.c
> +++ b/drivers/iio/adc/ad7766.c
> @@ -77,7 +77,7 @@ static irqreturn_t ad7766_trigger_handler(int irq, void *p)
>                 goto done;
>
>         iio_push_to_buffers_with_timestamp(indio_dev, ad7766->data,
> -               pf->timestamp);
> +                                          pf->timestamp);
>  done:
>         iio_trigger_notify_done(indio_dev->trig);
>
> @@ -127,7 +127,8 @@ static int ad7766_postdisable(struct iio_dev *indio_dev)
>  }
>
>  static int ad7766_read_raw(struct iio_dev *indio_dev,
> -       const struct iio_chan_spec *chan, int *val, int *val2, long info)
> +                          const struct iio_chan_spec *chan, int *val,
> +                          int *val2, long info)
>  {
>         struct ad7766 *ad7766 = iio_priv(indio_dev);
>         struct regulator *vref = ad7766->reg[AD7766_SUPPLY_VREF].consumer;
> @@ -234,12 +235,12 @@ static int ad7766_probe(struct spi_device *spi)
>         ad7766->reg[AD7766_SUPPLY_VREF].supply = "vref";
>
>         ret = devm_regulator_bulk_get(&spi->dev, ARRAY_SIZE(ad7766->reg),
> -               ad7766->reg);
> +                                     ad7766->reg);
>         if (ret)
>                 return ret;
>
>         ad7766->pd_gpio = devm_gpiod_get_optional(&spi->dev, "powerdown",
> -               GPIOD_OUT_HIGH);
> +                                                 GPIOD_OUT_HIGH);
>         if (IS_ERR(ad7766->pd_gpio))
>                 return PTR_ERR(ad7766->pd_gpio);
>
> @@ -252,7 +253,8 @@ static int ad7766_probe(struct spi_device *spi)
>
>         if (spi->irq > 0) {
>                 ad7766->trig = devm_iio_trigger_alloc(&spi->dev, "%s-dev%d",
> -                       indio_dev->name, indio_dev->id);
> +                                                     indio_dev->name,
> +                                                     indio_dev->id);
>                 if (!ad7766->trig)
>                         return -ENOMEM;
>
> @@ -261,8 +263,9 @@ static int ad7766_probe(struct spi_device *spi)
>                 iio_trigger_set_drvdata(ad7766->trig, ad7766);
>
>                 ret = devm_request_irq(&spi->dev, spi->irq, ad7766_irq,
> -                       IRQF_TRIGGER_FALLING, dev_name(&spi->dev),
> -                       ad7766->trig);
> +                                      IRQF_TRIGGER_FALLING,
> +                                      dev_name(&spi->dev),
> +                                      ad7766->trig);
>                 if (ret < 0)
>                         return ret;
>
> @@ -290,8 +293,9 @@ static int ad7766_probe(struct spi_device *spi)
>         spi_message_add_tail(&ad7766->xfer, &ad7766->msg);
>
>         ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev,
> -               &iio_pollfunc_store_time, &ad7766_trigger_handler,
> -               &ad7766_buffer_setup_ops);
> +                                             &iio_pollfunc_store_time,
> +                                             &ad7766_trigger_handler,
> +                                             &ad7766_buffer_setup_ops);
>         if (ret)
>                 return ret;
>
> diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig
> index 57832b4360e9..d5d146e9e372 100644
> --- a/drivers/iio/chemical/Kconfig
> +++ b/drivers/iio/chemical/Kconfig
> @@ -61,6 +61,16 @@ config IAQCORE
>           iAQ-Core Continuous/Pulsed VOC (Volatile Organic Compounds)
>           sensors
>
> +config PMS7003
> +       tristate "Plantower PMS7003 particulate matter sensor"
> +       depends on SERIAL_DEV_BUS
> +       help
> +         Say Y here to build support for the Plantower PMS7003 particulate
> +         matter sensor.
> +
> +         To compile this driver as a module, choose M here: the module will
> +         be called pms7003.
> +
>  config SPS30
>         tristate "SPS30 particulate matter sensor"
>         depends on I2C
> diff --git a/drivers/iio/chemical/Makefile b/drivers/iio/chemical/Makefile
> index 65bf0f89c0e4..f5d1365acb49 100644
> --- a/drivers/iio/chemical/Makefile
> +++ b/drivers/iio/chemical/Makefile
> @@ -9,6 +9,7 @@ obj-$(CONFIG_BME680_I2C) += bme680_i2c.o
>  obj-$(CONFIG_BME680_SPI) += bme680_spi.o
>  obj-$(CONFIG_CCS811)           += ccs811.o
>  obj-$(CONFIG_IAQCORE)          += ams-iaq-core.o
> +obj-$(CONFIG_PMS7003) += pms7003.o
>  obj-$(CONFIG_SENSIRION_SGP30)  += sgp30.o
>  obj-$(CONFIG_SPS30) += sps30.o
>  obj-$(CONFIG_VZ89X)            += vz89x.o
> diff --git a/drivers/iio/chemical/pms7003.c b/drivers/iio/chemical/pms7003.c
> new file mode 100644
> index 000000000000..db8e7b2327b3
> --- /dev/null
> +++ b/drivers/iio/chemical/pms7003.c
> @@ -0,0 +1,340 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Plantower PMS7003 particulate matter sensor driver
> + *
> + * Copyright (c) Tomasz Duszynski <tduszyns@gmail.com>
> + */
> +
> +#include <asm/unaligned.h>
> +#include <linux/completion.h>
> +#include <linux/device.h>
> +#include <linux/errno.h>
> +#include <linux/iio/buffer.h>
> +#include <linux/iio/iio.h>
> +#include <linux/iio/trigger_consumer.h>
> +#include <linux/iio/triggered_buffer.h>
> +#include <linux/jiffies.h>
> +#include <linux/kernel.h>
> +#include <linux/mod_devicetable.h>
> +#include <linux/module.h>
> +#include <linux/mutex.h>
> +#include <linux/serdev.h>
> +
> +#define PMS7003_DRIVER_NAME "pms7003"
> +
> +#define PMS7003_MAGIC 0x424d
> +/* last 2 data bytes hold frame checksum */
> +#define PMS7003_MAX_DATA_LENGTH 28
> +#define PMS7003_CHECKSUM_LENGTH 2
> +#define PMS7003_PM10_OFFSET 10
> +#define PMS7003_PM2P5_OFFSET 8
> +#define PMS7003_PM1_OFFSET 6
> +
> +#define PMS7003_TIMEOUT msecs_to_jiffies(6000)
> +#define PMS7003_CMD_LENGTH 7
> +#define PMS7003_PM_MAX 1000
> +#define PMS7003_PM_MIN 0
> +
> +enum {
> +       PM1,
> +       PM2P5,
> +       PM10,
> +};
> +
> +enum pms7003_cmd {
> +       CMD_WAKEUP,
> +       CMD_ENTER_PASSIVE_MODE,
> +       CMD_READ_PASSIVE,
> +       CMD_SLEEP,
> +};
> +
> +/*
> + * commands have following format:
> + *
> + * +------+------+-----+------+-----+-----------+-----------+
> + * | 0x42 | 0x4d | cmd | 0x00 | arg | cksum msb | cksum lsb |
> + * +------+------+-----+------+-----+-----------+-----------+
> + */
> +static const u8 pms7003_cmd_tbl[][PMS7003_CMD_LENGTH] = {
> +       [CMD_WAKEUP] = { 0x42, 0x4d, 0xe4, 0x00, 0x01, 0x01, 0x74 },
> +       [CMD_ENTER_PASSIVE_MODE] = { 0x42, 0x4d, 0xe1, 0x00, 0x00, 0x01, 0x70 },
> +       [CMD_READ_PASSIVE] = { 0x42, 0x4d, 0xe2, 0x00, 0x00, 0x01, 0x71 },
> +       [CMD_SLEEP] = { 0x42, 0x4d, 0xe4, 0x00, 0x00, 0x01, 0x73 },
> +};
> +
> +struct pms7003_frame {
> +       u8 data[PMS7003_MAX_DATA_LENGTH];
> +       u16 expected_length;
> +       u16 length;
> +};
> +
> +struct pms7003_state {
> +       struct serdev_device *serdev;
> +       struct pms7003_frame frame;
> +       struct completion frame_ready;
> +       struct mutex lock; /* must be held whenever state gets touched */
> +};
> +
> +static int pms7003_do_cmd(struct pms7003_state *state, enum pms7003_cmd cmd)
> +{
> +       int ret;
> +
> +       ret = serdev_device_write(state->serdev, pms7003_cmd_tbl[cmd],
> +                                 PMS7003_CMD_LENGTH, PMS7003_TIMEOUT);
> +       if (ret < PMS7003_CMD_LENGTH)
> +               return ret < 0 ? ret : -EIO;
> +
> +       ret = wait_for_completion_interruptible_timeout(&state->frame_ready,
> +                                                       PMS7003_TIMEOUT);
> +       if (!ret)
> +               ret = -ETIMEDOUT;
> +
> +       return ret < 0 ? ret : 0;
> +}
> +
> +static u16 pms7003_get_pm(const u8 *data)
> +{
> +       return clamp_val(get_unaligned_be16(data),
> +                        PMS7003_PM_MIN, PMS7003_PM_MAX);
> +}
> +
> +static irqreturn_t pms7003_trigger_handler(int irq, void *p)
> +{
> +       struct iio_poll_func *pf = p;
> +       struct iio_dev *indio_dev = pf->indio_dev;
> +       struct pms7003_state *state = iio_priv(indio_dev);
> +       struct pms7003_frame *frame = &state->frame;
> +       u16 data[3 + 1 + 4]; /* PM1, PM2P5, PM10, padding, timestamp */
> +       int ret;
> +
> +       mutex_lock(&state->lock);
> +       ret = pms7003_do_cmd(state, CMD_READ_PASSIVE);
> +       if (ret) {
> +               mutex_unlock(&state->lock);
> +               goto err;
> +       }
> +
> +       data[PM1] = pms7003_get_pm(frame->data + PMS7003_PM1_OFFSET);
> +       data[PM2P5] = pms7003_get_pm(frame->data + PMS7003_PM2P5_OFFSET);
> +       data[PM10] = pms7003_get_pm(frame->data + PMS7003_PM10_OFFSET);
> +       mutex_unlock(&state->lock);
> +
> +       iio_push_to_buffers_with_timestamp(indio_dev, data,
> +                                          iio_get_time_ns(indio_dev));
> +err:
> +       iio_trigger_notify_done(indio_dev->trig);
> +
> +       return IRQ_HANDLED;
> +}
> +
> +static int pms7003_read_raw(struct iio_dev *indio_dev,
> +                           struct iio_chan_spec const *chan,
> +                           int *val, int *val2, long mask)
> +{
> +       struct pms7003_state *state = iio_priv(indio_dev);
> +       struct pms7003_frame *frame = &state->frame;
> +       int ret;
> +
> +       switch (mask) {
> +       case IIO_CHAN_INFO_PROCESSED:
> +               switch (chan->type) {
> +               case IIO_MASSCONCENTRATION:
> +                       mutex_lock(&state->lock);
> +                       ret = pms7003_do_cmd(state, CMD_READ_PASSIVE);
> +                       if (ret) {
> +                               mutex_unlock(&state->lock);
> +                               return ret;
> +                       }
> +
> +                       *val = pms7003_get_pm(frame->data + chan->address);
> +                       mutex_unlock(&state->lock);
> +
> +                       return IIO_VAL_INT;
> +               default:
> +                       return -EINVAL;
> +               }
> +       }
> +
> +       return -EINVAL;
> +}
> +
> +static const struct iio_info pms7003_info = {
> +       .read_raw = pms7003_read_raw,
> +};
> +
> +#define PMS7003_CHAN(_index, _mod, _addr) { \
> +       .type = IIO_MASSCONCENTRATION, \
> +       .modified = 1, \
> +       .channel2 = IIO_MOD_ ## _mod, \
> +       .address = _addr, \
> +       .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED), \
> +       .scan_index = _index, \
> +       .scan_type = { \
> +               .sign = 'u', \
> +               .realbits = 10, \
> +               .storagebits = 16, \
> +               .endianness = IIO_CPU, \
> +       }, \
> +}
> +
> +static const struct iio_chan_spec pms7003_channels[] = {
> +       PMS7003_CHAN(0, PM1, PMS7003_PM1_OFFSET),
> +       PMS7003_CHAN(1, PM2P5, PMS7003_PM2P5_OFFSET),
> +       PMS7003_CHAN(2, PM10, PMS7003_PM10_OFFSET),
> +       IIO_CHAN_SOFT_TIMESTAMP(3),
> +};
> +
> +static u16 pms7003_calc_checksum(struct pms7003_frame *frame)
> +{
> +       u16 checksum = (PMS7003_MAGIC >> 8) + (u8)(PMS7003_MAGIC & 0xff) +
> +                      (frame->length >> 8) + (u8)frame->length;
> +       int i;
> +
> +       for (i = 0; i < frame->length - PMS7003_CHECKSUM_LENGTH; i++)
> +               checksum += frame->data[i];
> +
> +       return checksum;
> +}
> +
> +static bool pms7003_frame_is_okay(struct pms7003_frame *frame)
> +{
> +       int offset = frame->length - PMS7003_CHECKSUM_LENGTH;
> +       u16 checksum = get_unaligned_be16(frame->data + offset);
> +
> +       return checksum == pms7003_calc_checksum(frame);
> +}
> +
> +static int pms7003_receive_buf(struct serdev_device *serdev,
> +                              const unsigned char *buf, size_t size)
> +{
> +       struct iio_dev *indio_dev = serdev_device_get_drvdata(serdev);
> +       struct pms7003_state *state = iio_priv(indio_dev);
> +       struct pms7003_frame *frame = &state->frame;
> +       int num;
> +
> +       if (!frame->expected_length) {
> +               u16 magic;
> +
> +               /* wait for SOF and data length */
> +               if (size < 4)
> +                       return 0;
> +
> +               magic = get_unaligned_be16(buf);
> +               if (magic != PMS7003_MAGIC)
> +                       return 2;
> +
> +               num = get_unaligned_be16(buf + 2);
> +               if (num <= PMS7003_MAX_DATA_LENGTH) {
> +                       frame->expected_length = num;
> +                       frame->length = 0;
> +               }
> +
> +               return 4;
> +       }
> +
> +       num = min(size, (size_t)(frame->expected_length - frame->length));
> +       memcpy(frame->data + frame->length, buf, num);
> +       frame->length += num;
> +
> +       if (frame->length == frame->expected_length) {
> +               if (pms7003_frame_is_okay(frame))
> +                       complete(&state->frame_ready);
> +
> +               frame->expected_length = 0;
> +       }
> +
> +       return num;
> +}
> +
> +static const struct serdev_device_ops pms7003_serdev_ops = {
> +       .receive_buf = pms7003_receive_buf,
> +       .write_wakeup = serdev_device_write_wakeup,
> +};
> +
> +static void pms7003_stop(void *data)
> +{
> +       struct pms7003_state *state = data;
> +
> +       pms7003_do_cmd(state, CMD_SLEEP);
> +}
> +
> +static const unsigned long pms7003_scan_masks[] = { 0x07, 0x00 };
> +
> +static int pms7003_probe(struct serdev_device *serdev)
> +{
> +       struct pms7003_state *state;
> +       struct iio_dev *indio_dev;
> +       int ret;
> +
> +       indio_dev = devm_iio_device_alloc(&serdev->dev, sizeof(*state));
> +       if (!indio_dev)
> +               return -ENOMEM;
> +
> +       state = iio_priv(indio_dev);
> +       serdev_device_set_drvdata(serdev, indio_dev);
> +       state->serdev = serdev;
> +       indio_dev->dev.parent = &serdev->dev;
> +       indio_dev->info = &pms7003_info;
> +       indio_dev->name = PMS7003_DRIVER_NAME;
> +       indio_dev->channels = pms7003_channels,
> +       indio_dev->num_channels = ARRAY_SIZE(pms7003_channels);
> +       indio_dev->modes = INDIO_DIRECT_MODE;
> +       indio_dev->available_scan_masks = pms7003_scan_masks;
> +
> +       mutex_init(&state->lock);
> +       init_completion(&state->frame_ready);
> +
> +       serdev_device_set_client_ops(serdev, &pms7003_serdev_ops);
> +       ret = devm_serdev_device_open(&serdev->dev, serdev);
> +       if (ret)
> +               return ret;
> +
> +       serdev_device_set_baudrate(serdev, 9600);
> +       serdev_device_set_flow_control(serdev, false);
> +
> +       ret = serdev_device_set_parity(serdev, SERDEV_PARITY_NONE);
> +       if (ret)
> +               return ret;
> +
> +       ret = pms7003_do_cmd(state, CMD_WAKEUP);
> +       if (ret) {
> +               dev_err(&serdev->dev, "failed to wakeup sensor\n");
> +               return ret;
> +       }
> +
> +       ret = pms7003_do_cmd(state, CMD_ENTER_PASSIVE_MODE);
> +       if (ret) {
> +               dev_err(&serdev->dev, "failed to enter passive mode\n");
> +               return ret;
> +       }
> +
> +       ret = devm_add_action_or_reset(&serdev->dev, pms7003_stop, state);
> +       if (ret)
> +               return ret;
> +
> +       ret = devm_iio_triggered_buffer_setup(&serdev->dev, indio_dev, NULL,
> +                                             pms7003_trigger_handler, NULL);
> +       if (ret)
> +               return ret;
> +
> +       return devm_iio_device_register(&serdev->dev, indio_dev);
> +}
> +
> +static const struct of_device_id pms7003_of_match[] = {
> +       { .compatible = "plantower,pms7003" },
> +       { }
> +};
> +MODULE_DEVICE_TABLE(of, pms7003_of_match);
> +
> +static struct serdev_device_driver pms7003_driver = {
> +       .driver = {
> +               .name = PMS7003_DRIVER_NAME,
> +               .of_match_table = pms7003_of_match,
> +       },
> +       .probe = pms7003_probe,
> +};
> +module_serdev_device_driver(pms7003_driver);
> +
> +MODULE_AUTHOR("Tomasz Duszynski <tduszyns@gmail.com>");
> +MODULE_DESCRIPTION("Plantower PMS7003 particulate matter sensor driver");
> +MODULE_LICENSE("GPL v2");
> diff --git a/drivers/iio/chemical/sps30.c b/drivers/iio/chemical/sps30.c
> index 375df5060ed5..edbb956e81e8 100644
> --- a/drivers/iio/chemical/sps30.c
> +++ b/drivers/iio/chemical/sps30.c
> @@ -118,6 +118,7 @@ static int sps30_do_cmd(struct sps30_state *state, u16 cmd, u8 *data, int size)
>         case SPS30_READ_AUTO_CLEANING_PERIOD:
>                 buf[0] = SPS30_AUTO_CLEANING_PERIOD >> 8;
>                 buf[1] = (u8)SPS30_AUTO_CLEANING_PERIOD;
> +               /* fall through */
>         case SPS30_READ_DATA_READY_FLAG:
>         case SPS30_READ_DATA:
>         case SPS30_READ_SERIAL:
> @@ -295,6 +296,8 @@ static int sps30_read_raw(struct iio_dev *indio_dev,
>                                 *val2 = 10000;
>
>                                 return IIO_VAL_INT_PLUS_MICRO;
> +                       default:
> +                               return -EINVAL;
>                         }
>                 default:
>                         return -EINVAL;
> --
> 2.17.1
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] iio: adc: ad7766: Change alignment to match paranthesis
       [not found]   ` <CAG3pErKazCrupucQk91t9rWDiF+afLnozdAJFxVmS3AE+9ZWFg@mail.gmail.com>
@ 2019-04-25  6:51     ` Alexandru Ardelean
  0 siblings, 0 replies; 3+ messages in thread
From: Alexandru Ardelean @ 2019-04-25  6:51 UTC (permalink / raw)
  To: Camylla Cantanheide
  Cc: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
	Peter Meerwald-Stadler, linux-iio, LKML, kernel-usp

On Wed, Apr 24, 2019 at 9:25 PM Camylla Cantanheide
<c.cantanheide@gmail.com> wrote:
>
> Hello Alexandru,
>
> If you observe well the commit does the same kind of fix for the same file. In this case, the alignment of parenthesis in various parts of the code according to the checkpatch.pl's message.
>
> I believe, that he was raised correctly, only the description is detailed. The commit earlier, had been approved, but did not contain the S-o-B. However, if you think something should be changed and what should I change, it won't be a problem. Thanks!
>

Hey,

So, the title of the patch is:
"iio: adc: ad7766: Change alignment to match paranthesis"

However, the patch is changing more files:
  .../bindings/iio/adc/nuvoton,npcm-adc.txt     |  11 -
  .../iio/chemical/plantower,pms7003.txt        |  20 ++
  .../devicetree/bindings/vendor-prefixes.txt   |   1 +
  drivers/iio/adc/ad7766.c                      |  22 +-
  drivers/iio/chemical/Kconfig                  |  10 +
  drivers/iio/chemical/Makefile                 |   1 +
  drivers/iio/chemical/pms7003.c                | 340 ++++++++++++++++++
  drivers/iio/chemical/sps30.c                  |   3 +

For one part, you are also adding a driver (pms7003.c).

The idea is that the title of the patch should summarize what the
patch is doing.
In this case, it's not clear.
It looks to me that the patch was generated incorrectly via a git command.

So, maybe try to regenerate the patch with just the ad7766 driver changes.

Thanks
Alex

> Best regards,
> Camylla Cantanheide
>
> Em qua, 24 de abr de 2019 às 04:43, Alexandru Ardelean <ardeleanalex@gmail.com> escreveu:
>>
>> On Tue, Apr 23, 2019 at 11:04 PM Camylla Gonçalves Cantanheide
>> <c.cantanheide@gmail.com> wrote:
>> >
>> > This commit align broken line to match upper line parenthesis,
>> > in lines 80, 130, 237, 242, 255, 264 and 293. Solves the checkpatch.pl's message:
>> >
>> > CHECK: Alignment should match open parenthesis
>> >
>> >In lines 130, 255, 264 and 293 it was necessary to break a line.
>> >
>>
>> This patch is errounous; seems it wasn't generated correctly.
>> It does too many things in one commit.
>>
>> > Signed-off-by: Camylla Gonçalves Cantanheide <c.cantanheide@gmail.com>
>> > ---
>> >  .../bindings/iio/adc/nuvoton,npcm-adc.txt     |  11 -
>> >  .../iio/chemical/plantower,pms7003.txt        |  20 ++
>> >  .../devicetree/bindings/vendor-prefixes.txt   |   1 +
>> >  drivers/iio/adc/ad7766.c                      |  22 +-
>> >  drivers/iio/chemical/Kconfig                  |  10 +
>> >  drivers/iio/chemical/Makefile                 |   1 +
>> >  drivers/iio/chemical/pms7003.c                | 340 ++++++++++++++++++
>> >  drivers/iio/chemical/sps30.c                  |   3 +
>> >  8 files changed, 388 insertions(+), 20 deletions(-)
>> >  create mode 100644 Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
>> >  create mode 100644 drivers/iio/chemical/pms7003.c
>> >
>> > diff --git a/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt b/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
>> > index 1b8132cd9060..eb939fe77836 100644
>> > --- a/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
>> > +++ b/Documentation/devicetree/bindings/iio/adc/nuvoton,npcm-adc.txt
>> > @@ -14,11 +14,6 @@ Optional properties:
>> >                            vref-supply is not added the ADC will use internal voltage
>> >                            reference.
>> >
>> > -Required Node in the NPCM7xx BMC:
>> > -An additional register is present in the NPCM7xx SOC which is
>> > -assumed to be in the same device tree, with and marked as
>> > -compatible with "nuvoton,npcm750-rst".
>> > -
>> >  Example:
>> >
>> >  adc: adc@f000c000 {
>> > @@ -27,9 +22,3 @@ adc: adc@f000c000 {
>> >         interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>;
>> >         clocks = <&clk NPCM7XX_CLK_ADC>;
>> >  };
>> > -
>> > -rst: rst@f0801000 {
>> > -       compatible = "nuvoton,npcm750-rst", "syscon",
>> > -       "simple-mfd";
>> > -       reg = <0xf0801000 0x6C>;
>> > -};
>> > diff --git a/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt b/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
>> > new file mode 100644
>> > index 000000000000..7b5f06f324c8
>> > --- /dev/null
>> > +++ b/Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.txt
>> > @@ -0,0 +1,20 @@
>> > +* Plantower PMS7003 particulate matter sensor
>> > +
>> > +Required properties:
>> > +- compatible: must be "plantower,pms7003"
>> > +- vcc-supply: phandle to the regulator that provides power to the sensor
>> > +
>> > +Optional properties:
>> > +- plantower,set-gpios: phandle to the GPIO connected to the SET line
>> > +- reset-gpios: phandle to the GPIO connected to the RESET line
>> > +
>> > +Refer to serial/slave-device.txt for generic serial attached device bindings.
>> > +
>> > +Example:
>> > +
>> > +&uart0 {
>> > +       air-pollution-sensor {
>> > +               compatible = "plantower,pms7003";
>> > +               vcc-supply = <&reg_vcc5v0>;
>> > +       };
>> > +};
>> > diff --git a/Documentation/devicetree/bindings/vendor-prefixes.txt b/Documentation/devicetree/bindings/vendor-prefixes.txt
>> > index 389508584f48..42816baeb381 100644
>> > --- a/Documentation/devicetree/bindings/vendor-prefixes.txt
>> > +++ b/Documentation/devicetree/bindings/vendor-prefixes.txt
>> > @@ -304,6 +304,7 @@ phytec      PHYTEC Messtechnik GmbH
>> >  picochip       Picochip Ltd
>> >  pine64 Pine64
>> >  pixcir  PIXCIR MICROELECTRONICS Co., Ltd
>> > +plantower Plantower Co., Ltd
>> >  plathome       Plat'Home Co., Ltd.
>> >  plda   PLDA
>> >  plx    Broadcom Corporation (formerly PLX Technology)
>> > diff --git a/drivers/iio/adc/ad7766.c b/drivers/iio/adc/ad7766.c
>> > index 3ae14fc8c649..101502435768 100644
>> > --- a/drivers/iio/adc/ad7766.c
>> > +++ b/drivers/iio/adc/ad7766.c
>> > @@ -77,7 +77,7 @@ static irqreturn_t ad7766_trigger_handler(int irq, void *p)
>> >                 goto done;
>> >
>> >         iio_push_to_buffers_with_timestamp(indio_dev, ad7766->data,
>> > -               pf->timestamp);
>> > +                                          pf->timestamp);
>> >  done:
>> >         iio_trigger_notify_done(indio_dev->trig);
>> >
>> > @@ -127,7 +127,8 @@ static int ad7766_postdisable(struct iio_dev *indio_dev)
>> >  }
>> >
>> >  static int ad7766_read_raw(struct iio_dev *indio_dev,
>> > -       const struct iio_chan_spec *chan, int *val, int *val2, long info)
>> > +                          const struct iio_chan_spec *chan, int *val,
>> > +                          int *val2, long info)
>> >  {
>> >         struct ad7766 *ad7766 = iio_priv(indio_dev);
>> >         struct regulator *vref = ad7766->reg[AD7766_SUPPLY_VREF].consumer;
>> > @@ -234,12 +235,12 @@ static int ad7766_probe(struct spi_device *spi)
>> >         ad7766->reg[AD7766_SUPPLY_VREF].supply = "vref";
>> >
>> >         ret = devm_regulator_bulk_get(&spi->dev, ARRAY_SIZE(ad7766->reg),
>> > -               ad7766->reg);
>> > +                                     ad7766->reg);
>> >         if (ret)
>> >                 return ret;
>> >
>> >         ad7766->pd_gpio = devm_gpiod_get_optional(&spi->dev, "powerdown",
>> > -               GPIOD_OUT_HIGH);
>> > +                                                 GPIOD_OUT_HIGH);
>> >         if (IS_ERR(ad7766->pd_gpio))
>> >                 return PTR_ERR(ad7766->pd_gpio);
>> >
>> > @@ -252,7 +253,8 @@ static int ad7766_probe(struct spi_device *spi)
>> >
>> >         if (spi->irq > 0) {
>> >                 ad7766->trig = devm_iio_trigger_alloc(&spi->dev, "%s-dev%d",
>> > -                       indio_dev->name, indio_dev->id);
>> > +                                                     indio_dev->name,
>> > +                                                     indio_dev->id);
>> >                 if (!ad7766->trig)
>> >                         return -ENOMEM;
>> >
>> > @@ -261,8 +263,9 @@ static int ad7766_probe(struct spi_device *spi)
>> >                 iio_trigger_set_drvdata(ad7766->trig, ad7766);
>> >
>> >                 ret = devm_request_irq(&spi->dev, spi->irq, ad7766_irq,
>> > -                       IRQF_TRIGGER_FALLING, dev_name(&spi->dev),
>> > -                       ad7766->trig);
>> > +                                      IRQF_TRIGGER_FALLING,
>> > +                                      dev_name(&spi->dev),
>> > +                                      ad7766->trig);
>> >                 if (ret < 0)
>> >                         return ret;
>> >
>> > @@ -290,8 +293,9 @@ static int ad7766_probe(struct spi_device *spi)
>> >         spi_message_add_tail(&ad7766->xfer, &ad7766->msg);
>> >
>> >         ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev,
>> > -               &iio_pollfunc_store_time, &ad7766_trigger_handler,
>> > -               &ad7766_buffer_setup_ops);
>> > +                                             &iio_pollfunc_store_time,
>> > +                                             &ad7766_trigger_handler,
>> > +                                             &ad7766_buffer_setup_ops);
>> >         if (ret)
>> >                 return ret;
>> >
>> > diff --git a/drivers/iio/chemical/Kconfig b/drivers/iio/chemical/Kconfig
>> > index 57832b4360e9..d5d146e9e372 100644
>> > --- a/drivers/iio/chemical/Kconfig
>> > +++ b/drivers/iio/chemical/Kconfig
>> > @@ -61,6 +61,16 @@ config IAQCORE
>> >           iAQ-Core Continuous/Pulsed VOC (Volatile Organic Compounds)
>> >           sensors
>> >
>> > +config PMS7003
>> > +       tristate "Plantower PMS7003 particulate matter sensor"
>> > +       depends on SERIAL_DEV_BUS
>> > +       help
>> > +         Say Y here to build support for the Plantower PMS7003 particulate
>> > +         matter sensor.
>> > +
>> > +         To compile this driver as a module, choose M here: the module will
>> > +         be called pms7003.
>> > +
>> >  config SPS30
>> >         tristate "SPS30 particulate matter sensor"
>> >         depends on I2C
>> > diff --git a/drivers/iio/chemical/Makefile b/drivers/iio/chemical/Makefile
>> > index 65bf0f89c0e4..f5d1365acb49 100644
>> > --- a/drivers/iio/chemical/Makefile
>> > +++ b/drivers/iio/chemical/Makefile
>> > @@ -9,6 +9,7 @@ obj-$(CONFIG_BME680_I2C) += bme680_i2c.o
>> >  obj-$(CONFIG_BME680_SPI) += bme680_spi.o
>> >  obj-$(CONFIG_CCS811)           += ccs811.o
>> >  obj-$(CONFIG_IAQCORE)          += ams-iaq-core.o
>> > +obj-$(CONFIG_PMS7003) += pms7003.o
>> >  obj-$(CONFIG_SENSIRION_SGP30)  += sgp30.o
>> >  obj-$(CONFIG_SPS30) += sps30.o
>> >  obj-$(CONFIG_VZ89X)            += vz89x.o
>> > diff --git a/drivers/iio/chemical/pms7003.c b/drivers/iio/chemical/pms7003.c
>> > new file mode 100644
>> > index 000000000000..db8e7b2327b3
>> > --- /dev/null
>> > +++ b/drivers/iio/chemical/pms7003.c
>> > @@ -0,0 +1,340 @@
>> > +// SPDX-License-Identifier: GPL-2.0
>> > +/*
>> > + * Plantower PMS7003 particulate matter sensor driver
>> > + *
>> > + * Copyright (c) Tomasz Duszynski <tduszyns@gmail.com>
>> > + */
>> > +
>> > +#include <asm/unaligned.h>
>> > +#include <linux/completion.h>
>> > +#include <linux/device.h>
>> > +#include <linux/errno.h>
>> > +#include <linux/iio/buffer.h>
>> > +#include <linux/iio/iio.h>
>> > +#include <linux/iio/trigger_consumer.h>
>> > +#include <linux/iio/triggered_buffer.h>
>> > +#include <linux/jiffies.h>
>> > +#include <linux/kernel.h>
>> > +#include <linux/mod_devicetable.h>
>> > +#include <linux/module.h>
>> > +#include <linux/mutex.h>
>> > +#include <linux/serdev.h>
>> > +
>> > +#define PMS7003_DRIVER_NAME "pms7003"
>> > +
>> > +#define PMS7003_MAGIC 0x424d
>> > +/* last 2 data bytes hold frame checksum */
>> > +#define PMS7003_MAX_DATA_LENGTH 28
>> > +#define PMS7003_CHECKSUM_LENGTH 2
>> > +#define PMS7003_PM10_OFFSET 10
>> > +#define PMS7003_PM2P5_OFFSET 8
>> > +#define PMS7003_PM1_OFFSET 6
>> > +
>> > +#define PMS7003_TIMEOUT msecs_to_jiffies(6000)
>> > +#define PMS7003_CMD_LENGTH 7
>> > +#define PMS7003_PM_MAX 1000
>> > +#define PMS7003_PM_MIN 0
>> > +
>> > +enum {
>> > +       PM1,
>> > +       PM2P5,
>> > +       PM10,
>> > +};
>> > +
>> > +enum pms7003_cmd {
>> > +       CMD_WAKEUP,
>> > +       CMD_ENTER_PASSIVE_MODE,
>> > +       CMD_READ_PASSIVE,
>> > +       CMD_SLEEP,
>> > +};
>> > +
>> > +/*
>> > + * commands have following format:
>> > + *
>> > + * +------+------+-----+------+-----+-----------+-----------+
>> > + * | 0x42 | 0x4d | cmd | 0x00 | arg | cksum msb | cksum lsb |
>> > + * +------+------+-----+------+-----+-----------+-----------+
>> > + */
>> > +static const u8 pms7003_cmd_tbl[][PMS7003_CMD_LENGTH] = {
>> > +       [CMD_WAKEUP] = { 0x42, 0x4d, 0xe4, 0x00, 0x01, 0x01, 0x74 },
>> > +       [CMD_ENTER_PASSIVE_MODE] = { 0x42, 0x4d, 0xe1, 0x00, 0x00, 0x01, 0x70 },
>> > +       [CMD_READ_PASSIVE] = { 0x42, 0x4d, 0xe2, 0x00, 0x00, 0x01, 0x71 },
>> > +       [CMD_SLEEP] = { 0x42, 0x4d, 0xe4, 0x00, 0x00, 0x01, 0x73 },
>> > +};
>> > +
>> > +struct pms7003_frame {
>> > +       u8 data[PMS7003_MAX_DATA_LENGTH];
>> > +       u16 expected_length;
>> > +       u16 length;
>> > +};
>> > +
>> > +struct pms7003_state {
>> > +       struct serdev_device *serdev;
>> > +       struct pms7003_frame frame;
>> > +       struct completion frame_ready;
>> > +       struct mutex lock; /* must be held whenever state gets touched */
>> > +};
>> > +
>> > +static int pms7003_do_cmd(struct pms7003_state *state, enum pms7003_cmd cmd)
>> > +{
>> > +       int ret;
>> > +
>> > +       ret = serdev_device_write(state->serdev, pms7003_cmd_tbl[cmd],
>> > +                                 PMS7003_CMD_LENGTH, PMS7003_TIMEOUT);
>> > +       if (ret < PMS7003_CMD_LENGTH)
>> > +               return ret < 0 ? ret : -EIO;
>> > +
>> > +       ret = wait_for_completion_interruptible_timeout(&state->frame_ready,
>> > +                                                       PMS7003_TIMEOUT);
>> > +       if (!ret)
>> > +               ret = -ETIMEDOUT;
>> > +
>> > +       return ret < 0 ? ret : 0;
>> > +}
>> > +
>> > +static u16 pms7003_get_pm(const u8 *data)
>> > +{
>> > +       return clamp_val(get_unaligned_be16(data),
>> > +                        PMS7003_PM_MIN, PMS7003_PM_MAX);
>> > +}
>> > +
>> > +static irqreturn_t pms7003_trigger_handler(int irq, void *p)
>> > +{
>> > +       struct iio_poll_func *pf = p;
>> > +       struct iio_dev *indio_dev = pf->indio_dev;
>> > +       struct pms7003_state *state = iio_priv(indio_dev);
>> > +       struct pms7003_frame *frame = &state->frame;
>> > +       u16 data[3 + 1 + 4]; /* PM1, PM2P5, PM10, padding, timestamp */
>> > +       int ret;
>> > +
>> > +       mutex_lock(&state->lock);
>> > +       ret = pms7003_do_cmd(state, CMD_READ_PASSIVE);
>> > +       if (ret) {
>> > +               mutex_unlock(&state->lock);
>> > +               goto err;
>> > +       }
>> > +
>> > +       data[PM1] = pms7003_get_pm(frame->data + PMS7003_PM1_OFFSET);
>> > +       data[PM2P5] = pms7003_get_pm(frame->data + PMS7003_PM2P5_OFFSET);
>> > +       data[PM10] = pms7003_get_pm(frame->data + PMS7003_PM10_OFFSET);
>> > +       mutex_unlock(&state->lock);
>> > +
>> > +       iio_push_to_buffers_with_timestamp(indio_dev, data,
>> > +                                          iio_get_time_ns(indio_dev));
>> > +err:
>> > +       iio_trigger_notify_done(indio_dev->trig);
>> > +
>> > +       return IRQ_HANDLED;
>> > +}
>> > +
>> > +static int pms7003_read_raw(struct iio_dev *indio_dev,
>> > +                           struct iio_chan_spec const *chan,
>> > +                           int *val, int *val2, long mask)
>> > +{
>> > +       struct pms7003_state *state = iio_priv(indio_dev);
>> > +       struct pms7003_frame *frame = &state->frame;
>> > +       int ret;
>> > +
>> > +       switch (mask) {
>> > +       case IIO_CHAN_INFO_PROCESSED:
>> > +               switch (chan->type) {
>> > +               case IIO_MASSCONCENTRATION:
>> > +                       mutex_lock(&state->lock);
>> > +                       ret = pms7003_do_cmd(state, CMD_READ_PASSIVE);
>> > +                       if (ret) {
>> > +                               mutex_unlock(&state->lock);
>> > +                               return ret;
>> > +                       }
>> > +
>> > +                       *val = pms7003_get_pm(frame->data + chan->address);
>> > +                       mutex_unlock(&state->lock);
>> > +
>> > +                       return IIO_VAL_INT;
>> > +               default:
>> > +                       return -EINVAL;
>> > +               }
>> > +       }
>> > +
>> > +       return -EINVAL;
>> > +}
>> > +
>> > +static const struct iio_info pms7003_info = {
>> > +       .read_raw = pms7003_read_raw,
>> > +};
>> > +
>> > +#define PMS7003_CHAN(_index, _mod, _addr) { \
>> > +       .type = IIO_MASSCONCENTRATION, \
>> > +       .modified = 1, \
>> > +       .channel2 = IIO_MOD_ ## _mod, \
>> > +       .address = _addr, \
>> > +       .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED), \
>> > +       .scan_index = _index, \
>> > +       .scan_type = { \
>> > +               .sign = 'u', \
>> > +               .realbits = 10, \
>> > +               .storagebits = 16, \
>> > +               .endianness = IIO_CPU, \
>> > +       }, \
>> > +}
>> > +
>> > +static const struct iio_chan_spec pms7003_channels[] = {
>> > +       PMS7003_CHAN(0, PM1, PMS7003_PM1_OFFSET),
>> > +       PMS7003_CHAN(1, PM2P5, PMS7003_PM2P5_OFFSET),
>> > +       PMS7003_CHAN(2, PM10, PMS7003_PM10_OFFSET),
>> > +       IIO_CHAN_SOFT_TIMESTAMP(3),
>> > +};
>> > +
>> > +static u16 pms7003_calc_checksum(struct pms7003_frame *frame)
>> > +{
>> > +       u16 checksum = (PMS7003_MAGIC >> 8) + (u8)(PMS7003_MAGIC & 0xff) +
>> > +                      (frame->length >> 8) + (u8)frame->length;
>> > +       int i;
>> > +
>> > +       for (i = 0; i < frame->length - PMS7003_CHECKSUM_LENGTH; i++)
>> > +               checksum += frame->data[i];
>> > +
>> > +       return checksum;
>> > +}
>> > +
>> > +static bool pms7003_frame_is_okay(struct pms7003_frame *frame)
>> > +{
>> > +       int offset = frame->length - PMS7003_CHECKSUM_LENGTH;
>> > +       u16 checksum = get_unaligned_be16(frame->data + offset);
>> > +
>> > +       return checksum == pms7003_calc_checksum(frame);
>> > +}
>> > +
>> > +static int pms7003_receive_buf(struct serdev_device *serdev,
>> > +                              const unsigned char *buf, size_t size)
>> > +{
>> > +       struct iio_dev *indio_dev = serdev_device_get_drvdata(serdev);
>> > +       struct pms7003_state *state = iio_priv(indio_dev);
>> > +       struct pms7003_frame *frame = &state->frame;
>> > +       int num;
>> > +
>> > +       if (!frame->expected_length) {
>> > +               u16 magic;
>> > +
>> > +               /* wait for SOF and data length */
>> > +               if (size < 4)
>> > +                       return 0;
>> > +
>> > +               magic = get_unaligned_be16(buf);
>> > +               if (magic != PMS7003_MAGIC)
>> > +                       return 2;
>> > +
>> > +               num = get_unaligned_be16(buf + 2);
>> > +               if (num <= PMS7003_MAX_DATA_LENGTH) {
>> > +                       frame->expected_length = num;
>> > +                       frame->length = 0;
>> > +               }
>> > +
>> > +               return 4;
>> > +       }
>> > +
>> > +       num = min(size, (size_t)(frame->expected_length - frame->length));
>> > +       memcpy(frame->data + frame->length, buf, num);
>> > +       frame->length += num;
>> > +
>> > +       if (frame->length == frame->expected_length) {
>> > +               if (pms7003_frame_is_okay(frame))
>> > +                       complete(&state->frame_ready);
>> > +
>> > +               frame->expected_length = 0;
>> > +       }
>> > +
>> > +       return num;
>> > +}
>> > +
>> > +static const struct serdev_device_ops pms7003_serdev_ops = {
>> > +       .receive_buf = pms7003_receive_buf,
>> > +       .write_wakeup = serdev_device_write_wakeup,
>> > +};
>> > +
>> > +static void pms7003_stop(void *data)
>> > +{
>> > +       struct pms7003_state *state = data;
>> > +
>> > +       pms7003_do_cmd(state, CMD_SLEEP);
>> > +}
>> > +
>> > +static const unsigned long pms7003_scan_masks[] = { 0x07, 0x00 };
>> > +
>> > +static int pms7003_probe(struct serdev_device *serdev)
>> > +{
>> > +       struct pms7003_state *state;
>> > +       struct iio_dev *indio_dev;
>> > +       int ret;
>> > +
>> > +       indio_dev = devm_iio_device_alloc(&serdev->dev, sizeof(*state));
>> > +       if (!indio_dev)
>> > +               return -ENOMEM;
>> > +
>> > +       state = iio_priv(indio_dev);
>> > +       serdev_device_set_drvdata(serdev, indio_dev);
>> > +       state->serdev = serdev;
>> > +       indio_dev->dev.parent = &serdev->dev;
>> > +       indio_dev->info = &pms7003_info;
>> > +       indio_dev->name = PMS7003_DRIVER_NAME;
>> > +       indio_dev->channels = pms7003_channels,
>> > +       indio_dev->num_channels = ARRAY_SIZE(pms7003_channels);
>> > +       indio_dev->modes = INDIO_DIRECT_MODE;
>> > +       indio_dev->available_scan_masks = pms7003_scan_masks;
>> > +
>> > +       mutex_init(&state->lock);
>> > +       init_completion(&state->frame_ready);
>> > +
>> > +       serdev_device_set_client_ops(serdev, &pms7003_serdev_ops);
>> > +       ret = devm_serdev_device_open(&serdev->dev, serdev);
>> > +       if (ret)
>> > +               return ret;
>> > +
>> > +       serdev_device_set_baudrate(serdev, 9600);
>> > +       serdev_device_set_flow_control(serdev, false);
>> > +
>> > +       ret = serdev_device_set_parity(serdev, SERDEV_PARITY_NONE);
>> > +       if (ret)
>> > +               return ret;
>> > +
>> > +       ret = pms7003_do_cmd(state, CMD_WAKEUP);
>> > +       if (ret) {
>> > +               dev_err(&serdev->dev, "failed to wakeup sensor\n");
>> > +               return ret;
>> > +       }
>> > +
>> > +       ret = pms7003_do_cmd(state, CMD_ENTER_PASSIVE_MODE);
>> > +       if (ret) {
>> > +               dev_err(&serdev->dev, "failed to enter passive mode\n");
>> > +               return ret;
>> > +       }
>> > +
>> > +       ret = devm_add_action_or_reset(&serdev->dev, pms7003_stop, state);
>> > +       if (ret)
>> > +               return ret;
>> > +
>> > +       ret = devm_iio_triggered_buffer_setup(&serdev->dev, indio_dev, NULL,
>> > +                                             pms7003_trigger_handler, NULL);
>> > +       if (ret)
>> > +               return ret;
>> > +
>> > +       return devm_iio_device_register(&serdev->dev, indio_dev);
>> > +}
>> > +
>> > +static const struct of_device_id pms7003_of_match[] = {
>> > +       { .compatible = "plantower,pms7003" },
>> > +       { }
>> > +};
>> > +MODULE_DEVICE_TABLE(of, pms7003_of_match);
>> > +
>> > +static struct serdev_device_driver pms7003_driver = {
>> > +       .driver = {
>> > +               .name = PMS7003_DRIVER_NAME,
>> > +               .of_match_table = pms7003_of_match,
>> > +       },
>> > +       .probe = pms7003_probe,
>> > +};
>> > +module_serdev_device_driver(pms7003_driver);
>> > +
>> > +MODULE_AUTHOR("Tomasz Duszynski <tduszyns@gmail.com>");
>> > +MODULE_DESCRIPTION("Plantower PMS7003 particulate matter sensor driver");
>> > +MODULE_LICENSE("GPL v2");
>> > diff --git a/drivers/iio/chemical/sps30.c b/drivers/iio/chemical/sps30.c
>> > index 375df5060ed5..edbb956e81e8 100644
>> > --- a/drivers/iio/chemical/sps30.c
>> > +++ b/drivers/iio/chemical/sps30.c
>> > @@ -118,6 +118,7 @@ static int sps30_do_cmd(struct sps30_state *state, u16 cmd, u8 *data, int size)
>> >         case SPS30_READ_AUTO_CLEANING_PERIOD:
>> >                 buf[0] = SPS30_AUTO_CLEANING_PERIOD >> 8;
>> >                 buf[1] = (u8)SPS30_AUTO_CLEANING_PERIOD;
>> > +               /* fall through */
>> >         case SPS30_READ_DATA_READY_FLAG:
>> >         case SPS30_READ_DATA:
>> >         case SPS30_READ_SERIAL:
>> > @@ -295,6 +296,8 @@ static int sps30_read_raw(struct iio_dev *indio_dev,
>> >                                 *val2 = 10000;
>> >
>> >                                 return IIO_VAL_INT_PLUS_MICRO;
>> > +                       default:
>> > +                               return -EINVAL;
>> >                         }
>> >                 default:
>> >                         return -EINVAL;
>> > --
>> > 2.17.1
>> >
>>
>> --
>> You received this message because you are subscribed to the Google Groups "Kernel USP" group.
>> To unsubscribe from this group and stop receiving emails from it, send an email to kernel-usp+unsubscribe@googlegroups.com.
>> To post to this group, send email to kernel-usp@googlegroups.com.
>> To view this discussion on the web visit https://groups.google.com/d/msgid/kernel-usp/CA%2BU%3DDspLM3tuTosQYnPbD1UKMSb6G7qKAa%3DKp2k2AjPmwd52Yw%40mail.gmail.com.
>> For more options, visit https://groups.google.com/d/optout.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-04-25  6:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-23 20:03 [PATCH v2] iio: adc: ad7766: Change alignment to match paranthesis Camylla Gonçalves Cantanheide
2019-04-24  7:43 ` Alexandru Ardelean
     [not found]   ` <CAG3pErKazCrupucQk91t9rWDiF+afLnozdAJFxVmS3AE+9ZWFg@mail.gmail.com>
2019-04-25  6:51     ` Alexandru Ardelean

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).