On Mon, Jun 22, 2026 at 10:55:38PM -0700, Selvamani Rajagopal via B4 Relay wrote: > From: Selvamani Rajagopal > > Add devicetree schema for onsemi FD5121, FD5123, and > FD5125 dual rail, multi-phase digital controllers. > > Signed-off-by: Selvamani Rajagopal > --- > .../bindings/hwmon/pmbus/onnn,fd5121.yaml | 41 ++++++++++++++++++++++ > 1 file changed, 41 insertions(+) > > diff --git a/Documentation/devicetree/bindings/hwmon/pmbus/onnn,fd5121.yaml b/Documentation/devicetree/bindings/hwmon/pmbus/onnn,fd5121.yaml > new file mode 100644 > index 000000000000..b0453b0634f0 > --- /dev/null > +++ b/Documentation/devicetree/bindings/hwmon/pmbus/onnn,fd5121.yaml > @@ -0,0 +1,41 @@ > +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) > +%YAML 1.2 > +--- > +$id: http://devicetree.org/schemas/hwmon/pmbus/onnn,fd5121.yaml# > +$schema: http://devicetree.org/meta-schemas/core.yaml# > + > +title: onsemi's multi-phase digital controllers Can someone explain to me what a "digital controller" actually is? Seems very generi and that a word may have been left out, were it not for the fact that this wording is used several times in the patch. > + > +maintainers: > + - Selvamani Rajagopal > + > +description: > + onsemi multi-phase digital controllers with PMBus. > + > +properties: > + compatible: > + enum: > + - onnn,fd5121 > + - onnn,fd5123 > + - onnn,fd5125 Your /OF/ match data in your driver suggests that you intended to permit fallback compatibles here? |+#ifdef CONFIG_OF |+static const struct of_device_id fd5121_of_match[] = { |+ { .compatible = "onnn,fd5121" }, |+ { } |+}; |+MODULE_DEVICE_TABLE(of, fd5121_of_match); |+#endif pw-bot: changes-requested Cheers, Conor. > + > + reg: > + maxItems: 1 > + > +required: > + - compatible > + - reg > + > +additionalProperties: false > + > +examples: > + - | > + i2c { > + #address-cells = <1>; > + #size-cells = <0>; > + > + fd5121@50 { > + compatible = "onnn,fd5121"; > + reg = <0x50>; > + }; > + }; > > -- > 2.43.0 > > >