From: Lee Jones <lee.jones@linaro.org>
To: "Opensource [Steve Twiss]" <stwiss.opensource@diasemi.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>,
David Dajun Chen <david.chen@diasemi.com>,
Guenter Roeck <linux@roeck-us.net>,
Jean Delvare <jdelvare@suse.de>,
LINUX-DOC <linux-doc@vger.kernel.org>,
LINUX-KERNEL <linux-kernel@vger.kernel.org>,
LM-SENSORS <lm-sensors@lm-sensors.org>,
Mark Brown <broonie@linaro.org>,
Philipp Zabel <p.zabel@pengutronix.de>,
Rob Landley <rob@landley.net>
Subject: Re: [RFC V1 2/3] mfd: da9063: Add HWMON dependencies
Date: Mon, 24 Mar 2014 08:02:59 +0000 [thread overview]
Message-ID: <20140324080259.GG8541@lee--X1> (raw)
In-Reply-To: <31eb9829645b11a109e7699d5da888ab7d2a68c1.1395607051.git.stwiss.opensource@diasemi.com>
On Sun, 23 Mar 2014, Opensource [Steve Twiss] wrote:
> From: Opensource [Steve Twiss] <stwiss.opensource@diasemi.com>
>
> Dependencies required for DA9063 HWMON support.
>
> Signed-off-by: Opensource [Steve Twiss] <stwiss.opensource@diasemi.com>
> ---
>
> drivers/mfd/da9063-core.c | 13 ++++++++++++-
> include/linux/mfd/da9063/core.h | 3 +++
> include/linux/mfd/da9063/pdata.h | 18 ++++++++++++++++++
> 3 files changed, 33 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mfd/da9063-core.c b/drivers/mfd/da9063-core.c
> index e70ae31..24c1838 100644
> --- a/drivers/mfd/da9063-core.c
> +++ b/drivers/mfd/da9063-core.c
> @@ -111,6 +111,7 @@ int da9063_device_init(struct da9063 *da9063, unsigned int irq)
> {
> struct da9063_pdata *pdata = da9063->dev->platform_data;
> int model, variant_id, variant_code;
> + int t_offset = 0;
> int ret;
>
> if (pdata) {
> @@ -171,8 +172,18 @@ int da9063_device_init(struct da9063 *da9063, unsigned int irq)
> ret = mfd_add_devices(da9063->dev, -1, da9063_devs,
> ARRAY_SIZE(da9063_devs), NULL, da9063->irq_base,
> NULL);
> - if (ret)
> + if (ret) {
> dev_err(da9063->dev, "Cannot add MFD cells\n");
> + return ret;
> + }
> +
> + ret = regmap_read(da9063->regmap, DA9063_REG_T_OFFSET, &t_offset);
> + if (ret < 0)
> + dev_warn(da9063->dev,
> + "Temperature trimming value cannot be read (defaulting to 0)\n");
> +
> + /* pass this on to the hwmon driver */
> + da9063->t_offset = t_offset;
What's the logic for using a local variable for this prior to setting
the attribute in the shared container?
> return ret;
> }
> diff --git a/include/linux/mfd/da9063/core.h b/include/linux/mfd/da9063/core.h
> index 00a9aac..7327d37 100644
> --- a/include/linux/mfd/da9063/core.h
> +++ b/include/linux/mfd/da9063/core.h
> @@ -86,6 +86,9 @@ struct da9063 {
> int chip_irq;
> unsigned int irq_base;
> struct regmap_irq_chip_data *regmap_irq;
> +
> + /* Trimming */
> + int t_offset;
> };
>
> int da9063_device_init(struct da9063 *da9063, unsigned int irq);
> diff --git a/include/linux/mfd/da9063/pdata.h b/include/linux/mfd/da9063/pdata.h
> index 95c8742..576033e 100644
> --- a/include/linux/mfd/da9063/pdata.h
> +++ b/include/linux/mfd/da9063/pdata.h
> @@ -62,6 +62,23 @@ struct da9063_regulators_pdata {
> struct da9063_regulator_data *regulator_data;
> };
>
> +/* HWMON platform data */
> +#define DA9063_SET_ADCIN1_CUR_1UA 0x00
> +#define DA9063_SET_ADCIN1_CUR_2UA 0x01
> +#define DA9063_SET_ADCIN1_CUR_10UA 0x02
> +#define DA9063_SET_ADCIN1_CUR_40UA 0x03
> +#define DA9063_SET_ADCIN2_CUR_1UA 0x00
> +#define DA9063_SET_ADCIN2_CUR_2UA 0x01
> +#define DA9063_SET_ADCIN2_CUR_10UA 0x02
> +#define DA9063_SET_ADCIN2_CUR_40UA 0x03
> +#define DA9063_SET_ADCIN3_CUR_10UA 0x00
Why differentiate? More succinctly:
/* HWMON platform data */
#define DA9063_SET_CUR_1UA 0x00
#define DA9063_SET_CUR_2UA 0x01
#define DA9063_SET_CUR_10UA 0x02
#define DA9063_SET_CUR_40UA 0x03
> +struct da9063_hwmon_pdata {
> + unsigned char adcin1_cur;
> + unsigned char adcin2_cur;
> + unsigned char adcin3_cur;
> +};
> +
>
Now there are two new lines here.
> /*
> * RGB LED configuration
> @@ -106,6 +123,7 @@ struct da9063_pdata {
> unsigned flags;
> struct da9063_regulators_pdata *regulators_pdata;
> struct led_platform_data *leds_pdata;
> + struct da9063_hwmon_pdata *hwmon_pdata;
> };
Does this device support Device Tree?
> #endif /* __MFD_DA9063_PDATA_H__ */
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
next prev parent reply other threads:[~2014-03-24 8:03 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-23 20:37 [RFC V1 0/3] da9063: Addition of HWMON support for DA9063 Opensource [Steve Twiss]
2014-03-23 20:37 ` [RFC V1 2/3] mfd: da9063: Add HWMON dependencies Opensource [Steve Twiss]
2014-03-24 8:02 ` Lee Jones [this message]
2014-03-24 8:28 ` Opensource [Steve Twiss]
2014-03-23 20:37 ` [RFC V1 1/3] hwmon: da9063: HWMON driver Opensource [Steve Twiss]
2014-03-24 3:27 ` Guenter Roeck
2014-03-24 3:39 ` Guenter Roeck
2014-03-24 7:48 ` Opensource [Steve Twiss]
2014-03-24 9:24 ` Lee Jones
2014-03-24 7:52 ` Lee Jones
2014-03-24 8:12 ` Opensource [Steve Twiss]
2014-03-23 20:37 ` [RFC V1 3/3] Documentation: hwmon: New information for DA9063 Opensource [Steve Twiss]
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=20140324080259.GG8541@lee--X1 \
--to=lee.jones@linaro.org \
--cc=broonie@linaro.org \
--cc=david.chen@diasemi.com \
--cc=jdelvare@suse.de \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=lm-sensors@lm-sensors.org \
--cc=p.zabel@pengutronix.de \
--cc=rob@landley.net \
--cc=sameo@linux.intel.com \
--cc=stwiss.opensource@diasemi.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