From: Jonathan Cameron <jic23@kernel.org>
To: Andreas Kemnade <andreas@kemnade.info>
Cc: lars@metafoo.de, jiasheng@iscas.ac.cn, paul@crapouillou.net,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
Tony Lindgren <tony@atomide.com>
Subject: Re: [PATCH] iio:adc:twl6030: Enable measurements of VUSB, VBAT and others
Date: Sun, 4 Dec 2022 15:41:52 +0000 [thread overview]
Message-ID: <20221204154152.5f7948b9@jic23-huawei> (raw)
In-Reply-To: <20221201181635.3522962-1-andreas@kemnade.info>
On Thu, 1 Dec 2022 19:16:35 +0100
Andreas Kemnade <andreas@kemnade.info> wrote:
> Some inputs need to be wired up to produce proper measurements,
> without this change only near zero values are reported.
>
> Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
Sounds like a fix to me. If so, Fixes tag?
Anything in here we should be turning off again if the driver is removed
or toggling on suspend? If not, other than the space below this looks fine to me.
Jonathan
> ---
> drivers/iio/adc/twl6030-gpadc.c | 32 ++++++++++++++++++++++++++++++++
> 1 file changed, 32 insertions(+)
>
> diff --git a/drivers/iio/adc/twl6030-gpadc.c b/drivers/iio/adc/twl6030-gpadc.c
> index f53e8558b560c..40438e5b49702 100644
> --- a/drivers/iio/adc/twl6030-gpadc.c
> +++ b/drivers/iio/adc/twl6030-gpadc.c
> @@ -57,6 +57,18 @@
> #define TWL6030_GPADCS BIT(1)
> #define TWL6030_GPADCR BIT(0)
>
> +#define USB_VBUS_CTRL_SET 0x04
> +#define USB_ID_CTRL_SET 0x06
> +
> +#define TWL6030_MISC1 0xE4
> +#define VBUS_MEAS 0x01
> +#define ID_MEAS 0x01
> +
> +#define VAC_MEAS 0x04
> +#define VBAT_MEAS 0x02
> +#define BB_MEAS 0x01
> +
I'm always of the view one blank line is enough! I'll tidy this up whilst applying.
> +
> /**
> * struct twl6030_chnl_calib - channel calibration
> * @gain: slope coefficient for ideal curve
> @@ -927,6 +939,26 @@ static int twl6030_gpadc_probe(struct platform_device *pdev)
> return ret;
> }
>
> + ret = twl_i2c_write_u8(TWL_MODULE_USB, VBUS_MEAS, USB_VBUS_CTRL_SET);
> + if (ret < 0) {
> + dev_err(dev, "failed to wire up inputs\n");
> + return ret;
> + }
> +
> + ret = twl_i2c_write_u8(TWL_MODULE_USB, ID_MEAS, USB_ID_CTRL_SET);
> + if (ret < 0) {
> + dev_err(dev, "failed to wire up inputs\n");
> + return ret;
> + }
> +
> + ret = twl_i2c_write_u8(TWL6030_MODULE_ID0,
> + VBAT_MEAS | BB_MEAS | BB_MEAS,
> + TWL6030_MISC1);
> + if (ret < 0) {
> + dev_err(dev, "failed to wire up inputs\n");
> + return ret;
> + }
> +
> indio_dev->name = DRIVER_NAME;
> indio_dev->info = &twl6030_gpadc_iio_info;
> indio_dev->modes = INDIO_DIRECT_MODE;
next prev parent reply other threads:[~2022-12-04 15:29 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-01 18:16 [PATCH] iio:adc:twl6030: Enable measurements of VUSB, VBAT and others Andreas Kemnade
2022-12-04 15:41 ` Jonathan Cameron [this message]
2022-12-04 20:27 ` Andreas Kemnade
2022-12-11 11:53 ` Jonathan Cameron
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=20221204154152.5f7948b9@jic23-huawei \
--to=jic23@kernel.org \
--cc=andreas@kemnade.info \
--cc=jiasheng@iscas.ac.cn \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=paul@crapouillou.net \
--cc=tony@atomide.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox