LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org> To: Lucas Stankus <lucas.p.stankus@gmail.com> Cc: Andy Shevchenko <andy.shevchenko@gmail.com>, Lars-Peter Clausen <lars@metafoo.de>, Michael Hennerich <Michael.Hennerich@analog.com>, Rob Herring <robh+dt@kernel.org>, "Bogdan, Dragos" <Dragos.Bogdan@analog.com>, Darius <Darius.Berghe@analog.com>, linux-iio <linux-iio@vger.kernel.org>, devicetree <devicetree@vger.kernel.org>, Linux Kernel Mailing List <linux-kernel@vger.kernel.org> Subject: Re: [PATCH v3 2/2] iio: accel: Add driver support for ADXL313 Date: Sun, 29 Aug 2021 15:12:32 +0100 [thread overview] Message-ID: <20210829151232.29cb1ee1@jic23-huawei> (raw) In-Reply-To: <CACKVXZDpBXK-RRQy4OJ=i+mCFxP=LVBZe0GjAkg_GXZ8hCiSng@mail.gmail.com> On Wed, 18 Aug 2021 17:01:43 -0300 Lucas Stankus <lucas.p.stankus@gmail.com> wrote: > On Thu, Aug 12, 2021 at 8:06 AM Andy Shevchenko > <andy.shevchenko@gmail.com> wrote: > > > > On Thu, Aug 12, 2021 at 12:19 AM Lucas Stankus > > <lucas.p.stankus@gmail.com> wrote: > > > > > > ADXL313 is a small, thin, low power, 3-axis accelerometer with high > > > resolution measurement up to +/-4g. It includes an integrated 32-level > > > FIFO and has activity and inactivity sensing capabilities. > > > > Thanks for an update, my comments below. > > After addressing them, feel free to add > > Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> > > > > Sorry for the late reply. I've addressed most of your comments for the > v4, but the two I've commented below. > > > > > Provide a kernel doc for the probe() > > > > Is there some driver that did something similar that I can take > inspiration from? I'm not sure where I should add this doc and how I > should format it, so a north would be appreciated :) https://elixir.bootlin.com/linux/latest/source/Documentation/doc-guide/kernel-doc.rst In theory all exported functions should have kernel-doc, but in practice we sometimes skip it for a function only intended to have one or two users. However, in this case the "setup" parameter is sufficiently unusual that it would be good to have detailed documents. Make sure to run a test build of the docs to pick up on any formatting issues. That help file explains how to do it. > > > > +int adxl313_core_probe(struct device *dev, > > > + struct regmap *regmap, > > > + const char *name, > > > + int (*interface_specific_setup)(struct device *, > > > + struct regmap *)) > > > > Ditto for the "setup" name. > > > > > +{ > > > + struct adxl313_data *data; > > > + struct iio_dev *indio_dev; > > > + int ret; > > > + > > > + indio_dev = devm_iio_device_alloc(dev, sizeof(*data)); > > > + if (!indio_dev) > > > + return -ENOMEM; > > > + > > > + data = iio_priv(indio_dev); > > > + data->regmap = regmap; > > > + mutex_init(&data->lock); > > > + > > > + indio_dev->name = name; > > > + indio_dev->info = &adxl313_info; > > > + indio_dev->modes = INDIO_DIRECT_MODE; > > > + indio_dev->channels = adxl313_channels; > > > + indio_dev->num_channels = ARRAY_SIZE(adxl313_channels); > > > + > > > + ret = adxl313_setup(dev, data, interface_specific_setup); > > > + if (ret) { > > > + dev_err(dev, "ADXL313 setup failed\n"); > > > + return ret; > > > + } > > > + > > > + return devm_iio_device_register(dev, indio_dev); > > > +} > > > +EXPORT_SYMBOL_GPL(adxl313_core_probe); > > > + > > > +MODULE_AUTHOR("Lucas Stankus <lucas.p.stankus@gmail.com>"); > > > +MODULE_DESCRIPTION("ADXL313 3-Axis Digital Accelerometer core driver"); > > > +MODULE_LICENSE("GPL v2"); > > > diff --git a/drivers/iio/accel/adxl313_i2c.c b/drivers/iio/accel/adxl313_i2c.c > > > new file mode 100644 > > > index 000000000000..517c6f1c43ad > > > --- /dev/null > > > +++ b/drivers/iio/accel/adxl313_i2c.c > > > @@ -0,0 +1,65 @@ > > > +// SPDX-License-Identifier: GPL-2.0-only > > > +/* > > > + * ADXL313 3-Axis Digital Accelerometer > > > + * > > > + * Copyright (c) 2021 Lucas Stankus <lucas.p.stankus@gmail.com> > > > + * > > > + * Datasheet: https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL313.pdf > > > + */ > > > + > > > +#include <linux/i2c.h> > > > +#include <linux/module.h> > > > +#include <linux/regmap.h> > > > + > > > +#include "adxl313.h" > > > + > > > +static const struct regmap_config adxl313_i2c_regmap_config = { > > > + .reg_bits = 8, > > > + .val_bits = 8, > > > + .rd_table = &adxl313_readable_regs_table, > > > + .wr_table = &adxl313_writable_regs_table, > > > + .max_register = 0x39, > > > +}; > > > + > > > +static int adxl313_i2c_probe(struct i2c_client *client) > > > +{ > > > + struct regmap *regmap; > > > + > > > + regmap = devm_regmap_init_i2c(client, &adxl313_i2c_regmap_config); > > > + if (IS_ERR(regmap)) { > > > + dev_err(&client->dev, "Error initializing i2c regmap: %ld\n", > > > + PTR_ERR(regmap)); > > > + return PTR_ERR(regmap); > > > + } > > > + > > > + return adxl313_core_probe(&client->dev, regmap, client->name, NULL); > > > +} > > > + > > > +static const struct i2c_device_id adxl313_i2c_id[] = { > > > + { "adxl313" }, > > > + { } > > > +}; > > > + > > > +MODULE_DEVICE_TABLE(i2c, adxl313_i2c_id); > > > + > > > +static const struct of_device_id adxl313_of_match[] = { > > > + { .compatible = "adi,adxl313" }, > > > + { } > > > +}; > > > + > > > +MODULE_DEVICE_TABLE(of, adxl313_of_match); > > > + > > > +static struct i2c_driver adxl313_i2c_driver = { > > > + .driver = { > > > + .name = "adxl313_i2c", > > > + .of_match_table = adxl313_of_match, > > > + }, > > > + .probe_new = adxl313_i2c_probe, > > > + .id_table = adxl313_i2c_id > > > > + Comma > > > > > +}; > > > + > > > +module_i2c_driver(adxl313_i2c_driver); > > > + > > > +MODULE_AUTHOR("Lucas Stankus <lucas.p.stankus@gmail.com>"); > > > +MODULE_DESCRIPTION("ADXL313 3-Axis Digital Accelerometer I2C driver"); > > > +MODULE_LICENSE("GPL v2"); > > > diff --git a/drivers/iio/accel/adxl313_spi.c b/drivers/iio/accel/adxl313_spi.c > > > new file mode 100644 > > > index 000000000000..4d625b1753a5 > > > --- /dev/null > > > +++ b/drivers/iio/accel/adxl313_spi.c > > > @@ -0,0 +1,91 @@ > > > +// SPDX-License-Identifier: GPL-2.0-only > > > +/* > > > + * ADXL313 3-Axis Digital Accelerometer > > > + * > > > + * Copyright (c) 2021 Lucas Stankus <lucas.p.stankus@gmail.com> > > > + * > > > + * Datasheet: https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL313.pdf > > > + */ > > > + > > > +#include <linux/module.h> > > > +#include <linux/regmap.h> > > > +#include <linux/spi/spi.h> > > > + > > > +#include "adxl313.h" > > > + > > > +static const struct regmap_config adxl313_spi_regmap_config = { > > > + .reg_bits = 8, > > > + .val_bits = 8, > > > + .rd_table = &adxl313_readable_regs_table, > > > + .wr_table = &adxl313_writable_regs_table, > > > + .max_register = 0x39, > > > + /* Setting bits 7 and 6 enables multiple-byte read */ > > > + .read_flag_mask = BIT(7) | BIT(6), > > > +}; > > > + > > > +static int adxl313_spi_setup(struct device *dev, struct regmap *regmap) > > > +{ > > > + struct spi_device *spi = container_of(dev, struct spi_device, dev); > > > + int ret; > > > + > > > + if (spi->mode & SPI_3WIRE) { > > > + ret = regmap_write(regmap, ADXL313_REG_DATA_FORMAT, > > > + ADXL313_SPI_3WIRE); > > > + if (ret) > > > + return ret; > > > + } > > > + > > > + return regmap_update_bits(regmap, ADXL313_REG_POWER_CTL, > > > + ADXL313_I2C_DISABLE, ADXL313_I2C_DISABLE); > > > +} > > > + > > > +static int adxl313_spi_probe(struct spi_device *spi) > > > +{ > > > + const struct spi_device_id *id = spi_get_device_id(spi); > > > + struct regmap *regmap; > > > + int ret; > > > + > > > + spi->mode |= SPI_MODE_3; > > > + ret = spi_setup(spi); > > > + if (ret) > > > + return ret; > > > + > > > + regmap = devm_regmap_init_spi(spi, &adxl313_spi_regmap_config); > > > + if (IS_ERR(regmap)) { > > > + dev_err(&spi->dev, "Error initializing spi regmap: %ld\n", > > > + PTR_ERR(regmap)); > > > + return PTR_ERR(regmap); > > > + } > > > + > > > + return adxl313_core_probe(&spi->dev, regmap, id->name, > > > + &adxl313_spi_setup); > > > +} > > > + > > > +static const struct spi_device_id adxl313_spi_id[] = { > > > + { "adxl313" }, > > > + { } > > > +}; > > > + > > > +MODULE_DEVICE_TABLE(spi, adxl313_spi_id); > > > + > > > +static const struct of_device_id adxl313_of_match[] = { > > > + { .compatible = "adi,adxl313" }, > > > + { } > > > +}; > > > + > > > +MODULE_DEVICE_TABLE(of, adxl313_of_match); > > > + > > > +static struct spi_driver adxl313_spi_driver = { > > > + .driver = { > > > + .name = "adxl313_spi", > > > + .of_match_table = adxl313_of_match, > > > + }, > > > + .probe = adxl313_spi_probe, > > > + .id_table = adxl313_spi_id > > > > + Comma > > > > > +}; > > > + > > > +module_spi_driver(adxl313_spi_driver); > > > + > > > +MODULE_AUTHOR("Lucas Stankus <lucas.p.stankus@gmail.com>"); > > > +MODULE_DESCRIPTION("ADXL313 3-Axis Digital Accelerometer SPI driver"); > > > +MODULE_LICENSE("GPL v2"); > > > -- > > > 2.32.0 > > > > > > > > > -- > > With Best Regards, > > Andy Shevchenko
next prev parent reply other threads:[~2021-08-29 14:09 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-08-11 21:16 [PATCH v3 0/2] iio: accel: Add support for ADXL313 accelerometer Lucas Stankus 2021-08-11 21:17 ` [PATCH v3 1/2] dt-bindings: iio: accel: Add binding documentation for ADXL313 Lucas Stankus 2021-08-17 21:22 ` Rob Herring 2021-08-11 21:18 ` [PATCH v3 2/2] iio: accel: Add driver support " Lucas Stankus 2021-08-12 11:05 ` Andy Shevchenko 2021-08-18 20:01 ` Lucas Stankus 2021-08-29 14:12 ` Jonathan Cameron [this message] 2021-08-29 14:19 ` Andy Shevchenko 2021-08-15 15:26 ` Jonathan Cameron 2021-08-18 20:07 ` Lucas Stankus
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210829151232.29cb1ee1@jic23-huawei \ --to=jic23@kernel.org \ --cc=Darius.Berghe@analog.com \ --cc=Dragos.Bogdan@analog.com \ --cc=Michael.Hennerich@analog.com \ --cc=andy.shevchenko@gmail.com \ --cc=devicetree@vger.kernel.org \ --cc=lars@metafoo.de \ --cc=linux-iio@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=lucas.p.stankus@gmail.com \ --cc=robh+dt@kernel.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
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).