a759d1f251
Based on commitd8764d347b
("dt-bindings: firmware: xilinx: Describe soc-nvmem subnode") soc-nvmem should be used instead of simple nvmem that's why also update example to have it described correctly everywhere. Fixes:c7f99cd8fb
("dt-bindings: nvmem: Convert xlnx,zynqmp-nvmem.txt to yaml") Cc: stable <stable@kernel.org> Signed-off-by: Michal Simek <michal.simek@amd.com> Acked-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Acked-by: Conor Dooley <conor.dooley@microchip.com> Link: https://lore.kernel.org/r/20240902142510.71096-4-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
43 lines
972 B
YAML
43 lines
972 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/nvmem/xlnx,zynqmp-nvmem.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Zynq UltraScale+ MPSoC Non Volatile Memory interface
|
|
|
|
description: |
|
|
The ZynqMP MPSoC provides access to the hardware related data
|
|
like SOC revision, IDCODE and specific purpose efuses.
|
|
|
|
maintainers:
|
|
- Kalyani Akula <kalyani.akula@amd.com>
|
|
- Praveen Teja Kundanala <praveen.teja.kundanala@amd.com>
|
|
|
|
allOf:
|
|
- $ref: nvmem.yaml#
|
|
|
|
properties:
|
|
compatible:
|
|
const: xlnx,zynqmp-nvmem-fw
|
|
|
|
required:
|
|
- compatible
|
|
|
|
unevaluatedProperties: false
|
|
|
|
examples:
|
|
- |
|
|
soc-nvmem {
|
|
compatible = "xlnx,zynqmp-nvmem-fw";
|
|
nvmem-layout {
|
|
compatible = "fixed-layout";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
soc_revision: soc-revision@0 {
|
|
reg = <0x0 0x4>;
|
|
};
|
|
};
|
|
};
|