All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jonathan Cameron <jic23@kernel.org>
To: Lars-Peter Clausen <lars@metafoo.de>
Cc: Dragos Bogdan <dragos.bogdan@analog.com>,
	Michael Hennerich <Michael.Hennerich@analog.com>,
	Hartmut Knaack <knaack.h@gmx.de>,
	Peter Meerwald-Stadler <pmeerw@pmeerw.net>,
	linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] iio: ad_sigma_delta: Implement a dedicated reset function
Date: Sun, 10 Sep 2017 16:22:17 +0100	[thread overview]
Message-ID: <20170910162217.63948cf1@archlinux> (raw)
In-Reply-To: <0ea75f81-fe63-4d54-6167-463c53dd8fd5@metafoo.de>

On Tue, 5 Sep 2017 14:16:42 +0200
Lars-Peter Clausen <lars@metafoo.de> wrote:

> On 09/05/2017 02:14 PM, Dragos Bogdan wrote:
> > Since most of the SD ADCs have the option of reseting the serial
> > interface by sending a number of SCLKs with CS = 0 and DIN = 1,
> > a dedicated function that can do this is usefull.
> > 
> > Signed-off-by: Dragos Bogdan <dragos.bogdan@analog.com>  
> 
> Acked-by: Lars-Peter Clausen <lars@metafoo.de>

Applied to the fixes-togreg branch of iio.git and marked
for stable.  I added a note that this was a precursor for
the following patch to justify the stable cc.

Jonathan
> 
> > ---
> >  drivers/iio/adc/ad_sigma_delta.c       | 28 ++++++++++++++++++++++++++++
> >  include/linux/iio/adc/ad_sigma_delta.h |  3 +++
> >  2 files changed, 31 insertions(+)
> > 
> > diff --git a/drivers/iio/adc/ad_sigma_delta.c b/drivers/iio/adc/ad_sigma_delta.c
> > index d10bd0c97233..22c4c17cd996 100644
> > --- a/drivers/iio/adc/ad_sigma_delta.c
> > +++ b/drivers/iio/adc/ad_sigma_delta.c
> > @@ -177,6 +177,34 @@ int ad_sd_read_reg(struct ad_sigma_delta *sigma_delta,
> >  }
> >  EXPORT_SYMBOL_GPL(ad_sd_read_reg);
> >  
> > +/**
> > + * ad_sd_reset() - Reset the serial interface
> > + *
> > + * @sigma_delta: The sigma delta device
> > + * @reset_length: Number of SCLKs with DIN = 1
> > + *
> > + * Returns 0 on success, an error code otherwise.
> > + **/
> > +int ad_sd_reset(struct ad_sigma_delta *sigma_delta,
> > +	unsigned int reset_length)
> > +{
> > +	uint8_t *buf;
> > +	unsigned int size;
> > +	int ret;
> > +
> > +	size = DIV_ROUND_UP(reset_length, 8);
> > +	buf = kcalloc(size, sizeof(*buf), GFP_KERNEL);
> > +	if (!buf)
> > +		return -ENOMEM;
> > +
> > +	memset(buf, 0xff, size);
> > +	ret = spi_write(sigma_delta->spi, buf, size);
> > +	kfree(buf);
> > +
> > +	return ret;
> > +}
> > +EXPORT_SYMBOL_GPL(ad_sd_reset);
> > +
> >  static int ad_sd_calibrate(struct ad_sigma_delta *sigma_delta,
> >  	unsigned int mode, unsigned int channel)
> >  {
> > diff --git a/include/linux/iio/adc/ad_sigma_delta.h b/include/linux/iio/adc/ad_sigma_delta.h
> > index 5ba430cc9a87..1fc7abd28b0b 100644
> > --- a/include/linux/iio/adc/ad_sigma_delta.h
> > +++ b/include/linux/iio/adc/ad_sigma_delta.h
> > @@ -111,6 +111,9 @@ int ad_sd_write_reg(struct ad_sigma_delta *sigma_delta, unsigned int reg,
> >  int ad_sd_read_reg(struct ad_sigma_delta *sigma_delta, unsigned int reg,
> >  	unsigned int size, unsigned int *val);
> >  
> > +int ad_sd_reset(struct ad_sigma_delta *sigma_delta,
> > +	unsigned int reset_length);
> > +
> >  int ad_sigma_delta_single_conversion(struct iio_dev *indio_dev,
> >  	const struct iio_chan_spec *chan, int *val);
> >  int ad_sd_calibrate_all(struct ad_sigma_delta *sigma_delta,
> >   
> 


      reply	other threads:[~2017-09-10 15:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-05 12:14 [PATCH 1/2] iio: ad_sigma_delta: Implement a dedicated reset function Dragos Bogdan
2017-09-05 12:16 ` Lars-Peter Clausen
2017-09-10 15:22   ` Jonathan Cameron [this message]

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=20170910162217.63948cf1@archlinux \
    --to=jic23@kernel.org \
    --cc=Michael.Hennerich@analog.com \
    --cc=dragos.bogdan@analog.com \
    --cc=knaack.h@gmx.de \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pmeerw@pmeerw.net \
    /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: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.