summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/nvmem/mxs-ocotp.yaml
blob: d9287be898772f74a6e476d94c73bb4b3d90aba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/nvmem/mxs-ocotp.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: On-Chip OTP Memory for Freescale i.MX23/i.MX28

maintainers:
  - Anson Huang <Anson.Huang@nxp.com>

allOf:
  - $ref: nvmem.yaml#
  - $ref: nvmem-deprecated-cells.yaml#

properties:
  compatible:
    items:
      - enum:
          - fsl,imx23-ocotp
          - fsl,imx28-ocotp
      - const: fsl,ocotp

  reg:
    maxItems: 1

  clocks:
    maxItems: 1

required:
  - compatible
  - reg
  - clocks

unevaluatedProperties: false

examples:
  - |
    ocotp: efuse@8002c000 {
        compatible = "fsl,imx28-ocotp", "fsl,ocotp";
        #address-cells = <1>;
        #size-cells = <1>;
        reg = <0x8002c000 0x2000>;
        clocks = <&clks 25>;
    };

...