* [PATCH v1 1/4] dt-bindings: vendor-prefixes: add Vicor Corporation
[not found] <cover.1642434222.git.sylv@sylv.io>
@ 2022-01-17 16:12 ` Marcello Sylvester Bauer
2022-02-09 2:50 ` Rob Herring
2022-01-17 16:12 ` [PATCH v1 2/4] dt-bindings: hwmon/pmbus: Add vicor,bcm6123 Bus Converter Marcello Sylvester Bauer
1 sibling, 1 reply; 8+ messages in thread
From: Marcello Sylvester Bauer @ 2022-01-17 16:12 UTC (permalink / raw)
To: linux-hwmon
Cc: Marcello Sylvester Bauer, Guenter Roeck, Jean Delvare,
Rob Herring, devicetree, linux-kernel
Add vendor prefix for Vicor Corporation.
Signed-off-by: Marcello Sylvester Bauer <sylv@sylv.io>
---
Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
index 66d6432fd781..8a2a205d6d34 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
+++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
@@ -1273,6 +1273,8 @@ patternProperties:
"^vdl,.*":
description: Van der Laan b.v.
"^via,.*":
+ description: Vicor Corporation
+ "^vicor,.*":
description: VIA Technologies, Inc.
"^videostrong,.*":
description: Videostrong Technology Co., Ltd.
--
2.33.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v1 2/4] dt-bindings: hwmon/pmbus: Add vicor,bcm6123 Bus Converter
[not found] <cover.1642434222.git.sylv@sylv.io>
2022-01-17 16:12 ` [PATCH v1 1/4] dt-bindings: vendor-prefixes: add Vicor Corporation Marcello Sylvester Bauer
@ 2022-01-17 16:12 ` Marcello Sylvester Bauer
2022-01-17 17:06 ` Guenter Roeck
2022-01-18 1:32 ` Rob Herring
1 sibling, 2 replies; 8+ messages in thread
From: Marcello Sylvester Bauer @ 2022-01-17 16:12 UTC (permalink / raw)
To: linux-hwmon
Cc: Marcello Sylvester Bauer, Guenter Roeck, Jean Delvare,
Rob Herring, devicetree, linux-kernel
Add bindings for BCM6123 Bus Converter from Vicor Corporation.
Signed-off-by: Marcello Sylvester Bauer <sylv@sylv.io>
---
.../bindings/hwmon/pmbus/vicor,bcm6123.yaml | 41 +++++++++++++++++++
1 file changed, 41 insertions(+)
create mode 100644 Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml
diff --git a/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml b/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml
new file mode 100644
index 000000000000..5559d22e00f1
--- /dev/null
+++ b/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.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/vicor,bcm6123.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Vicor Corporation BCM6123 Bus Converter
+
+description: |
+ The BCM6123 is an isolated Fixed-Ratio DC-DC Converter,
+ operating from a 260V to 410V primary bus to deliver an unregulated
+ ratiometric secondary voltage.
+
+ Datasheet: https://www.vicorpower.com/documents/datasheets/ds_BCM6123xD1E5135yzz.pdf
+
+properties:
+ compatible:
+ enum:
+ - vicor,bcm6123
+
+ reg:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+
+additionalProperties: false
+
+examples:
+ - |
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ bcm6123@5f {
+ compatible = "vicor,bcm6123";
+ reg = <0x5f>;
+ };
+ };
--
2.33.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v1 2/4] dt-bindings: hwmon/pmbus: Add vicor,bcm6123 Bus Converter
2022-01-17 16:12 ` [PATCH v1 2/4] dt-bindings: hwmon/pmbus: Add vicor,bcm6123 Bus Converter Marcello Sylvester Bauer
@ 2022-01-17 17:06 ` Guenter Roeck
2022-01-18 7:48 ` sylv
2022-01-18 1:32 ` Rob Herring
1 sibling, 1 reply; 8+ messages in thread
From: Guenter Roeck @ 2022-01-17 17:06 UTC (permalink / raw)
To: Marcello Sylvester Bauer, linux-hwmon
Cc: Jean Delvare, Rob Herring, devicetree, linux-kernel
On 1/17/22 8:12 AM, Marcello Sylvester Bauer wrote:
> Add bindings for BCM6123 Bus Converter from Vicor Corporation.
>
> Signed-off-by: Marcello Sylvester Bauer <sylv@sylv.io>
Can this be added to trivial devices instead ?
Guenter
> ---
> .../bindings/hwmon/pmbus/vicor,bcm6123.yaml | 41 +++++++++++++++++++
> 1 file changed, 41 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml
>
> diff --git a/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml b/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml
> new file mode 100644
> index 000000000000..5559d22e00f1
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.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/vicor,bcm6123.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Vicor Corporation BCM6123 Bus Converter
> +
> +description: |
> + The BCM6123 is an isolated Fixed-Ratio DC-DC Converter,
> + operating from a 260V to 410V primary bus to deliver an unregulated
> + ratiometric secondary voltage.
> +
> + Datasheet: https://www.vicorpower.com/documents/datasheets/ds_BCM6123xD1E5135yzz.pdf
> +
> +properties:
> + compatible:
> + enum:
> + - vicor,bcm6123
> +
> + reg:
> + maxItems: 1
> +
> +required:
> + - compatible
> + - reg
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + i2c {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + bcm6123@5f {
> + compatible = "vicor,bcm6123";
> + reg = <0x5f>;
> + };
> + };
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v1 2/4] dt-bindings: hwmon/pmbus: Add vicor,bcm6123 Bus Converter
2022-01-17 16:12 ` [PATCH v1 2/4] dt-bindings: hwmon/pmbus: Add vicor,bcm6123 Bus Converter Marcello Sylvester Bauer
2022-01-17 17:06 ` Guenter Roeck
@ 2022-01-18 1:32 ` Rob Herring
1 sibling, 0 replies; 8+ messages in thread
From: Rob Herring @ 2022-01-18 1:32 UTC (permalink / raw)
To: Marcello Sylvester Bauer
Cc: Rob Herring, Guenter Roeck, Jean Delvare, devicetree, linux-hwmon,
linux-kernel
On Mon, 17 Jan 2022 17:12:48 +0100, Marcello Sylvester Bauer wrote:
> Add bindings for BCM6123 Bus Converter from Vicor Corporation.
>
> Signed-off-by: Marcello Sylvester Bauer <sylv@sylv.io>
> ---
> .../bindings/hwmon/pmbus/vicor,bcm6123.yaml | 41 +++++++++++++++++++
> 1 file changed, 41 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml
>
My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check'
on your patch (DT_CHECKER_FLAGS is new in v5.13):
yamllint warnings/errors:
dtschema/dtc warnings/errors:
/builds/robherring/linux-dt-review/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml: 'maintainers' is a required property
hint: Metaschema for devicetree binding documentation
from schema $id: http://devicetree.org/meta-schemas/base.yaml#
/builds/robherring/linux-dt-review/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml: ignoring, error in schema:
Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.example.dt.yaml:0:0: /example-0/i2c/bcm6123@5f: failed to match any schema with compatible: ['vicor,bcm6123']
doc reference errors (make refcheckdocs):
See https://patchwork.ozlabs.org/patch/1580909
This check can fail if there are any dependencies. The base for a patch
series is generally the most recent rc1.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v1 2/4] dt-bindings: hwmon/pmbus: Add vicor,bcm6123 Bus Converter
2022-01-17 17:06 ` Guenter Roeck
@ 2022-01-18 7:48 ` sylv
0 siblings, 0 replies; 8+ messages in thread
From: sylv @ 2022-01-18 7:48 UTC (permalink / raw)
To: Guenter Roeck, linux-hwmon
Cc: Jean Delvare, Rob Herring, devicetree, linux-kernel
On Mon, 2022-01-17 at 09:06 -0800, Guenter Roeck wrote:
> On 1/17/22 8:12 AM, Marcello Sylvester Bauer wrote:
> > Add bindings for BCM6123 Bus Converter from Vicor Corporation.
> >
> > Signed-off-by: Marcello Sylvester Bauer <sylv@sylv.io>
>
> Can this be added to trivial devices instead ?
>
> Guenter
Indeed. Thanks.
Marcello
>
> > ---
> > .../bindings/hwmon/pmbus/vicor,bcm6123.yaml | 41 +++++++++++++++++++
> > 1 file changed, 41 insertions(+)
> > create mode 100644 Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml
> >
> > diff --git a/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml b/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.yaml
> > new file mode 100644
> > index 000000000000..5559d22e00f1
> > --- /dev/null
> > +++ b/Documentation/devicetree/bindings/hwmon/pmbus/vicor,bcm6123.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/vicor,bcm6123.yaml#
> > +$schema: http://devicetree.org/meta-schemas/core.yaml#
> > +
> > +title: Vicor Corporation BCM6123 Bus Converter
> > +
> > +description: |
> > + The BCM6123 is an isolated Fixed-Ratio DC-DC Converter,
> > + operating from a 260V to 410V primary bus to deliver an unregulated
> > + ratiometric secondary voltage.
> > +
> > + Datasheet: https://www.vicorpower.com/documents/datasheets/ds_BCM6123xD1E5135yzz.pdf
> > +
> > +properties:
> > + compatible:
> > + enum:
> > + - vicor,bcm6123
> > +
> > + reg:
> > + maxItems: 1
> > +
> > +required:
> > + - compatible
> > + - reg
> > +
> > +additionalProperties: false
> > +
> > +examples:
> > + - |
> > + i2c {
> > + #address-cells = <1>;
> > + #size-cells = <0>;
> > +
> > + bcm6123@5f {
> > + compatible = "vicor,bcm6123";
> > + reg = <0x5f>;
> > + };
> > + };
> >
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v1 1/4] dt-bindings: vendor-prefixes: add Vicor Corporation
2022-01-17 16:12 ` [PATCH v1 1/4] dt-bindings: vendor-prefixes: add Vicor Corporation Marcello Sylvester Bauer
@ 2022-02-09 2:50 ` Rob Herring
2022-02-09 9:17 ` sylv
0 siblings, 1 reply; 8+ messages in thread
From: Rob Herring @ 2022-02-09 2:50 UTC (permalink / raw)
To: Marcello Sylvester Bauer
Cc: linux-hwmon, Guenter Roeck, Jean Delvare, devicetree,
linux-kernel
On Mon, Jan 17, 2022 at 05:12:47PM +0100, Marcello Sylvester Bauer wrote:
> Add vendor prefix for Vicor Corporation.
>
> Signed-off-by: Marcello Sylvester Bauer <sylv@sylv.io>
> ---
> Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> index 66d6432fd781..8a2a205d6d34 100644
> --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> @@ -1273,6 +1273,8 @@ patternProperties:
> "^vdl,.*":
> description: Van der Laan b.v.
> "^via,.*":
> + description: Vicor Corporation
You just changed the description for VIA.
> + "^vicor,.*":
> description: VIA Technologies, Inc.
> "^videostrong,.*":
> description: Videostrong Technology Co., Ltd.
> --
> 2.33.1
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v1 1/4] dt-bindings: vendor-prefixes: add Vicor Corporation
2022-02-09 2:50 ` Rob Herring
@ 2022-02-09 9:17 ` sylv
0 siblings, 0 replies; 8+ messages in thread
From: sylv @ 2022-02-09 9:17 UTC (permalink / raw)
To: Rob Herring
Cc: linux-hwmon, Guenter Roeck, Jean Delvare, devicetree,
linux-kernel
On Tue, 2022-02-08 at 20:50 -0600, Rob Herring wrote:
> On Mon, Jan 17, 2022 at 05:12:47PM +0100, Marcello Sylvester Bauer
> wrote:
> > Add vendor prefix for Vicor Corporation.
> >
> > Signed-off-by: Marcello Sylvester Bauer <sylv@sylv.io>
> > ---
> > Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > index 66d6432fd781..8a2a205d6d34 100644
> > --- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > +++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
> > @@ -1273,6 +1273,8 @@ patternProperties:
> > "^vdl,.*":
> > description: Van der Laan b.v.
> > "^via,.*":
> > + description: Vicor Corporation
>
> You just changed the description for VIA.
Indeed. My bad.
>
> > + "^vicor,.*":
> > description: VIA Technologies, Inc.
> > "^videostrong,.*":
> > description: Videostrong Technology Co., Ltd.
> > --
> > 2.33.1
> >
> >
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v1 1/4] dt-bindings: vendor-prefixes: add Vicor Corporation
[not found] <cover.1644597670.git.sylv@sylv.io>
@ 2022-02-11 17:17 ` Marcello Sylvester Bauer
0 siblings, 0 replies; 8+ messages in thread
From: Marcello Sylvester Bauer @ 2022-02-11 17:17 UTC (permalink / raw)
To: linux-hwmon
Cc: Marcello Sylvester Bauer, Guenter Roeck, Jean Delvare,
Rob Herring, devicetree, linux-kernel
Add vendor prefix for Vicor Corporation.
Signed-off-by: Marcello Sylvester Bauer <sylv@sylv.io>
---
Documentation/devicetree/bindings/vendor-prefixes.yaml | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Documentation/devicetree/bindings/vendor-prefixes.yaml b/Documentation/devicetree/bindings/vendor-prefixes.yaml
index 294093d45a23..047a83a089ce 100644
--- a/Documentation/devicetree/bindings/vendor-prefixes.yaml
+++ b/Documentation/devicetree/bindings/vendor-prefixes.yaml
@@ -1298,6 +1298,8 @@ patternProperties:
description: Vertexcom Technologies, Inc.
"^via,.*":
description: VIA Technologies, Inc.
+ "^vicor,.*":
+ description: Vicor Corporation
"^videostrong,.*":
description: Videostrong Technology Co., Ltd.
"^virtio,.*":
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2022-02-11 17:17 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <cover.1642434222.git.sylv@sylv.io>
2022-01-17 16:12 ` [PATCH v1 1/4] dt-bindings: vendor-prefixes: add Vicor Corporation Marcello Sylvester Bauer
2022-02-09 2:50 ` Rob Herring
2022-02-09 9:17 ` sylv
2022-01-17 16:12 ` [PATCH v1 2/4] dt-bindings: hwmon/pmbus: Add vicor,bcm6123 Bus Converter Marcello Sylvester Bauer
2022-01-17 17:06 ` Guenter Roeck
2022-01-18 7:48 ` sylv
2022-01-18 1:32 ` Rob Herring
[not found] <cover.1644597670.git.sylv@sylv.io>
2022-02-11 17:17 ` [PATCH v1 1/4] dt-bindings: vendor-prefixes: add Vicor Corporation Marcello Sylvester Bauer
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).