From: Rob Herring <robh@kernel.org>
To: Jerome Brunet <jbrunet@baylibre.com>
Cc: Krzysztof Kozlowski <krzk@kernel.org>,
Jean Delvare <jdelvare@suse.com>,
Guenter Roeck <linux@roeck-us.net>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Jonathan Corbet <corbet@lwn.net>,
Delphine CC Chiu <Delphine_CC_Chiu@wiwynn.com>,
linux-hwmon@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org,
linux-i2c@vger.kernel.org
Subject: Re: [PATCH 1/3] dt-bindings: hwmon: pmbus: add ti tps25990 documentation
Date: Wed, 11 Sep 2024 09:45:32 -0500 [thread overview]
Message-ID: <20240911144532.GA154835-robh@kernel.org> (raw)
In-Reply-To: <1jzfofsvmh.fsf@starbuckisacylon.baylibre.com>
gOn Tue, Sep 10, 2024 at 11:31:18AM +0200, Jerome Brunet wrote:
> On Tue 10 Sep 2024 at 09:48, Krzysztof Kozlowski <krzk@kernel.org> wrote:
>
> > On Mon, Sep 09, 2024 at 05:39:03PM +0200, Jerome Brunet wrote:
> >> Add DT binding documentation for the Texas Instruments TPS25990 eFuse
> >>
> >> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
> >> ---
> >> .../bindings/hwmon/pmbus/ti,tps25990.yaml | 73 ++++++++++++++++++++++
> >> 1 file changed, 73 insertions(+)
> >>
> >
> > A nit, subject: drop second/last, redundant "documentation". The
> > "dt-bindings" prefix is already stating that these are bindings/docs.
> > See also:
> > https://elixir.bootlin.com/linux/v6.7-rc8/source/Documentation/devicetree/bindings/submitting-patches.rst#L18
> >
> >> diff --git a/Documentation/devicetree/bindings/hwmon/pmbus/ti,tps25990.yaml b/Documentation/devicetree/bindings/hwmon/pmbus/ti,tps25990.yaml
> >> new file mode 100644
> >> index 000000000000..e717942b3598
> >> --- /dev/null
> >> +++ b/Documentation/devicetree/bindings/hwmon/pmbus/ti,tps25990.yaml
> >> @@ -0,0 +1,73 @@
> >> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> >> +%YAML 1.2
> >> +---
> >> +
> >
> > Drop blank line.
> >
> >> +$id: http://devicetree.org/schemas/hwmon/pmbus/ti,tps25990.yaml#
> >> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> >> +
> >> +title: Texas Instruments TPS25990 Stackable eFuse
> >> +
> >> +maintainers:
> >> + - Jerome Brunet <jbrunet@baylibre.com>
> >> +
> >> +description: |
> >
> > Do not need '|' unless you need to preserve formatting.
> >
> >> + The TI TPS25990 is an integrated, high-current circuit
> >> + protection and power management device with PMBUS interface
And wrap at 80.
> >> +
> >> +properties:
> >> + compatible:
> >> + const: ti,tps25990
> >> +
> >> + reg:
> >> + maxItems: 1
> >> +
> >> + ti,rimon-milli-ohms:
> >> + description:
> >> + milli Ohms value of the resistance installed between the Imon pin
> >> + and the ground reference.
> >
> > Ohms is not enough? We don't have mOhm in property units.
> > https://github.com/devicetree-org/dt-schema/blob/main/dtschema/schemas/property-units.yaml
> >
>
> Same discussion as we've had on the driver change.
> At the moment Ohms is enough for the cases I've seen.
>
> Will it be, not sure.
> Using mOhms is' way to avoid "S**t, R is 80.2 Ohms, I
> need another digit to not loose precision " kind of situation and
> introduce a second property just for that.
>
> No idea if Rimon will get that low. Probably not.
>
> I'll switch to Ohms.
You can can use "-micro-ohms" too. The reason we don't have every
possible unit is so we have everyone picking their own.
Rob
next prev parent reply other threads:[~2024-09-11 14:45 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-09 15:39 [PATCH 0/3] hwmon: pmbus: add tps25990 efuse support Jerome Brunet
2024-09-09 15:39 ` [PATCH 1/3] dt-bindings: hwmon: pmbus: add ti tps25990 documentation Jerome Brunet
2024-09-10 7:48 ` Krzysztof Kozlowski
2024-09-10 9:31 ` Jerome Brunet
2024-09-11 14:45 ` Rob Herring [this message]
2024-09-11 17:26 ` Jerome Brunet
2024-09-16 8:45 ` Krzysztof Kozlowski
2024-09-09 15:39 ` [PATCH 2/3] hwmon: (pmbus/core) add POWER_GOOD signal limits support Jerome Brunet
2024-09-09 18:16 ` Guenter Roeck
2024-09-10 6:43 ` Jerome Brunet
2024-09-10 14:37 ` Guenter Roeck
2024-09-10 15:00 ` Jerome Brunet
2024-09-10 16:22 ` Guenter Roeck
2024-09-09 15:39 ` [PATCH 3/3] hwmon: (pmbus/tps25990): add initial support Jerome Brunet
2024-09-09 22:52 ` Guenter Roeck
2024-09-10 9:07 ` Jerome Brunet
2024-09-10 17:07 ` Guenter Roeck
2024-09-11 9:37 ` Jerome Brunet
2024-09-10 8:08 ` kernel test robot
2024-09-10 10:32 ` kernel test robot
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=20240911144532.GA154835-robh@kernel.org \
--to=robh@kernel.org \
--cc=Delphine_CC_Chiu@wiwynn.com \
--cc=conor+dt@kernel.org \
--cc=corbet@lwn.net \
--cc=devicetree@vger.kernel.org \
--cc=jbrunet@baylibre.com \
--cc=jdelvare@suse.com \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
/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;
as well as URLs for NNTP newsgroup(s).