diff options
author | Michal Simek <[email protected]> | 2024-05-27 11:34:07 +0200 |
---|---|---|
committer | Michal Simek <[email protected]> | 2024-06-17 08:36:21 +0200 |
commit | b2774d0292e875861c70ea75dc3baf88d4cec1ad (patch) | |
tree | a8874c2c2356e39c989acd64c5b13ea9c526483f | |
parent | fbce12d2899c4f19632d85df06c6d9377a565534 (diff) |
arm64: zynqmp: Align nvmem node with dt schema
Use new soc-nvmem node name and swich to nvmem fixed layout.
Signed-off-by: Michal Simek <[email protected]>
Link: https://lore.kernel.org/r/7796804c7c7dd8bb2c93bdfe028c22746a24fe54.1716802450.git.michal.simek@amd.com
-rw-r--r-- | arch/arm64/boot/dts/xilinx/zynqmp.dtsi | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi index 95796d6b5515..cb74d1ffb825 100644 --- a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi +++ b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi @@ -207,13 +207,16 @@ mbox-names = "tx", "rx"; }; - nvmem-firmware { + soc-nvmem { compatible = "xlnx,zynqmp-nvmem-fw"; - #address-cells = <1>; - #size-cells = <1>; - - soc_revision: soc-revision@0 { - reg = <0x0 0x4>; + nvmem-layout { + compatible = "fixed-layout"; + #address-cells = <1>; + #size-cells = <1>; + + soc_revision: soc-revision@0 { + reg = <0x0 0x4>; + }; }; }; |