summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/nvmem/layouts/fixed-layout.yaml
blob: 9bd34bd5af30d83ae03d48b10f3b2c5be2ee9586 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/nvmem/layouts/fixed-layout.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: NVMEM layout for fixed NVMEM cells

description:
  Many NVMEM devices have hardcoded cells layout (offset and size of defined
  NVMEM content doesn't change).

  This binding allows defining such NVMEM layout with its cells. It can be used
  on top of any NVMEM device.

maintainers:
  - Rafał Miłecki <rafal@milecki.pl>

properties:
  compatible:
    const: fixed-layout

  "#address-cells":
    const: 1

  "#size-cells":
    const: 1

patternProperties:
  "@[a-f0-9]+$":
    type: object
    $ref: fixed-cell.yaml
    unevaluatedProperties: false

required:
  - compatible

additionalProperties: false

examples:
  - |
    nvmem-layout {
        compatible = "fixed-layout";
        #address-cells = <1>;
        #size-cells = <1>;

        mac@100 {
            compatible = "mac-base";
            reg = <0x100 0x6>;
            #nvmem-cell-cells = <1>;
        };

        mac@110 {
            compatible = "mac-base";
            reg = <0x110 0x11>;
            #nvmem-cell-cells = <1>;
        };

        calibration@4000 {
            reg = <0x4000 0x100>;
        };
    };