1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/nvmem/fsl,layerscape-sfp.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Freescale Layerscape Security Fuse Processor
8
9maintainers:
10  - Michael Walle <michael@walle.cc>
11
12description: |
13  SFP is the security fuse processor which among other things provide a
14  unique identifier per part.
15
16allOf:
17  - $ref: "nvmem.yaml#"
18
19properties:
20  compatible:
21    enum:
22      - fsl,ls1028a-sfp
23
24  reg:
25    maxItems: 1
26
27required:
28  - compatible
29  - reg
30
31unevaluatedProperties: false
32
33examples:
34  - |
35    efuse@1e80000 {
36        compatible = "fsl,ls1028a-sfp";
37        reg = <0x1e80000 0x8000>;
38    };
39