All of lore.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: Oleksij Rempel <o.rempel@pengutronix.de>
Cc: Jean Delvare <jdelvare@suse.com>,
	kernel@pengutronix.de, linux-kernel@vger.kernel.org,
	linux-hwmon@vger.kernel.org, David Jander <david@protonic.nl>
Subject: Re: [PATCH v1] hwmon: (tmp103) Convert tmp103 to use new hwmon registration API
Date: Fri, 8 Oct 2021 07:19:01 -0700	[thread overview]
Message-ID: <20211008141901.GA2255448@roeck-us.net> (raw)
In-Reply-To: <20211007125301.3030-1-o.rempel@pengutronix.de>

On Thu, Oct 07, 2021 at 02:53:01PM +0200, Oleksij Rempel wrote:
> Use devm_hwmon_device_register_with_info() which will make thermal framework
> work.
> 
> Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>

Applied.

Thanks,
Guenter

> ---
>  drivers/hwmon/tmp103.c | 105 +++++++++++++++++++++++++++++------------
>  1 file changed, 74 insertions(+), 31 deletions(-)
> 
> diff --git a/drivers/hwmon/tmp103.c b/drivers/hwmon/tmp103.c
> index a7e202cc8323..5cab4436aa77 100644
> --- a/drivers/hwmon/tmp103.c
> +++ b/drivers/hwmon/tmp103.c
> @@ -51,51 +51,92 @@ static inline u8 tmp103_mc_to_reg(int val)
>  	return DIV_ROUND_CLOSEST(val, 1000);
>  }
>  
> -static ssize_t tmp103_temp_show(struct device *dev,
> -				struct device_attribute *attr, char *buf)
> +static int tmp103_read(struct device *dev, enum hwmon_sensor_types type,
> +		       u32 attr, int channel, long *temp)
>  {
> -	struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
>  	struct regmap *regmap = dev_get_drvdata(dev);
>  	unsigned int regval;
> -	int ret;
> +	int err, reg;
> +
> +	switch (attr) {
> +	case hwmon_temp_input:
> +		reg = TMP103_TEMP_REG;
> +		break;
> +	case hwmon_temp_min:
> +		reg = TMP103_TLOW_REG;
> +		break;
> +	case hwmon_temp_max:
> +		reg = TMP103_THIGH_REG;
> +		break;
> +	default:
> +		return -EOPNOTSUPP;
> +	}
>  
> -	ret = regmap_read(regmap, sda->index, &regval);
> -	if (ret < 0)
> -		return ret;
> +	err = regmap_read(regmap, reg, &regval);
> +	if (err < 0)
> +		return err;
> +
> +	*temp = tmp103_reg_to_mc(regval);
>  
> -	return sprintf(buf, "%d\n", tmp103_reg_to_mc(regval));
> +	return 0;
>  }
>  
> -static ssize_t tmp103_temp_store(struct device *dev,
> -				 struct device_attribute *attr,
> -				 const char *buf, size_t count)
> +static int tmp103_write(struct device *dev, enum hwmon_sensor_types type,
> +			u32 attr, int channel, long temp)
>  {
> -	struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
>  	struct regmap *regmap = dev_get_drvdata(dev);
> -	long val;
> -	int ret;
> -
> -	if (kstrtol(buf, 10, &val) < 0)
> -		return -EINVAL;
> +	int reg;
> +
> +	switch (attr) {
> +	case hwmon_temp_min:
> +		reg = TMP103_TLOW_REG;
> +		break;
> +	case hwmon_temp_max:
> +		reg = TMP103_THIGH_REG;
> +		break;
> +	default:
> +		return -EOPNOTSUPP;
> +	}
>  
> -	val = clamp_val(val, -55000, 127000);
> -	ret = regmap_write(regmap, sda->index, tmp103_mc_to_reg(val));
> -	return ret ? ret : count;
> +	temp = clamp_val(temp, -55000, 127000);
> +	return regmap_write(regmap, reg, tmp103_mc_to_reg(temp));
>  }
>  
> -static SENSOR_DEVICE_ATTR_RO(temp1_input, tmp103_temp, TMP103_TEMP_REG);
> +static umode_t tmp103_is_visible(const void *data, enum hwmon_sensor_types type,
> +				 u32 attr, int channel)
> +{
> +	if (type != hwmon_temp)
> +		return 0;
> +
> +	switch (attr) {
> +	case hwmon_temp_input:
> +		return 0444;
> +	case hwmon_temp_min:
> +	case hwmon_temp_max:
> +		return 0644;
> +	default:
> +		return 0;
> +	}
> +}
>  
> -static SENSOR_DEVICE_ATTR_RW(temp1_min, tmp103_temp, TMP103_TLOW_REG);
> +static const struct hwmon_channel_info *tmp103_info[] = {
> +	HWMON_CHANNEL_INFO(chip,
> +			   HWMON_C_REGISTER_TZ),
> +	HWMON_CHANNEL_INFO(temp,
> +			   HWMON_T_INPUT | HWMON_T_MAX | HWMON_T_MIN),
> +	NULL
> +};
>  
> -static SENSOR_DEVICE_ATTR_RW(temp1_max, tmp103_temp, TMP103_THIGH_REG);
> +static const struct hwmon_ops tmp103_hwmon_ops = {
> +	.is_visible = tmp103_is_visible,
> +	.read = tmp103_read,
> +	.write = tmp103_write,
> +};
>  
> -static struct attribute *tmp103_attrs[] = {
> -	&sensor_dev_attr_temp1_input.dev_attr.attr,
> -	&sensor_dev_attr_temp1_min.dev_attr.attr,
> -	&sensor_dev_attr_temp1_max.dev_attr.attr,
> -	NULL
> +static const struct hwmon_chip_info tmp103_chip_info = {
> +	.ops = &tmp103_hwmon_ops,
> +	.info = tmp103_info,
>  };
> -ATTRIBUTE_GROUPS(tmp103);
>  
>  static bool tmp103_regmap_is_volatile(struct device *dev, unsigned int reg)
>  {
> @@ -130,8 +171,10 @@ static int tmp103_probe(struct i2c_client *client)
>  	}
>  
>  	i2c_set_clientdata(client, regmap);
> -	hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
> -						      regmap, tmp103_groups);
> +	hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
> +							 regmap,
> +							 &tmp103_chip_info,
> +							 NULL);
>  	return PTR_ERR_OR_ZERO(hwmon_dev);
>  }
>  

      reply	other threads:[~2021-10-08 14:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-07 12:53 [PATCH v1] hwmon: (tmp103) Convert tmp103 to use new hwmon registration API Oleksij Rempel
2021-10-08 14:19 ` Guenter Roeck [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=20211008141901.GA2255448@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=david@protonic.nl \
    --cc=jdelvare@suse.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=o.rempel@pengutronix.de \
    /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.