Message ID | 20231117140910.8747-1-afd@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/5] arm64: dts: ti: k3-j7200: Add chipid node to wkup_conf bus | expand |
Hi Andrew Davis, On Fri, 17 Nov 2023 08:09:06 -0600, Andrew Davis wrote: > Like in other K3 SoCs the chipid register is inside the wakeup > configuration space. Move the chipid node under a new bus to > better represent this topology and match other similar SoCs. > > I have applied the following to branch ti-k3-dts-next on [1]. Thank you! [1/5] arm64: dts: ti: k3-j7200: Add chipid node to wkup_conf bus commit: 82277ed7db29296a2907eab91934c26c405db604 [2/5] arm64: dts: ti: k3-j784s4: Add chipid node to wkup_conf bus commit: 3dc5bd24181af7eb90ad764c3b303f697ebf5e87 [3/5] arm64: dts: ti: k3-j721s2: Add chipid node to wkup_conf bus commit: 1026355c21ebe9f7af3bb0a9422bc572c9f4ac91 [4/5] arm64: dts: ti: k3-am65: Add chipid node to wkup_conf bus commit: 8121e93102b0e09ff1d9589659a823b2271acf62 [5/5] arm64: dts: ti: k3-j721e: Add chipid node to wkup_conf bus commit: 27e5b7330fe31d0aae196f26cf251254f2b923bb 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
diff --git a/arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi b/arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi index 3fc588b848c61..672cb2acc1be9 100644 --- a/arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi +++ b/arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi @@ -178,9 +178,16 @@ phy_gmii_sel: phy@4040 { }; }; - chipid@43000014 { - compatible = "ti,am654-chipid"; - reg = <0x00 0x43000014 0x00 0x4>; + wkup_conf: bus@43000000 { + compatible = "simple-bus"; + #address-cells = <1>; + #size-cells = <1>; + ranges = <0x0 0x00 0x43000000 0x20000>; + + chipid: chipid@14 { + compatible = "ti,am654-chipid"; + reg = <0x14 0x4>; + }; }; /* MCU_TIMERIO pad input CTRLMMR_MCU_TIMER*_CTRL registers */
Like in other K3 SoCs the chipid register is inside the wakeup configuration space. Move the chipid node under a new bus to better represent this topology and match other similar SoCs. Signed-off-by: Andrew Davis <afd@ti.com> --- arch/arm64/boot/dts/ti/k3-j7200-mcu-wakeup.dtsi | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-)