* [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema
@ 2026-08-12 9:44 Eduard Bostina
2026-08-12 9:53 ` sashiko-bot
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Eduard Bostina @ 2026-08-12 9:44 UTC (permalink / raw)
To: Conor Dooley, devicetree, Eduard Bostina, Krzysztof Kozlowski,
linux-kernel, linux-pwm, Rob Herring, Uwe Kleine-König
Cc: daniel.baluta, simona.toaca, goledhruva, m-chawdhry
Convert the Texas Instruments SoC PWM Subsystem bindings
to DT schema.
During the conversion, the following updates were made:
- 'counter' node was added to the allowed child nodes
list to resolve dtbs_check warnings. Some eqep nodes
use 'counter' instead of 'eqep'.
Signed-off-by: Eduard Bostina <egbostina@gmail.com>
---
Changes in v2:
- Renamed the file to ti,am33xx-pwmss.yaml to match the base compatible.
- Required a 'compatible' property in the child nodes.
- Reduced the binding to a single example and included the PWM child
nodes (ECAP, EQEP, EHRPWM) in it.
Link to v1: https://lore.kernel.org/all/2026081109d-up2208.687731-1-egbostina@gmail.com/
.../devicetree/bindings/pwm/pwm-tipwmss.txt | 58 --------------
.../bindings/pwm/ti,am33xx-pwmss.yaml | 76 +++++++++++++++++++
2 files changed, 76 insertions(+), 58 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/pwm/pwm-tipwmss.txt
create mode 100644 Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml
diff --git a/Documentation/devicetree/bindings/pwm/pwm-tipwmss.txt b/Documentation/devicetree/bindings/pwm/pwm-tipwmss.txt
deleted file mode 100644
index 4633697fbda1..000000000000
--- a/Documentation/devicetree/bindings/pwm/pwm-tipwmss.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-TI SOC based PWM Subsystem
-
-Required properties:
-- compatible: Must be "ti,<soc>-pwmss".
- for am33xx - compatible = "ti,am33xx-pwmss";
- for am4372 - compatible = "ti,am4372-pwmss","ti,am33xx-pwmss";
- for dra746 - compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss"
-
-- reg: physical base address and size of the registers map.
-- address-cells: Specify the number of u32 entries needed in child nodes.
- Should set to 1.
-- size-cells: specify number of u32 entries needed to specify child nodes size
- in reg property. Should set to 1.
-- ranges: describes the address mapping of a memory-mapped bus. Should set to
- physical address map of child's base address, physical address within
- parent's address space and length of the address map. For am33xx,
- 3 set of child register maps present, ECAP register space, EQEP
- register space, EHRPWM register space.
-
-Also child nodes should also populated under PWMSS DT node.
-
-Example:
-epwmss0: epwmss@48300000 { /* PWMSS for am33xx */
- compatible = "ti,am33xx-pwmss";
- reg = <0x48300000 0x10>;
- ti,hwmods = "epwmss0";
- #address-cells = <1>;
- #size-cells = <1>;
- ranges = <0x48300100 0x48300100 0x80 /* ECAP */
- 0x48300180 0x48300180 0x80 /* EQEP */
- 0x48300200 0x48300200 0x80>; /* EHRPWM */
-
- /* child nodes go here */
-};
-
-epwmss0: epwmss@48300000 { /* PWMSS for am4372 */
- compatible = "ti,am4372-pwmss","ti,am33xx-pwmss"
- reg = <0x48300000 0x10>;
- ti,hwmods = "epwmss0";
- #address-cells = <1>;
- #size-cells = <1>;
- ranges = <0x48300100 0x48300100 0x80 /* ECAP */
- 0x48300180 0x48300180 0x80 /* EQEP */
- 0x48300200 0x48300200 0x80>; /* EHRPWM */
-
- /* child nodes go here */
-};
-
-epwmss0: epwmss@4843e000 { /* PWMSS for DRA7xx */
- compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
- reg = <0x4843e000 0x30>;
- ti,hwmods = "epwmss0";
- #address-cells = <1>;
- #size-cells = <1>;
- ranges;
-
- /* child nodes go here */
-};
diff --git a/Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml b/Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml
new file mode 100644
index 000000000000..e2b6ae326cb5
--- /dev/null
+++ b/Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml
@@ -0,0 +1,76 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/pwm/ti,am33xx-pwmss.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Texas Instruments SoC PWM Subsystem
+
+maintainers:
+ - Eduard Bostina <egbostina@gmail.com>
+
+properties:
+ compatible:
+ oneOf:
+ - const: ti,am33xx-pwmss
+ - items:
+ - enum:
+ - ti,am4372-pwmss
+ - ti,dra746-pwmss
+ - const: ti,am33xx-pwmss
+
+ reg:
+ maxItems: 1
+
+ "#address-cells":
+ const: 1
+
+ "#size-cells":
+ const: 1
+
+ ranges: true
+
+patternProperties:
+ "^(ecap|eqep|pwm|counter)@[0-9a-f]+$":
+ type: object
+ description: Child nodes for ECAP, EQEP (counter), and EHRPWM
+ required:
+ - compatible
+
+required:
+ - compatible
+ - reg
+ - "#address-cells"
+ - "#size-cells"
+ - ranges
+
+additionalProperties: false
+
+examples:
+ - |
+ pwm@48300000 {
+ compatible = "ti,am33xx-pwmss";
+ reg = <0x48300000 0x10>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ ranges = <0x48300100 0x48300100 0x80>, /* ECAP */
+ <0x48300180 0x48300180 0x80>, /* EQEP */
+ <0x48300200 0x48300200 0x80>; /* EHRPWM */
+
+ pwm@48300100 {
+ compatible = "ti,am3352-ecap";
+ #pwm-cells = <3>;
+ reg = <0x48300100 0x80>;
+ };
+
+ counter@48300180 {
+ compatible = "ti,am3352-eqep";
+ reg = <0x48300180 0x80>;
+ };
+
+ pwm@48300200 {
+ compatible = "ti,am3352-ehrpwm";
+ #pwm-cells = <3>;
+ reg = <0x48300200 0x80>;
+ };
+ };
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema
2026-08-12 9:44 [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema Eduard Bostina
@ 2026-08-12 9:53 ` sashiko-bot
2026-08-12 19:28 ` Rob Herring (Arm)
2026-08-12 19:35 ` Rob Herring (Arm)
2 siblings, 0 replies; 5+ messages in thread
From: sashiko-bot @ 2026-08-12 9:53 UTC (permalink / raw)
To: Eduard Bostina; +Cc: conor+dt, robh, devicetree
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] The newly added YAML binding example contains child nodes (ECAP, EQEP, and EHRPWM) that omit mandatory properties required by their respective device tree schemas, which will cause `make dt_binding_check` to fail.
--
--- Patch [1]: [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema ---
commit 6e7740860be9339a28d4f050268b9aad56636a0b
Author: Eduard Bostina <egbostina@gmail.com>
dt-bindings: pwm: Convert TI PWM Subsystem to DT schema
Convert the Texas Instruments SoC PWM Subsystem bindings to DT schema.
During the conversion, a 'counter' node was added to the allowed child
nodes list to resolve dtbs_check warnings.
Link: https://lore.kernel.org/all/2026081109d-up2208.687731-1-egbostina@gmail.com/
> diff --git a/Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml b/Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml
> new file mode 100644
> index 0000000000000..e2b6ae326cb58
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml
[ ... ]
> +examples:
> + - |
> + pwm@48300000 {
> + compatible = "ti,am33xx-pwmss";
> + reg = <0x48300000 0x10>;
> + #address-cells = <1>;
> + #size-cells = <1>;
> + ranges = <0x48300100 0x48300100 0x80>, /* ECAP */
> + <0x48300180 0x48300180 0x80>, /* EQEP */
> + <0x48300200 0x48300200 0x80>; /* EHRPWM */
> +
> + pwm@48300100 {
> + compatible = "ti,am3352-ecap";
> + #pwm-cells = <3>;
> + reg = <0x48300100 0x80>;
> + };
> +
> + counter@48300180 {
> + compatible = "ti,am3352-eqep";
> + reg = <0x48300180 0x80>;
> + };
> +
> + pwm@48300200 {
> + compatible = "ti,am3352-ehrpwm";
> + #pwm-cells = <3>;
> + reg = <0x48300200 0x80>;
> + };
[Severity: Low]
Will this example fail dt_binding_check validation?
These child nodes omit properties that are mandatory in their respective device
tree schemas. For instance, the ECAP and EHRPWM nodes are missing clocks and
clock-names, and the EQEP node is missing clocks and interrupts.
Since dt_binding_check cross-validates examples against all existing schemas,
omitting these required properties will likely trigger validation errors.
> + };
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260812094420.1057067-1-egbostina@gmail.com?part=1
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema
2026-08-12 9:44 [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema Eduard Bostina
2026-08-12 9:53 ` sashiko-bot
@ 2026-08-12 19:28 ` Rob Herring (Arm)
2026-08-12 19:35 ` Rob Herring (Arm)
2 siblings, 0 replies; 5+ messages in thread
From: Rob Herring (Arm) @ 2026-08-12 19:28 UTC (permalink / raw)
To: Eduard Bostina
Cc: devicetree, linux-kernel, daniel.baluta, Uwe Kleine-König,
linux-pwm, m-chawdhry, Krzysztof Kozlowski, goledhruva,
simona.toaca, Conor Dooley
On Wed, 12 Aug 2026 09:44:20 +0000, Eduard Bostina wrote:
> Convert the Texas Instruments SoC PWM Subsystem bindings
> to DT schema.
>
> During the conversion, the following updates were made:
> - 'counter' node was added to the allowed child nodes
> list to resolve dtbs_check warnings. Some eqep nodes
> use 'counter' instead of 'eqep'.
>
> Signed-off-by: Eduard Bostina <egbostina@gmail.com>
> ---
> Changes in v2:
> - Renamed the file to ti,am33xx-pwmss.yaml to match the base compatible.
> - Required a 'compatible' property in the child nodes.
> - Reduced the binding to a single example and included the PWM child
> nodes (ECAP, EQEP, EHRPWM) in it.
>
> Link to v1: https://lore.kernel.org/all/2026081109d-up2208.687731-1-egbostina@gmail.com/
>
> .../devicetree/bindings/pwm/pwm-tipwmss.txt | 58 --------------
> .../bindings/pwm/ti,am33xx-pwmss.yaml | 76 +++++++++++++++++++
> 2 files changed, 76 insertions(+), 58 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/pwm/pwm-tipwmss.txt
> create mode 100644 Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
dtschema/dtc warnings/errors:
Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.example.dtb: pwm@48300100 (ti,am3352-ecap): 'clocks' is a required property
from schema $id: http://devicetree.org/schemas/pwm/pwm-tiecap.yaml
Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.example.dtb: pwm@48300100 (ti,am3352-ecap): 'clock-names' is a required property
from schema $id: http://devicetree.org/schemas/pwm/pwm-tiecap.yaml
Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.example.dtb: counter@48300180 (ti,am3352-eqep): 'oneOf' conditional failed, one must be fixed:
'interrupts' is a required property
'interrupts-extended' is a required property
from schema $id: http://devicetree.org/schemas/counter/ti-eqep.yaml
Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.example.dtb: counter@48300180 (ti,am3352-eqep): 'clocks' is a required property
from schema $id: http://devicetree.org/schemas/counter/ti-eqep.yaml
Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.example.dtb: pwm@48300200 (ti,am3352-ehrpwm): 'clocks' is a required property
from schema $id: http://devicetree.org/schemas/pwm/pwm-tiehrpwm.yaml
Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.example.dtb: pwm@48300200 (ti,am3352-ehrpwm): 'clock-names' is a required property
from schema $id: http://devicetree.org/schemas/pwm/pwm-tiehrpwm.yaml
doc reference errors (make refcheckdocs):
See https://patchwork.kernel.org/project/devicetree/patch/20260812094420.1057067-1-egbostina@gmail.com
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
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 after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema
2026-08-12 9:44 [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema Eduard Bostina
2026-08-12 9:53 ` sashiko-bot
2026-08-12 19:28 ` Rob Herring (Arm)
@ 2026-08-12 19:35 ` Rob Herring (Arm)
2026-08-12 19:44 ` Rob Herring
2 siblings, 1 reply; 5+ messages in thread
From: Rob Herring (Arm) @ 2026-08-12 19:35 UTC (permalink / raw)
To: Eduard Bostina
Cc: daniel.baluta, Krzysztof Kozlowski, Uwe Kleine-König,
goledhruva, m-chawdhry, linux-pwm, Conor Dooley, linux-kernel,
simona.toaca, devicetree
On Wed, 12 Aug 2026 09:44:20 +0000, Eduard Bostina wrote:
> Convert the Texas Instruments SoC PWM Subsystem bindings
> to DT schema.
>
> During the conversion, the following updates were made:
> - 'counter' node was added to the allowed child nodes
> list to resolve dtbs_check warnings. Some eqep nodes
> use 'counter' instead of 'eqep'.
>
> Signed-off-by: Eduard Bostina <egbostina@gmail.com>
> ---
> Changes in v2:
> - Renamed the file to ti,am33xx-pwmss.yaml to match the base compatible.
> - Required a 'compatible' property in the child nodes.
> - Reduced the binding to a single example and included the PWM child
> nodes (ECAP, EQEP, EHRPWM) in it.
>
> Link to v1: https://lore.kernel.org/all/2026081109d-up2208.687731-1-egbostina@gmail.com/
>
> .../devicetree/bindings/pwm/pwm-tipwmss.txt | 58 --------------
> .../bindings/pwm/ti,am33xx-pwmss.yaml | 76 +++++++++++++++++++
> 2 files changed, 76 insertions(+), 58 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/pwm/pwm-tipwmss.txt
> create mode 100644 Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml
>
Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema
2026-08-12 19:35 ` Rob Herring (Arm)
@ 2026-08-12 19:44 ` Rob Herring
0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2026-08-12 19:44 UTC (permalink / raw)
To: Eduard Bostina
Cc: daniel.baluta, Krzysztof Kozlowski, Uwe Kleine-König,
goledhruva, m-chawdhry, linux-pwm, Conor Dooley, linux-kernel,
simona.toaca, devicetree
On Wed, Aug 12, 2026 at 02:35:28PM -0500, Rob Herring (Arm) wrote:
>
> On Wed, 12 Aug 2026 09:44:20 +0000, Eduard Bostina wrote:
> > Convert the Texas Instruments SoC PWM Subsystem bindings
> > to DT schema.
> >
> > During the conversion, the following updates were made:
> > - 'counter' node was added to the allowed child nodes
> > list to resolve dtbs_check warnings. Some eqep nodes
> > use 'counter' instead of 'eqep'.
> >
> > Signed-off-by: Eduard Bostina <egbostina@gmail.com>
> > ---
> > Changes in v2:
> > - Renamed the file to ti,am33xx-pwmss.yaml to match the base compatible.
> > - Required a 'compatible' property in the child nodes.
> > - Reduced the binding to a single example and included the PWM child
> > nodes (ECAP, EQEP, EHRPWM) in it.
> >
> > Link to v1: https://lore.kernel.org/all/2026081109d-up2208.687731-1-egbostina@gmail.com/
> >
> > .../devicetree/bindings/pwm/pwm-tipwmss.txt | 58 --------------
> > .../bindings/pwm/ti,am33xx-pwmss.yaml | 76 +++++++++++++++++++
> > 2 files changed, 76 insertions(+), 58 deletions(-)
> > delete mode 100644 Documentation/devicetree/bindings/pwm/pwm-tipwmss.txt
> > create mode 100644 Documentation/devicetree/bindings/pwm/ti,am33xx-pwmss.yaml
> >
>
> Reviewed-by: Rob Herring (Arm) <robh@kernel.org>
Withdrawn. Your example is incomplete.
Do not use DT_SCHEMA_FILES to test. You can do
'make pwm/ti,am33xx-pwmss.yaml' which is a bit more complete of a test.
Rob
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-08-12 19:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-12 9:44 [PATCH v2] dt-bindings: pwm: Convert TI PWM Subsystem to DT schema Eduard Bostina
2026-08-12 9:53 ` sashiko-bot
2026-08-12 19:28 ` Rob Herring (Arm)
2026-08-12 19:35 ` Rob Herring (Arm)
2026-08-12 19:44 ` Rob Herring
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox