* [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node
@ 2024-05-18 20:07 Krzysztof Kozlowski
2024-05-18 20:07 ` [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon Krzysztof Kozlowski
` (5 more replies)
0 siblings, 6 replies; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-05-18 20:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel, Krzysztof Kozlowski
Hi,
I am in the process of fixing syscon/simple-mfd bindings (to be posted
separately) and found set of issues in TI looking independent of my
series. Please apply via TI SoC.
Best regards,
Krzysztof
---
Krzysztof Kozlowski (5):
dt-bindings: soc: ti: am62-system-controller: add AM62 syscon
dt-bindings: soc: ti: am645-system-controller: add AM654 syscon
arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible
arm64: dts: ti: k3-am65-mcu: add dedicated wakeup controller compatible
arm64: dts: ti: k3-am62a: use a specific MCU controller compatible
.../bindings/soc/ti/ti,am62-system-controller.yaml | 77 ++++++++++++++++++++++
.../soc/ti/ti,am654-system-controller.yaml | 60 +++++++++++++++++
arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi | 2 +-
arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi | 2 +-
arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi | 2 +-
5 files changed, 140 insertions(+), 3 deletions(-)
---
base-commit: e032bb82c315d2317a80506195d16ce4308d8cf7
change-id: 20240518-dt-bindings-ti-soc-mfd-ac211578d7a5
Best regards,
--
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon
2024-05-18 20:07 [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Krzysztof Kozlowski
@ 2024-05-18 20:07 ` Krzysztof Kozlowski
2024-05-20 11:35 ` Roger Quadros
2024-05-20 17:13 ` Conor Dooley
2024-05-18 20:07 ` [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon Krzysztof Kozlowski
` (4 subsequent siblings)
5 siblings, 2 replies; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-05-18 20:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel, Krzysztof Kozlowski
Add dedicated binding for AM62 and AM62A wakeup system controller
registers, already used in the DTS to properly describe their children.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
.../bindings/soc/ti/ti,am62-system-controller.yaml | 77 ++++++++++++++++++++++
1 file changed, 77 insertions(+)
diff --git a/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml b/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml
new file mode 100644
index 000000000000..d3bd67717999
--- /dev/null
+++ b/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml
@@ -0,0 +1,77 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/soc/ti/ti,am62-system-controller.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: TI AM62 System Controller Registers R/W
+
+maintainers:
+ - Kishon Vijay Abraham I <kishon@ti.com>
+ - Roger Quadros <rogerq@kernel.org>
+
+properties:
+ compatible:
+ items:
+ - enum:
+ - ti,am62-system-controller
+ - ti,am62a-system-controller
+ - const: syscon
+ - const: simple-mfd
+
+ reg:
+ maxItems: 1
+
+ "#address-cells":
+ const: 1
+
+ "#size-cells":
+ const: 1
+
+ ranges: true
+
+patternProperties:
+ "^chipid@[0-9a-f]+$":
+ type: object
+ $ref: /schemas/hwinfo/ti,k3-socinfo.yaml#
+
+ "^syscon@[0-9a-f]+$":
+ type: object
+ $ref: /schemas/mfd/syscon.yaml#
+ unevaluatedProperties: false
+ properties:
+ compatible:
+ items:
+ - const: ti,am62-usb-phy-ctrl
+ - const: syscon
+
+required:
+ - compatible
+ - reg
+ - "#address-cells"
+ - "#size-cells"
+ - ranges
+
+additionalProperties: false
+
+examples:
+ - |
+ syscon@43000000 {
+ compatible = "ti,am62-system-controller", "syscon", "simple-mfd";
+ reg = <0x43000000 0x20000>;
+ bootph-all;
+ #address-cells = <1>;
+ #size-cells = <1>;
+ ranges = <0x0 0x43000000 0x20000>;
+
+ chipid@14 {
+ compatible = "ti,am654-chipid";
+ reg = <0x14 0x4>;
+ bootph-all;
+ };
+
+ syscon@4008 {
+ compatible = "ti,am62-usb-phy-ctrl", "syscon";
+ reg = <0x4008 0x4>;
+ };
+ };
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon
2024-05-18 20:07 [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Krzysztof Kozlowski
2024-05-18 20:07 ` [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon Krzysztof Kozlowski
@ 2024-05-18 20:07 ` Krzysztof Kozlowski
2024-05-20 11:41 ` Roger Quadros
2024-05-20 17:14 ` Conor Dooley
2024-05-18 20:07 ` [PATCH 3/5] arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible Krzysztof Kozlowski
` (3 subsequent siblings)
5 siblings, 2 replies; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-05-18 20:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel, Krzysztof Kozlowski
Add dedicated binding for the AM654 MCU SCM system controller registers,
already used in the DTS to properly describe its children.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
.../soc/ti/ti,am654-system-controller.yaml | 60 ++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml b/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml
new file mode 100644
index 000000000000..e79803e586ca
--- /dev/null
+++ b/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml
@@ -0,0 +1,60 @@
+# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/soc/ti/ti,am654-system-controller.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: TI AM654 System Controller Registers R/W
+
+maintainers:
+ - Kishon Vijay Abraham I <kishon@ti.com>
+ - Roger Quadros <rogerq@kernel.org>
+
+properties:
+ compatible:
+ items:
+ - enum:
+ - ti,am654-system-controller
+ - const: syscon
+ - const: simple-mfd
+
+ reg:
+ maxItems: 1
+
+ "#address-cells":
+ const: 1
+
+ "#size-cells":
+ const: 1
+
+ ranges: true
+
+patternProperties:
+ "^phy@[0-9a-f]+$":
+ type: object
+ $ref: /schemas/phy/ti,phy-gmii-sel.yaml#
+
+required:
+ - compatible
+ - reg
+ - "#address-cells"
+ - "#size-cells"
+ - ranges
+
+additionalProperties: false
+
+examples:
+ - |
+ syscon@40f00000 {
+ compatible = "ti,am654-system-controller", "syscon", "simple-mfd";
+ reg = <0x40f00000 0x20000>;
+ ranges = <0x0 0x40f00000 0x20000>;
+ #address-cells = <1>;
+ #size-cells = <1>;
+
+ phy@4040 {
+ compatible = "ti,am654-phy-gmii-sel";
+ reg = <0x4040 0x4>;
+ #phy-cells = <1>;
+ };
+ };
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 3/5] arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible
2024-05-18 20:07 [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Krzysztof Kozlowski
2024-05-18 20:07 ` [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon Krzysztof Kozlowski
2024-05-18 20:07 ` [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon Krzysztof Kozlowski
@ 2024-05-18 20:07 ` Krzysztof Kozlowski
2024-05-20 11:39 ` Roger Quadros
2024-05-18 20:07 ` [PATCH 4/5] arm64: dts: ti: k3-am65-mcu: " Krzysztof Kozlowski
` (2 subsequent siblings)
5 siblings, 1 reply; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-05-18 20:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel, Krzysztof Kozlowski
Each syscon node must come with a dedicated/specific compatible, which
is also reported by dtbs_check:
k3-am62-lp-sk.dtb: syscon@43000000: compatible: ['syscon', 'simple-mfd'] is too short
Add one for the TI K3 AM62 wakeup system controller.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi b/arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi
index 66ddf2dc51af..3c1023108642 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi
@@ -10,7 +10,7 @@
&cbass_wakeup {
wkup_conf: syscon@43000000 {
bootph-all;
- compatible = "syscon", "simple-mfd";
+ compatible = "ti,am62-system-controller", "syscon", "simple-mfd";
reg = <0x00 0x43000000 0x00 0x20000>;
#address-cells = <1>;
#size-cells = <1>;
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 4/5] arm64: dts: ti: k3-am65-mcu: add dedicated wakeup controller compatible
2024-05-18 20:07 [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Krzysztof Kozlowski
` (2 preceding siblings ...)
2024-05-18 20:07 ` [PATCH 3/5] arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible Krzysztof Kozlowski
@ 2024-05-18 20:07 ` Krzysztof Kozlowski
2024-05-20 11:40 ` Roger Quadros
2024-05-18 20:07 ` [PATCH 5/5] arm64: dts: ti: k3-am62a: use a specific MCU " Krzysztof Kozlowski
2024-06-19 4:58 ` [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Jan Kiszka
5 siblings, 1 reply; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-05-18 20:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel, Krzysztof Kozlowski
Each syscon node must come with a dedicated/specific compatible, which
is also reported by dtbs_check:
k3-am654-base-board.dtb: scm-conf@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
Add one for the TI K3 AM654 MCU wakeup system controller.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi b/arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi
index 8feab9317644..3a61ea728645 100644
--- a/arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi
@@ -7,7 +7,7 @@
&cbass_mcu {
mcu_conf: scm-conf@40f00000 {
- compatible = "syscon", "simple-mfd";
+ compatible = "ti,am654-system-controller", "syscon", "simple-mfd";
reg = <0x0 0x40f00000 0x0 0x20000>;
#address-cells = <1>;
#size-cells = <1>;
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 5/5] arm64: dts: ti: k3-am62a: use a specific MCU controller compatible
2024-05-18 20:07 [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Krzysztof Kozlowski
` (3 preceding siblings ...)
2024-05-18 20:07 ` [PATCH 4/5] arm64: dts: ti: k3-am65-mcu: " Krzysztof Kozlowski
@ 2024-05-18 20:07 ` Krzysztof Kozlowski
2024-05-20 11:40 ` Roger Quadros
2024-06-19 4:58 ` [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Jan Kiszka
5 siblings, 1 reply; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-05-18 20:07 UTC (permalink / raw)
To: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel, Krzysztof Kozlowski
SoCs (and associated MCUs) should use dedicated compatibles for their
nodes, not re-use one coming from an another SoC. Using an incorrect
compatible does not allow to properly match/validate children of the
MCU device and causes dtbs_check warnings:
k3-am62a7-sk.dtb: syscon@43000000: 'syscon@4008', 'syscon@4018' do not match any of the regexes:
'^chipid@[0-9a-f]+$', '^clock-controller@[0-9a-f]+$', '^mux-controller@[0-9a-f]+$', 'phy@[0-9a-f]+$', 'pinctrl-[0-9]+'
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi
index 98043e9aa316..d12c8c194a46 100644
--- a/arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi
@@ -7,7 +7,7 @@
&cbass_wakeup {
wkup_conf: syscon@43000000 {
- compatible = "ti,j721e-system-controller", "syscon", "simple-mfd";
+ compatible = "ti,am62a-system-controller", "syscon", "simple-mfd";
reg = <0x00 0x43000000 0x00 0x20000>;
#address-cells = <1>;
#size-cells = <1>;
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon
2024-05-18 20:07 ` [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon Krzysztof Kozlowski
@ 2024-05-20 11:35 ` Roger Quadros
2024-05-20 13:09 ` Krzysztof Kozlowski
2024-05-20 17:13 ` Conor Dooley
1 sibling, 1 reply; 17+ messages in thread
From: Roger Quadros @ 2024-05-20 11:35 UTC (permalink / raw)
To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Kishon Vijay Abraham I, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel
On 18/05/2024 23:07, Krzysztof Kozlowski wrote:
> Add dedicated binding for AM62 and AM62A wakeup system controller
> registers, already used in the DTS to properly describe their children.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> .../bindings/soc/ti/ti,am62-system-controller.yaml | 77 ++++++++++++++++++++++
> 1 file changed, 77 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml b/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml
> new file mode 100644
> index 000000000000..d3bd67717999
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml
> @@ -0,0 +1,77 @@
> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/soc/ti/ti,am62-system-controller.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: TI AM62 System Controller Registers R/W
> +
> +maintainers:
> + - Kishon Vijay Abraham I <kishon@ti.com>
Above email might be invalid. Please use this instead
Kishon Vijay Abraham I <kishon@kernel.org>
> + - Roger Quadros <rogerq@kernel.org>
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - ti,am62-system-controller
> + - ti,am62a-system-controller
> + - const: syscon
> + - const: simple-mfd
> +
> + reg:
> + maxItems: 1
> +
> + "#address-cells":
> + const: 1
> +
> + "#size-cells":
> + const: 1
> +
> + ranges: true
> +
> +patternProperties:
> + "^chipid@[0-9a-f]+$":
> + type: object
> + $ref: /schemas/hwinfo/ti,k3-socinfo.yaml#
> +
> + "^syscon@[0-9a-f]+$":
> + type: object
> + $ref: /schemas/mfd/syscon.yaml#
> + unevaluatedProperties: false
> + properties:
> + compatible:
> + items:
> + - const: ti,am62-usb-phy-ctrl
> + - const: syscon
> +
> +required:
> + - compatible
> + - reg
> + - "#address-cells"
> + - "#size-cells"
> + - ranges
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + syscon@43000000 {
> + compatible = "ti,am62-system-controller", "syscon", "simple-mfd";
> + reg = <0x43000000 0x20000>;
> + bootph-all;
> + #address-cells = <1>;
> + #size-cells = <1>;
> + ranges = <0x0 0x43000000 0x20000>;
> +
> + chipid@14 {
> + compatible = "ti,am654-chipid";
> + reg = <0x14 0x4>;
> + bootph-all;
> + };
> +
> + syscon@4008 {
> + compatible = "ti,am62-usb-phy-ctrl", "syscon";
> + reg = <0x4008 0x4>;
> + };
> + };
>
--
cheers,
-roger
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 3/5] arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible
2024-05-18 20:07 ` [PATCH 3/5] arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible Krzysztof Kozlowski
@ 2024-05-20 11:39 ` Roger Quadros
0 siblings, 0 replies; 17+ messages in thread
From: Roger Quadros @ 2024-05-20 11:39 UTC (permalink / raw)
To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Kishon Vijay Abraham I, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel
On 18/05/2024 23:07, Krzysztof Kozlowski wrote:
> Each syscon node must come with a dedicated/specific compatible, which
> is also reported by dtbs_check:
>
> k3-am62-lp-sk.dtb: syscon@43000000: compatible: ['syscon', 'simple-mfd'] is too short
>
> Add one for the TI K3 AM62 wakeup system controller.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
--
cheers,
-roger
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 4/5] arm64: dts: ti: k3-am65-mcu: add dedicated wakeup controller compatible
2024-05-18 20:07 ` [PATCH 4/5] arm64: dts: ti: k3-am65-mcu: " Krzysztof Kozlowski
@ 2024-05-20 11:40 ` Roger Quadros
0 siblings, 0 replies; 17+ messages in thread
From: Roger Quadros @ 2024-05-20 11:40 UTC (permalink / raw)
To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Kishon Vijay Abraham I, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel
On 18/05/2024 23:07, Krzysztof Kozlowski wrote:
> Each syscon node must come with a dedicated/specific compatible, which
> is also reported by dtbs_check:
>
> k3-am654-base-board.dtb: scm-conf@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
>
> Add one for the TI K3 AM654 MCU wakeup system controller.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
--
cheers,
-roger
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 5/5] arm64: dts: ti: k3-am62a: use a specific MCU controller compatible
2024-05-18 20:07 ` [PATCH 5/5] arm64: dts: ti: k3-am62a: use a specific MCU " Krzysztof Kozlowski
@ 2024-05-20 11:40 ` Roger Quadros
0 siblings, 0 replies; 17+ messages in thread
From: Roger Quadros @ 2024-05-20 11:40 UTC (permalink / raw)
To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Kishon Vijay Abraham I, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel
On 18/05/2024 23:07, Krzysztof Kozlowski wrote:
> SoCs (and associated MCUs) should use dedicated compatibles for their
> nodes, not re-use one coming from an another SoC. Using an incorrect
> compatible does not allow to properly match/validate children of the
> MCU device and causes dtbs_check warnings:
>
> k3-am62a7-sk.dtb: syscon@43000000: 'syscon@4008', 'syscon@4018' do not match any of the regexes:
> '^chipid@[0-9a-f]+$', '^clock-controller@[0-9a-f]+$', '^mux-controller@[0-9a-f]+$', 'phy@[0-9a-f]+$', 'pinctrl-[0-9]+'
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
--
cheers,
-roger
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon
2024-05-18 20:07 ` [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon Krzysztof Kozlowski
@ 2024-05-20 11:41 ` Roger Quadros
2024-05-20 17:14 ` Conor Dooley
1 sibling, 0 replies; 17+ messages in thread
From: Roger Quadros @ 2024-05-20 11:41 UTC (permalink / raw)
To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Kishon Vijay Abraham I, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel
On 18/05/2024 23:07, Krzysztof Kozlowski wrote:
> Add dedicated binding for the AM654 MCU SCM system controller registers,
> already used in the DTS to properly describe its children.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> .../soc/ti/ti,am654-system-controller.yaml | 60 ++++++++++++++++++++++
> 1 file changed, 60 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml b/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml
> new file mode 100644
> index 000000000000..e79803e586ca
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml
> @@ -0,0 +1,60 @@
> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/soc/ti/ti,am654-system-controller.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: TI AM654 System Controller Registers R/W
> +
> +maintainers:
> + - Kishon Vijay Abraham I <kishon@ti.com>
Please update the email address to Kishon Vijay Abraham I <kishon@kernel.org>
> + - Roger Quadros <rogerq@kernel.org>
> +
> +properties:
> + compatible:
> + items:
> + - enum:
> + - ti,am654-system-controller
> + - const: syscon
> + - const: simple-mfd
> +
> + reg:
> + maxItems: 1
> +
> + "#address-cells":
> + const: 1
> +
> + "#size-cells":
> + const: 1
> +
> + ranges: true
> +
> +patternProperties:
> + "^phy@[0-9a-f]+$":
> + type: object
> + $ref: /schemas/phy/ti,phy-gmii-sel.yaml#
> +
> +required:
> + - compatible
> + - reg
> + - "#address-cells"
> + - "#size-cells"
> + - ranges
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + syscon@40f00000 {
> + compatible = "ti,am654-system-controller", "syscon", "simple-mfd";
> + reg = <0x40f00000 0x20000>;
> + ranges = <0x0 0x40f00000 0x20000>;
> + #address-cells = <1>;
> + #size-cells = <1>;
> +
> + phy@4040 {
> + compatible = "ti,am654-phy-gmii-sel";
> + reg = <0x4040 0x4>;
> + #phy-cells = <1>;
> + };
> + };
>
--
cheers,
-roger
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon
2024-05-20 11:35 ` Roger Quadros
@ 2024-05-20 13:09 ` Krzysztof Kozlowski
0 siblings, 0 replies; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-05-20 13:09 UTC (permalink / raw)
To: Roger Quadros, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Nishanth Menon, Vignesh Raghavendra,
Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel
On 20/05/2024 13:35, Roger Quadros wrote:
>
>
> On 18/05/2024 23:07, Krzysztof Kozlowski wrote:
>> Add dedicated binding for AM62 and AM62A wakeup system controller
>> registers, already used in the DTS to properly describe their children.
>>
>> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>> ---
>> .../bindings/soc/ti/ti,am62-system-controller.yaml | 77 ++++++++++++++++++++++
>> 1 file changed, 77 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml b/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml
>> new file mode 100644
>> index 000000000000..d3bd67717999
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/soc/ti/ti,am62-system-controller.yaml
>> @@ -0,0 +1,77 @@
>> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/soc/ti/ti,am62-system-controller.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: TI AM62 System Controller Registers R/W
>> +
>> +maintainers:
>> + - Kishon Vijay Abraham I <kishon@ti.com>
>
> Above email might be invalid. Please use this instead
>
> Kishon Vijay Abraham I <kishon@kernel.org>
>
Thanks. I took old email from bindings, so it would be nice if Kishon
fixes his email everywhere (not only mailmap).
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon
2024-05-18 20:07 ` [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon Krzysztof Kozlowski
2024-05-20 11:35 ` Roger Quadros
@ 2024-05-20 17:13 ` Conor Dooley
1 sibling, 0 replies; 17+ messages in thread
From: Conor Dooley @ 2024-05-20 17:13 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo, devicetree, linux-kernel,
linux-arm-kernel
[-- Attachment #1: Type: text/plain, Size: 366 bytes --]
On Sat, May 18, 2024 at 10:07:16PM +0200, Krzysztof Kozlowski wrote:
> Add dedicated binding for AM62 and AM62A wakeup system controller
> registers, already used in the DTS to properly describe their children.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Cheers,
Conor.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon
2024-05-18 20:07 ` [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon Krzysztof Kozlowski
2024-05-20 11:41 ` Roger Quadros
@ 2024-05-20 17:14 ` Conor Dooley
2024-05-21 9:15 ` Krzysztof Kozlowski
1 sibling, 1 reply; 17+ messages in thread
From: Conor Dooley @ 2024-05-20 17:14 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo, devicetree, linux-kernel,
linux-arm-kernel
[-- Attachment #1: Type: text/plain, Size: 1198 bytes --]
On Sat, May 18, 2024 at 10:07:17PM +0200, Krzysztof Kozlowski wrote:
> Add dedicated binding for the AM654 MCU SCM system controller registers,
> already used in the DTS to properly describe its children.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> .../soc/ti/ti,am654-system-controller.yaml | 60 ++++++++++++++++++++++
> 1 file changed, 60 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml b/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml
> new file mode 100644
> index 000000000000..e79803e586ca
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml
> @@ -0,0 +1,60 @@
> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/soc/ti/ti,am654-system-controller.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: TI AM654 System Controller Registers R/W
"R/W"? Is that a copy-paste mistake from the register map for this SoC?
Otherwise,
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Cheers,
Conor.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon
2024-05-20 17:14 ` Conor Dooley
@ 2024-05-21 9:15 ` Krzysztof Kozlowski
0 siblings, 0 replies; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-05-21 9:15 UTC (permalink / raw)
To: Conor Dooley
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo, devicetree, linux-kernel,
linux-arm-kernel
On 20/05/2024 19:14, Conor Dooley wrote:
> On Sat, May 18, 2024 at 10:07:17PM +0200, Krzysztof Kozlowski wrote:
>> Add dedicated binding for the AM654 MCU SCM system controller registers,
>> already used in the DTS to properly describe its children.
>>
>> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
>> ---
>> .../soc/ti/ti,am654-system-controller.yaml | 60 ++++++++++++++++++++++
>> 1 file changed, 60 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml b/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml
>> new file mode 100644
>> index 000000000000..e79803e586ca
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/soc/ti/ti,am654-system-controller.yaml
>> @@ -0,0 +1,60 @@
>> +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/soc/ti/ti,am654-system-controller.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: TI AM654 System Controller Registers R/W
>
> "R/W"? Is that a copy-paste mistake from the register map for this SoC?
Other TI syscon bindings had it. I'll drop it.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node
2024-05-18 20:07 [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Krzysztof Kozlowski
` (4 preceding siblings ...)
2024-05-18 20:07 ` [PATCH 5/5] arm64: dts: ti: k3-am62a: use a specific MCU " Krzysztof Kozlowski
@ 2024-06-19 4:58 ` Jan Kiszka
2024-06-19 5:54 ` Krzysztof Kozlowski
5 siblings, 1 reply; 17+ messages in thread
From: Jan Kiszka @ 2024-06-19 4:58 UTC (permalink / raw)
To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Kishon Vijay Abraham I, Roger Quadros,
Nishanth Menon, Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel, Andrew F. Davis
On 18.05.24 22:07, Krzysztof Kozlowski wrote:
> Hi,
>
> I am in the process of fixing syscon/simple-mfd bindings (to be posted
> separately) and found set of issues in TI looking independent of my
> series. Please apply via TI SoC.
>
> Best regards,
> Krzysztof
>
> ---
> Krzysztof Kozlowski (5):
> dt-bindings: soc: ti: am62-system-controller: add AM62 syscon
> dt-bindings: soc: ti: am645-system-controller: add AM654 syscon
> arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible
> arm64: dts: ti: k3-am65-mcu: add dedicated wakeup controller compatible
> arm64: dts: ti: k3-am62a: use a specific MCU controller compatible
>
> .../bindings/soc/ti/ti,am62-system-controller.yaml | 77 ++++++++++++++++++++++
> .../soc/ti/ti,am654-system-controller.yaml | 60 +++++++++++++++++
> arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi | 2 +-
> arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi | 2 +-
> arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi | 2 +-
> 5 files changed, 140 insertions(+), 3 deletions(-)
> ---
> base-commit: e032bb82c315d2317a80506195d16ce4308d8cf7
> change-id: 20240518-dt-bindings-ti-soc-mfd-ac211578d7a5
>
> Best regards,
Good to see progress here! Helps us finding our own issues while adding
things to the affected targets.
But you didn't address this ones yet:
.../arch/arm64/boot/dts/ti/k3-am654-base-board.dtb: scm-conf@100000: compatible: ['syscon', 'simple-mfd'] is too short
from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
(plus our IOT2050 boards, all via k3-am65-main.dtsi)
And a number of other boards seem to lack adoption of the new wakeup
controller binding if I get this correctly:
.../arch/arm64/boot/dts/ti/k3-j7200-common-proc-board.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
.../arch/arm64/boot/dts/ti/k3-j721e-beagleboneai64.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
DTC_CHK arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dtb
.../arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
.../arch/arm64/boot/dts/ti/k3-j721e-sk.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
DTC_CHK arch/arm64/boot/dts/ti/k3-am68-sk-base-board.dtb
.../arch/arm64/boot/dts/ti/k3-am68-sk-base-board.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
DTC_CHK arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dtb
.../arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
Forgotten?
Jan
--
Siemens AG, Technology
Linux Expert Center
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node
2024-06-19 4:58 ` [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Jan Kiszka
@ 2024-06-19 5:54 ` Krzysztof Kozlowski
0 siblings, 0 replies; 17+ messages in thread
From: Krzysztof Kozlowski @ 2024-06-19 5:54 UTC (permalink / raw)
To: Jan Kiszka, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Kishon Vijay Abraham I, Roger Quadros, Nishanth Menon,
Vignesh Raghavendra, Tero Kristo
Cc: devicetree, linux-kernel, linux-arm-kernel, Andrew F. Davis
On 19/06/2024 06:58, Jan Kiszka wrote:
> On 18.05.24 22:07, Krzysztof Kozlowski wrote:
>> Hi,
>>
>> I am in the process of fixing syscon/simple-mfd bindings (to be posted
>> separately) and found set of issues in TI looking independent of my
>> series. Please apply via TI SoC.
>>
>> Best regards,
>> Krzysztof
>>
>> ---
>> Krzysztof Kozlowski (5):
>> dt-bindings: soc: ti: am62-system-controller: add AM62 syscon
>> dt-bindings: soc: ti: am645-system-controller: add AM654 syscon
>> arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible
>> arm64: dts: ti: k3-am65-mcu: add dedicated wakeup controller compatible
>> arm64: dts: ti: k3-am62a: use a specific MCU controller compatible
>>
>> .../bindings/soc/ti/ti,am62-system-controller.yaml | 77 ++++++++++++++++++++++
>> .../soc/ti/ti,am654-system-controller.yaml | 60 +++++++++++++++++
>> arch/arm64/boot/dts/ti/k3-am62-wakeup.dtsi | 2 +-
>> arch/arm64/boot/dts/ti/k3-am62a-wakeup.dtsi | 2 +-
>> arch/arm64/boot/dts/ti/k3-am65-mcu.dtsi | 2 +-
>> 5 files changed, 140 insertions(+), 3 deletions(-)
>> ---
>> base-commit: e032bb82c315d2317a80506195d16ce4308d8cf7
>> change-id: 20240518-dt-bindings-ti-soc-mfd-ac211578d7a5
>>
>> Best regards,
>
> Good to see progress here! Helps us finding our own issues while adding
> things to the affected targets.
>
> But you didn't address this ones yet:
>
> .../arch/arm64/boot/dts/ti/k3-am654-base-board.dtb: scm-conf@100000: compatible: ['syscon', 'simple-mfd'] is too short
> from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
> (plus our IOT2050 boards, all via k3-am65-main.dtsi)
>
> And a number of other boards seem to lack adoption of the new wakeup
> controller binding if I get this correctly:
>
> .../arch/arm64/boot/dts/ti/k3-j7200-common-proc-board.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
> from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
> .../arch/arm64/boot/dts/ti/k3-j721e-beagleboneai64.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
> from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
> DTC_CHK arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dtb
> .../arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
> from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
> .../arch/arm64/boot/dts/ti/k3-j721e-sk.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
> from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
> DTC_CHK arch/arm64/boot/dts/ti/k3-am68-sk-base-board.dtb
> .../arch/arm64/boot/dts/ti/k3-am68-sk-base-board.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
> from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
> DTC_CHK arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dtb
> .../arch/arm64/boot/dts/ti/k3-j721s2-common-proc-board.dtb: syscon@40f00000: compatible: ['syscon', 'simple-mfd'] is too short
> from schema $id: http://devicetree.org/schemas/mfd/syscon.yaml#
>
> Forgotten?
There are just too many warnings to be fixed.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-06-19 5:54 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-18 20:07 [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Krzysztof Kozlowski
2024-05-18 20:07 ` [PATCH 1/5] dt-bindings: soc: ti: am62-system-controller: add AM62 syscon Krzysztof Kozlowski
2024-05-20 11:35 ` Roger Quadros
2024-05-20 13:09 ` Krzysztof Kozlowski
2024-05-20 17:13 ` Conor Dooley
2024-05-18 20:07 ` [PATCH 2/5] dt-bindings: soc: ti: am645-system-controller: add AM654 syscon Krzysztof Kozlowski
2024-05-20 11:41 ` Roger Quadros
2024-05-20 17:14 ` Conor Dooley
2024-05-21 9:15 ` Krzysztof Kozlowski
2024-05-18 20:07 ` [PATCH 3/5] arm64: dts: ti: k3-am62: add dedicated wakeup controller compatible Krzysztof Kozlowski
2024-05-20 11:39 ` Roger Quadros
2024-05-18 20:07 ` [PATCH 4/5] arm64: dts: ti: k3-am65-mcu: " Krzysztof Kozlowski
2024-05-20 11:40 ` Roger Quadros
2024-05-18 20:07 ` [PATCH 5/5] arm64: dts: ti: k3-am62a: use a specific MCU " Krzysztof Kozlowski
2024-05-20 11:40 ` Roger Quadros
2024-06-19 4:58 ` [PATCH 0/5] ti: fix dtbs_check for some syscon bindings and DTS node Jan Kiszka
2024-06-19 5:54 ` Krzysztof Kozlowski
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).