Commit ffae1067 authored by Miquel Raynal's avatar Miquel Raynal Committed by Jonathan Cameron

iio: adc: max1027: Make it optional to use interrupts

The chip has a 'start conversion' and a 'end of conversion' pair of
pins. They can be used but this is absolutely not mandatory as regular
polling of the value is totally fine with the current internal
clocking setup. Turn the interrupts optional and do not error out if
they are not inquired in the device tree. This has the effect to
prevent triggered buffers use though.
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 038696f8
...@@ -430,35 +430,40 @@ static int max1027_probe(struct spi_device *spi) ...@@ -430,35 +430,40 @@ static int max1027_probe(struct spi_device *spi)
return -ENOMEM; return -ENOMEM;
} }
ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev, if (spi->irq) {
&iio_pollfunc_store_time, ret = devm_iio_triggered_buffer_setup(&spi->dev, indio_dev,
&max1027_trigger_handler, NULL); &iio_pollfunc_store_time,
if (ret < 0) { &max1027_trigger_handler,
dev_err(&indio_dev->dev, "Failed to setup buffer\n"); NULL);
return ret; if (ret < 0) {
} dev_err(&indio_dev->dev, "Failed to setup buffer\n");
return ret;
st->trig = devm_iio_trigger_alloc(&spi->dev, "%s-trigger", }
indio_dev->name);
if (st->trig == NULL) {
ret = -ENOMEM;
dev_err(&indio_dev->dev, "Failed to allocate iio trigger\n");
return ret;
}
st->trig->ops = &max1027_trigger_ops; st->trig = devm_iio_trigger_alloc(&spi->dev, "%s-trigger",
st->trig->dev.parent = &spi->dev; indio_dev->name);
iio_trigger_set_drvdata(st->trig, indio_dev); if (st->trig == NULL) {
iio_trigger_register(st->trig); ret = -ENOMEM;
dev_err(&indio_dev->dev,
"Failed to allocate iio trigger\n");
return ret;
}
ret = devm_request_threaded_irq(&spi->dev, spi->irq, st->trig->ops = &max1027_trigger_ops;
iio_trigger_generic_data_rdy_poll, st->trig->dev.parent = &spi->dev;
NULL, iio_trigger_set_drvdata(st->trig, indio_dev);
IRQF_TRIGGER_FALLING, iio_trigger_register(st->trig);
spi->dev.driver->name, st->trig);
if (ret < 0) { ret = devm_request_threaded_irq(&spi->dev, spi->irq,
dev_err(&indio_dev->dev, "Failed to allocate IRQ.\n"); iio_trigger_generic_data_rdy_poll,
return ret; NULL,
IRQF_TRIGGER_FALLING,
spi->dev.driver->name,
st->trig);
if (ret < 0) {
dev_err(&indio_dev->dev, "Failed to allocate IRQ.\n");
return ret;
}
} }
/* Disable averaging */ /* Disable averaging */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment