diff options
| author | Bryan Brattlof <[email protected]> | 2023-12-29 11:47:22 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-01-03 08:36:37 -0500 |
| commit | 4aea536754a5764c7357032e5ade0d08392114e8 (patch) | |
| tree | 8c6d110d02d355b9bc03842b5221fe0c71e3ee12 | |
| parent | e055622bd7f42810b2f329ec60596dfa62952d69 (diff) | |
arm: dts: k3-am654: remove duplicate mcu secure proxy node
With the Linux and U-Boot board dtb files unified, we now have a
duplicate mcu secure proxy node. Remove it
Tested-by: Tom Rini <[email protected]>
Signed-off-by: Bryan Brattlof <[email protected]>
Reviewed-by: Nishanth Menon <[email protected]>
| -rw-r--r-- | arch/arm/dts/k3-am654-r5-base-board.dts | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/arch/arm/dts/k3-am654-r5-base-board.dts b/arch/arm/dts/k3-am654-r5-base-board.dts index b27b2b05ad8..dea2ba85dcb 100644 --- a/arch/arm/dts/k3-am654-r5-base-board.dts +++ b/arch/arm/dts/k3-am654-r5-base-board.dts @@ -39,22 +39,15 @@ }; }; -&cbass_mcu { - mcu_secproxy: secproxy@28380000 { - compatible = "ti,am654-secure-proxy"; - reg = <0x0 0x2a380000 0x0 0x80000>, - <0x0 0x2a400000 0x0 0x80000>, - <0x0 0x2a480000 0x0 0x80000>; - reg-names = "rt", "scfg", "target_data"; - #mbox-cells = <1>; - bootph-pre-ram; - }; +&secure_proxy_mcu { + status = "okay"; + bootph-pre-ram; }; &cbass_wakeup { sysctrler: sysctrler { compatible = "ti,am654-system-controller"; - mboxes= <&mcu_secproxy 4>, <&mcu_secproxy 5>; + mboxes= <&secure_proxy_mcu 4>, <&secure_proxy_mcu 5>; mbox-names = "tx", "rx"; bootph-pre-ram; }; @@ -76,7 +69,9 @@ }; &dmsc { - mboxes= <&mcu_secproxy 8>, <&mcu_secproxy 6>, <&mcu_secproxy 5>; + mboxes = <&secure_proxy_mcu 8>, + <&secure_proxy_mcu 6>, + <&secure_proxy_mcu 5>; mbox-names = "tx", "rx", "notify"; ti,host-id = <4>; ti,secure-host; |
