All of lore.kernel.org
 help / color / mirror / Atom feed
From: Guenter Roeck <linux@roeck-us.net>
To: "Adamski, Krzysztof (Nokia - PL/Wroclaw)"  <krzysztof.adamski@nokia.com>
Cc: Jean Delvare <jdelvare@suse.com>,
	"linux-hwmon@vger.kernel.org" <linux-hwmon@vger.kernel.org>,
	"Sverdlin,
	Alexander (Nokia - DE/Ulm)" <alexander.sverdlin@nokia.com>
Subject: Re: [PATCH v3 4/4] pmbus_core: export coefficients via sysfs
Date: Mon, 15 Apr 2019 09:33:10 -0700	[thread overview]
Message-ID: <20190415163310.GA7933@roeck-us.net> (raw)
In-Reply-To: <20190415080527.GA6320@localhost.localdomain>

On Mon, Apr 15, 2019 at 08:34:48AM +0000, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote:
> On Sun, Apr 14, 2019 at 07:38:33PM -0700, Guenter Roeck wrote:
> >On 4/14/19 3:37 PM, Adamski, Krzysztof (Nokia - PL/Wroclaw) wrote:
> >>On Sun, Apr 14, 2019 at 11:59:38PM +0200, Krzysztof Adamski wrote:
> >>>PMBUS devices report values in real-world units. Those using direct
> >>>format require conversion using standarised coefficients and formula.
> >>>This operation is already done by pmbus_core and the default values for
> >>>coefficients are configured by chip drivers.
> >>>
> >>>However those default values are not allways suitable as they depend on
> >>>the value of sense register and environment used. For that reason, in
> >>>order to get values that make sense or just to get best accuracy, in it
> >>>may be required to tweak coefficient values. The proper values may be
> >>>measured during device production (to get best accuracy, they might be
> >>>callibrated for each individual unit) and stored as calibration values
> >>>in some place (like EEPROM or even a file).
> >>>
> >>>To support wide range of possible use cases, lets export those to user
> >>>space via sysfs attributes so that it can implement its own policies
> >>>about them. All those attributes are put into separate attribute_group
> >>>struct so that we can set its name to group all of them in a
> >>>"coefficients" subdirectory in sysfs.
> >>>
> >>>Signed-off-by: Krzysztof Adamski <krzysztof.adamski@nokia.com>
> >>>---
> >>>drivers/hwmon/pmbus/pmbus_core.c | 104 ++++++++++++++++++++++++++++++-
> >>>1 file changed, 102 insertions(+), 2 deletions(-)
> >>>
> >>
> >>[...]
> >>
> >>>+	pmbus_dev_attr_init(&ext_attr->attr, name, (S_IWUSR | S_IRUGO),
> >>
> >>I screwed up and did not fix this also, sorry for that. I'm not sending
> >>an updated version (yet) as I didn't get your approval for the concept
> >>itself (though I still hope you will reconsider taking into account my
> >>latest arguments).
> >>
> >
> >I won't, sorry. As mentioned before, this is a generic problem that needs
> >to be solved for all hwmon drivers, not just for pmbus devices, and also
> >not just for pmbus devices using direct mode.
> >
> >Even worse, this doesn't even work for pmbus devices in general.
> >PMBus supports commands such as VOUT_SCALE_LOOP and various other
> >calibration commands such as VOUT_CAL_OFFSET, IOUT_CAL_GAIN and
> >IOUT_CAL_OFFSET. Your approach doesn't even try to support those
> >commands; you only look at r/m/b which may suit your needs but are
> >hardly generic
> 
> I agree I don't see this problem as general as you. The mentioned
> registers can easily be supported if needed by just attaching attributes
> to them. That would allow doing things that cannot be done currently
> (configuring precision of the regulation of the devices) while I see
> coefficients problems as something totally different - more like a fix
> to the already supported functionality (reporting current measurements).
> 

We are talking an ABI here. ABIs are supposed to be hardware independent.
Directly mapping registers to attributes is not exactly hardware independent.

> > and even misleading since chip programming isn't adjusted even when
> > that is possible.
> 
> I don't understand what you mean by that, could you explain?
> 
"when that is possible" -> on chips supporting calibration commands,
one should not manipulate b/m/R but write any adjustments into the chip
using those commands.

> >
> >Addressing this problem in a generic way will require substantially
> >more thought than just adding a couple of pmbus direct mode specific
> >attributes.
> 
> I'm willing to put more effort into that but I would need to better
> understand what is your view of the scope of problem here.
> 
There are a number of elements.

First, a case has to be made why the current mechanism of using
sensors3.conf for adjustments is insufficient. This may be well
understood by some, but the case needs to be made (ie some chips do
have HW registers to perform the adjustment, and in some cases there
is accuracy loss by performing adjustments in user space).

Second, we'll need to determine which standardized attributes are
needed. As far as I can see this would probably be 'scale' (or maybe
'gain') and 'offset'. The question is how to express especially 'scale'.
It would either require both a multiplier and a divider, or it would
have to be expressed in fixed point arithmetic. I would prefer the
latter, but I am open to suggestions.

Third, we will have to determine how to apply this all to pmbus
chips. It must not only apply to direct mode chips, but to all
PMBus chips. Even for direct mode chips the case needs to be made
if the attributes should apply per sensor class or per sensor (I
would think per sensor). Just looking at VOUT, chapter 9.2 of the
PMBus specification (Rev 1.1, part II) gives an example of what
to look out for: Just for VOUT, there are VOUT_TRIM, VOUT_CAL_OFFSET,
VOUT_DROOP (does this require yet another attribute ?), and
VOUT_SCALE_LOOP.

I should add that the above, for VOUT, are the primary means for
PMBus devices to adjust voltage readings. This also applies to IOUT,
which has similar standard PMBus registers available for calibration
(IOUT_CAL_GAIN and IOUT_CAL_OFFSET). On top of that, some chips support
vendor specific commands to calibrate other sensors. For example,
MAX15301 supports a EXT_TEMP_CAL command to calibrate temperature sensor
readings.

Also note that direct mode PMBUs chips _should_ support a COEFFICIENTS
command to retrieve actual coefficients from the chip (though I don't
recall ever encountering a chip that actually supports it).

Overall, adjusting readings through manipulation of b/m/R is at best
a workaround.

As such, the chip we are talking about here does pretty much
everything wrong. I do understand the need for a more dynamic
calibration support on the driver level, but the solution must
not focus on such a chip and needs to be more generic.

Thanks,
Guenter

  reply	other threads:[~2019-04-15 16:33 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-14 21:58 [PATCH v3 0/4] pmbus: extend configurability via sysfs Adamski, Krzysztof (Nokia - PL/Wroclaw)
2019-04-14 21:58 ` [PATCH v3 1/4] pmbus: introduce PMBUS_VIRT_*_SAMPLES registers Adamski, Krzysztof (Nokia - PL/Wroclaw)
2019-04-15 20:13   ` Guenter Roeck
2019-04-14 21:58 ` [PATCH v3 2/4] hwmon: Document the samples attributes Adamski, Krzysztof (Nokia - PL/Wroclaw)
2019-04-15 20:14   ` Guenter Roeck
2019-04-14 21:59 ` [PATCH v3 3/4] lm25066: support SAMPLES_FOR_AVG register Adamski, Krzysztof (Nokia - PL/Wroclaw)
2019-04-15 20:16   ` Guenter Roeck
2019-04-14 21:59 ` [PATCH v3 4/4] pmbus_core: export coefficients via sysfs Adamski, Krzysztof (Nokia - PL/Wroclaw)
2019-04-14 22:37   ` Adamski, Krzysztof (Nokia - PL/Wroclaw)
2019-04-15  2:38     ` Guenter Roeck
2019-04-15  8:34       ` Adamski, Krzysztof (Nokia - PL/Wroclaw)
2019-04-15 16:33         ` Guenter Roeck [this message]
2019-04-15 20:26           ` Adamski, Krzysztof (Nokia - PL/Wroclaw)

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=20190415163310.GA7933@roeck-us.net \
    --to=linux@roeck-us.net \
    --cc=alexander.sverdlin@nokia.com \
    --cc=jdelvare@suse.com \
    --cc=krzysztof.adamski@nokia.com \
    --cc=linux-hwmon@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 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.