Message ID | 20240124184722.150615-1-afd@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [01/11] arm64: dts: ti: k3-am64: Convert serdes_ln_ctrl node into reg-mux | expand |
Hi Andrew Davis, On Wed, 24 Jan 2024 12:47:12 -0600, Andrew Davis wrote: > This removes a dependency on the parent node being a syscon node. > Convert from mmio-mux to reg-mux adjusting node name and properties > as needed. > > Dropping 2/11 as indicated. Rest applied. I have applied the following to branch ti-k3-dts-next on [1]. Thank you! [01/11] arm64: dts: ti: k3-am64: Convert serdes_ln_ctrl node into reg-mux commit: 91e93fdae6bab038f5913f766a9640371f9c630a [02/11] arm64: dts: tidd: k3-am65: Convert serdes_mux node into reg-mux (no commit info) [03/11] arm64: dts: ti: k3-j7200: Convert serdes_ln_ctrl node into reg-mux commit: 80d835defb8c9c696be35d86cb7949e5e7c0f1f6 [04/11] arm64: dts: ti: k3-j7200: Convert usb_serdes_mux node into reg-mux commit: 6b52caf93289a0f0f9980b7d21a5ae376c2afe8e [05/11] arm64: dts: ti: k3-j721e: Convert serdes_ln_ctrl node into reg-mux commit: 4cd6d56c3c81e31aba3d69a6cf872770e8945dc7 [06/11] arm64: dts: ti: k3-j721e: Convert usb_serdes_mux node into reg-mux commit: 62b19a64e121e9ce081d18a77436a846585b9c7e [07/11] arm64: dts: ti: k3-j721s2: Convert usb_serdes_mux node into reg-mux commit: 6b3a4da3ed71473126036c363261c5f1271e8e51 [08/11] arm64: dts: ti: k3-j721s2: Convert serdes_ln_ctrl node into reg-mux commit: 0985bf59052fbc932ff05ea760c8d177f390f20c [09/11] arm64: dts: ti: k3-j7200: Make the FSS node a simple-bus commit: 3829ee48a4c44c28e397859c8df1d9e2ed7c5b3b [10/11] arm64: dts: ti: k3-am62: Make the main_conf node a simple-bus commit: 3f6de97ee917ddabea8dcfab315fa6806cf7f230 [11/11] arm64: dts: ti: k3-am62a: Make the main_conf node a simple-bus commit: ad163bb36344f0432d8aee48553a17997b926c29 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent up the chain during the next merge window (or sooner if it is a relevant bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. [1] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git -- Vignesh
diff --git a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi index e348114f42e01..34c45f83eb64d 100644 --- a/arch/arm64/boot/dts/ti/k3-am64-main.dtsi +++ b/arch/arm64/boot/dts/ti/k3-am64-main.dtsi @@ -51,10 +51,11 @@ chipid@14 { reg = <0x00000014 0x4>; }; - serdes_ln_ctrl: mux-controller { - compatible = "mmio-mux"; + serdes_ln_ctrl: mux-controller@4080 { + compatible = "reg-mux"; + reg = <0x4080 0x4>; #mux-control-cells = <1>; - mux-reg-masks = <0x4080 0x3>; /* SERDES0 lane0 select */ + mux-reg-masks = <0x0 0x3>; /* SERDES0 lane0 select */ }; phy_gmii_sel: phy@4044 {
This removes a dependency on the parent node being a syscon node. Convert from mmio-mux to reg-mux adjusting node name and properties as needed. Signed-off-by: Andrew Davis <afd@ti.com> --- arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)