public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: Eddie James <eajames@linux.ibm.com>
Cc: linux-hwmon@vger.kernel.org, linux-kernel@vger.kernel.org,
	jdelvare@suse.com, joel@jms.id.au
Subject: Re: [PATCH 4/4] hwmon: (occ) Add soft minimum power cap attribute
Date: Tue, 22 Feb 2022 08:52:42 -0800	[thread overview]
Message-ID: <20220222165242.GA255329@roeck-us.net> (raw)
In-Reply-To: <20220215151022.7498-5-eajames@linux.ibm.com>

On Tue, Feb 15, 2022 at 09:10:22AM -0600, Eddie James wrote:
> Export the power caps data for the soft minimum power cap through hwmon.
> 
> Signed-off-by: Eddie James <eajames@linux.ibm.com>
> Reviewed-by: Joel Stanley <joel@jms.id.au>

Applied to hwmon-next.

Thanks,
Guenter

> ---
>  drivers/hwmon/occ/common.c | 19 ++++++++++++++++---
>  1 file changed, 16 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/hwmon/occ/common.c b/drivers/hwmon/occ/common.c
> index 0cb4a0a6cbc1..f00cd59f1d19 100644
> --- a/drivers/hwmon/occ/common.c
> +++ b/drivers/hwmon/occ/common.c
> @@ -674,6 +674,9 @@ static ssize_t occ_show_caps_3(struct device *dev,
>  	case 7:
>  		val = caps->user_source;
>  		break;
> +	case 8:
> +		val = get_unaligned_be16(&caps->soft_min) * 1000000ULL;
> +		break;
>  	default:
>  		return -EINVAL;
>  	}
> @@ -835,12 +838,13 @@ static int occ_setup_sensor_attrs(struct occ *occ)
>  	case 1:
>  		num_attrs += (sensors->caps.num_sensors * 7);
>  		break;
> -	case 3:
> -		show_caps = occ_show_caps_3;
> -		fallthrough;
>  	case 2:
>  		num_attrs += (sensors->caps.num_sensors * 8);
>  		break;
> +	case 3:
> +		show_caps = occ_show_caps_3;
> +		num_attrs += (sensors->caps.num_sensors * 9);
> +		break;
>  	default:
>  		sensors->caps.num_sensors = 0;
>  	}
> @@ -1047,6 +1051,15 @@ static int occ_setup_sensor_attrs(struct occ *occ)
>  			attr->sensor = OCC_INIT_ATTR(attr->name, 0444,
>  						     show_caps, NULL, 7, 0);
>  			attr++;
> +
> +			if (sensors->caps.version > 2) {
> +				snprintf(attr->name, sizeof(attr->name),
> +					 "power%d_cap_min_soft", s);
> +				attr->sensor = OCC_INIT_ATTR(attr->name, 0444,
> +							     show_caps, NULL,
> +							     8, 0);
> +				attr++;
> +			}
>  		}
>  	}
>  

      parent reply	other threads:[~2022-02-22 16:52 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-15 15:10 [PATCH 0/4] hwmon: (occ) Add various poll response data in sysfs Eddie James
2022-02-15 15:10 ` [PATCH 1/4] hwmon: (occ) Add sysfs entry for IPS (Idle Power Saver) status Eddie James
2022-02-16  6:10   ` Joel Stanley
2022-02-19 14:36   ` Guenter Roeck
2022-02-15 15:10 ` [PATCH 2/4] hwmon: (occ) Add sysfs entry for OCC mode Eddie James
2022-02-16  6:11   ` Joel Stanley
2022-02-19 14:37   ` Guenter Roeck
2022-02-15 15:10 ` [PATCH 3/4] hwmon: (occ) Add sysfs entries for additional extended status bits Eddie James
2022-02-16  6:12   ` Joel Stanley
2022-02-19 14:37   ` Guenter Roeck
2022-02-15 15:10 ` [PATCH 4/4] hwmon: (occ) Add soft minimum power cap attribute Eddie James
2022-02-16  6:33   ` Joel Stanley
2022-02-16 20:09     ` Eddie James
2022-02-21  7:39       ` Joel Stanley
2022-02-22 16:52   ` 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=20220222165242.GA255329@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=eajames@linux.ibm.com \
    --cc=jdelvare@suse.com \
    --cc=joel@jms.id.au \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-kernel@vger.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: 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