* [PATCH v3 1/2] dt-bindings: mtd: cadence: document required clock-names
2025-02-12 11:25 [PATCH v3 0/2] add clock-names property to nand node niravkumar.l.rabara
@ 2025-02-12 11:25 ` niravkumar.l.rabara
2025-02-12 11:25 ` [PATCH v3 2/2] arm64: dts: socfpga: agilex5: add clock-names property to nand node niravkumar.l.rabara
2025-02-14 18:25 ` [PATCH v3 0/2] " Miquel Raynal
2 siblings, 0 replies; 4+ messages in thread
From: niravkumar.l.rabara @ 2025-02-12 11:25 UTC (permalink / raw)
To: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Krzysztof Kozlowski, Conor Dooley
Cc: Niravkumar L Rabara, nirav.rabara, devicetree, linux-mtd,
linux-kernel, Krzysztof Kozlowski
From: Niravkumar L Rabara <niravkumar.l.rabara@intel.com>
The clock-names property is required because the driver requests
the clock by name and not the index.
Update the example to use &clk instead of &nf_clk for the clocks
property to avoid confusion with the clock-names property "nf_clk".
Fixes: 1f05f823a16c (dt-bindings: mtd: cadence: convert cadence-nand-controller.txt to yaml)
Signed-off-by: Niravkumar L Rabara <niravkumar.l.rabara@intel.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
Documentation/devicetree/bindings/mtd/cdns,hp-nfc.yaml | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/mtd/cdns,hp-nfc.yaml b/Documentation/devicetree/bindings/mtd/cdns,hp-nfc.yaml
index 0bed37a994c3..e1f4d7c35a88 100644
--- a/Documentation/devicetree/bindings/mtd/cdns,hp-nfc.yaml
+++ b/Documentation/devicetree/bindings/mtd/cdns,hp-nfc.yaml
@@ -33,6 +33,10 @@ properties:
clocks:
maxItems: 1
+ clock-names:
+ items:
+ - const: nf_clk
+
dmas:
maxItems: 1
@@ -51,6 +55,7 @@ required:
- reg-names
- interrupts
- clocks
+ - clock-names
unevaluatedProperties: false
@@ -66,7 +71,8 @@ examples:
#address-cells = <1>;
#size-cells = <0>;
interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
- clocks = <&nf_clk>;
+ clocks = <&clk>;
+ clock-names = "nf_clk";
cdns,board-delay-ps = <4830>;
nand@0 {
--
2.25.1
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH v3 2/2] arm64: dts: socfpga: agilex5: add clock-names property to nand node
2025-02-12 11:25 [PATCH v3 0/2] add clock-names property to nand node niravkumar.l.rabara
2025-02-12 11:25 ` [PATCH v3 1/2] dt-bindings: mtd: cadence: document required clock-names niravkumar.l.rabara
@ 2025-02-12 11:25 ` niravkumar.l.rabara
2025-02-14 18:25 ` [PATCH v3 0/2] " Miquel Raynal
2 siblings, 0 replies; 4+ messages in thread
From: niravkumar.l.rabara @ 2025-02-12 11:25 UTC (permalink / raw)
To: Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Rob Herring, Krzysztof Kozlowski, Conor Dooley
Cc: Niravkumar L Rabara, nirav.rabara, devicetree, linux-mtd,
linux-kernel, Krzysztof Kozlowski
From: Niravkumar L Rabara <niravkumar.l.rabara@intel.com>
Add required clock-names property to the nand node.
Fixes: 2d599bc43813 (arm64: dts: agilex5: add initial support for Intel Agilex5 SoCFPGA)
Signed-off-by: Niravkumar L Rabara <niravkumar.l.rabara@intel.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi b/arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi
index 51c6e19e40b8..27f75e1bc8eb 100644
--- a/arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi
+++ b/arch/arm64/boot/dts/intel/socfpga_agilex5.dtsi
@@ -271,6 +271,7 @@ nand: nand-controller@10b80000 {
#size-cells = <0>;
interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&clkmgr AGILEX5_NAND_NF_CLK>;
+ clock-names = "nf_clk";
cdns,board-delay-ps = <4830>;
status = "disabled";
};
--
2.25.1
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v3 0/2] add clock-names property to nand node
2025-02-12 11:25 [PATCH v3 0/2] add clock-names property to nand node niravkumar.l.rabara
2025-02-12 11:25 ` [PATCH v3 1/2] dt-bindings: mtd: cadence: document required clock-names niravkumar.l.rabara
2025-02-12 11:25 ` [PATCH v3 2/2] arm64: dts: socfpga: agilex5: add clock-names property to nand node niravkumar.l.rabara
@ 2025-02-14 18:25 ` Miquel Raynal
2 siblings, 0 replies; 4+ messages in thread
From: Miquel Raynal @ 2025-02-14 18:25 UTC (permalink / raw)
To: Richard Weinberger, Vignesh Raghavendra, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, niravkumar.l.rabara
Cc: Miquel Raynal, nirav.rabara, devicetree, linux-mtd, linux-kernel
On Wed, 12 Feb 2025 19:25:33 +0800, niravkumar.l.rabara@intel.com wrote:
> From: Niravkumar L Rabara <niravkumar.l.rabara@intel.com>
>
> 1) Document the required clock-names property because the driver
> requests the clock by name and not the index.
> 2) Add required clock-names property to the nand node in device tree.
>
> Changes in v3:
> * Include missing Fixes tag.
>
> [...]
The following patch has been applied to mtd/fixes:
[1/2] dt-bindings: mtd: cadence: document required clock-names
commit: 211b841f34cce652258ddec7fa4750a748b28471
Patche(s) should be available on mtd/linux.git and will be
part of the next PR (provided that no robot complains by then).
Kind regards,
Miquèl
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
^ permalink raw reply [flat|nested] 4+ messages in thread