* [PATCH 1/2] arm64: dts: imx8dxl-evk: Remove invalid spi property
@ 2023-09-07 17:20 Fabio Estevam
2023-09-07 17:20 ` [PATCH 2/2] arm64: dts: imx8ulp: Fix the SPI clock-names order Fabio Estevam
2023-09-25 1:46 ` [PATCH 1/2] arm64: dts: imx8dxl-evk: Remove invalid spi property Shawn Guo
0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2023-09-07 17:20 UTC (permalink / raw)
To: shawnguo; +Cc: linux-arm-kernel, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
nxp,fspi-dll-slvdly is not documented nor used anywhere.
Drop this invalid property.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
arch/arm64/boot/dts/freescale/imx8dxl-evk.dts | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm64/boot/dts/freescale/imx8dxl-evk.dts b/arch/arm64/boot/dts/freescale/imx8dxl-evk.dts
index b9157ca08b03..f19944564dbe 100644
--- a/arch/arm64/boot/dts/freescale/imx8dxl-evk.dts
+++ b/arch/arm64/boot/dts/freescale/imx8dxl-evk.dts
@@ -186,7 +186,6 @@ vddio1: vddio-regulator {
&flexspi0 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_flexspi0>;
- nxp,fspi-dll-slvdly = <4>;
status = "okay";
mt35xu512aba0: flash@0 {
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 3+ messages in thread* [PATCH 2/2] arm64: dts: imx8ulp: Fix the SPI clock-names order
2023-09-07 17:20 [PATCH 1/2] arm64: dts: imx8dxl-evk: Remove invalid spi property Fabio Estevam
@ 2023-09-07 17:20 ` Fabio Estevam
2023-09-25 1:46 ` [PATCH 1/2] arm64: dts: imx8dxl-evk: Remove invalid spi property Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2023-09-07 17:20 UTC (permalink / raw)
To: shawnguo; +Cc: linux-arm-kernel, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
spi-nxp-fspi.yaml expects the clock-names entries to be in
the following order: "fspi_en", "fspi".
Change it accordingly to fix the following schema warnings:
imx8ulp-evk.dtb: spi@29810000: clock-names:0: 'fspi_en' was expected
from schema $id: http://devicetree.org/schemas/spi/spi-nxp-fspi.yaml#
imx8ulp-evk.dtb: spi@29810000: clock-names:1: 'fspi' was expected
from schema $id: http://devicetree.org/schemas/spi/spi-nxp-fspi.yaml#
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
arch/arm64/boot/dts/freescale/imx8ulp.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/freescale/imx8ulp.dtsi b/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
index 8a6596d5a581..b3e43aa830f9 100644
--- a/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
+++ b/arch/arm64/boot/dts/freescale/imx8ulp.dtsi
@@ -360,7 +360,7 @@ flexspi2: spi@29810000 {
interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>;
clocks = <&pcc4 IMX8ULP_CLK_FLEXSPI2>,
<&pcc4 IMX8ULP_CLK_FLEXSPI2>;
- clock-names = "fspi", "fspi_en";
+ clock-names = "fspi_en", "fspi";
assigned-clocks = <&pcc4 IMX8ULP_CLK_FLEXSPI2>;
assigned-clock-parents = <&cgc1 IMX8ULP_CLK_SPLL3_PFD3_DIV2>;
status = "disabled";
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 1/2] arm64: dts: imx8dxl-evk: Remove invalid spi property
2023-09-07 17:20 [PATCH 1/2] arm64: dts: imx8dxl-evk: Remove invalid spi property Fabio Estevam
2023-09-07 17:20 ` [PATCH 2/2] arm64: dts: imx8ulp: Fix the SPI clock-names order Fabio Estevam
@ 2023-09-25 1:46 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2023-09-25 1:46 UTC (permalink / raw)
To: Fabio Estevam; +Cc: linux-arm-kernel, Fabio Estevam
On Thu, Sep 07, 2023 at 02:20:51PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> nxp,fspi-dll-slvdly is not documented nor used anywhere.
>
> Drop this invalid property.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Applied both, thanks!
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-25 1:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-07 17:20 [PATCH 1/2] arm64: dts: imx8dxl-evk: Remove invalid spi property Fabio Estevam
2023-09-07 17:20 ` [PATCH 2/2] arm64: dts: imx8ulp: Fix the SPI clock-names order Fabio Estevam
2023-09-25 1:46 ` [PATCH 1/2] arm64: dts: imx8dxl-evk: Remove invalid spi property Shawn Guo
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.