summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/bus/ti,omap-l4.yaml
blob: 0b09fb91934a16dd286b70622c495ab0dca57db1 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/bus/ti,omap-l4.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: TI OMAP SoCs L4 interconnect bus

maintainers:
  - Eduard Bostina <egbostina@gmail.com>

description:
  These bindings describe the OMAP SoCs L4 interconnect bus.

select:
  properties:
    compatible:
      contains:
        enum:
          - ti,omap2-l4
          - ti,omap2-l4-wkup
          - ti,omap3-l4-core
          - ti,omap4-l4-abe
          - ti,omap4-l4-cfg
          - ti,omap4-l4-per
          - ti,omap4-l4-wkup
          - ti,omap5-l4-abe
          - ti,omap5-l4-cfg
          - ti,omap5-l4-per
          - ti,omap5-l4-wkup
          - ti,dra7-l4-cfg
          - ti,dra7-l4-per1
          - ti,dra7-l4-per2
          - ti,dra7-l4-per3
          - ti,dra7-l4-wkup
          - ti,am33xx-l4-fast
          - ti,am33xx-l4-fw
          - ti,am33xx-l4-mpuss
          - ti,am33xx-l4-per
          - ti,am33xx-l4-wkup
          - ti,am4-l4-fast
          - ti,am4-l4-per
          - ti,am4-l4-wkup
          - ti,dm814-l4hs
          - ti,dm814-l4ls
  required:
    - compatible

properties:
  compatible:
    items:
      - enum:
          - ti,omap2-l4
          - ti,omap2-l4-wkup
          - ti,omap3-l4-core
          - ti,omap4-l4-abe
          - ti,omap4-l4-cfg
          - ti,omap4-l4-per
          - ti,omap4-l4-wkup
          - ti,omap5-l4-abe
          - ti,omap5-l4-cfg
          - ti,omap5-l4-per
          - ti,omap5-l4-wkup
          - ti,dra7-l4-cfg
          - ti,dra7-l4-per1
          - ti,dra7-l4-per2
          - ti,dra7-l4-per3
          - ti,dra7-l4-wkup
          - ti,am33xx-l4-fast
          - ti,am33xx-l4-fw
          - ti,am33xx-l4-mpuss
          - ti,am33xx-l4-per
          - ti,am33xx-l4-wkup
          - ti,am4-l4-fast
          - ti,am4-l4-per
          - ti,am4-l4-wkup
          - ti,dm814-l4hs
          - ti,dm814-l4ls
      - enum:
          - simple-bus
          - simple-pm-bus

  reg:
    minItems: 1
    maxItems: 6

  reg-names:
    minItems: 1
    maxItems: 6
    items:
      enum:
        - ap
        - la
        - ia0
        - ia1
        - ia2
        - ia3

  ranges: true

  dma-ranges: true

  clocks:
    maxItems: 1

  clock-names:
    items:
      - const: fck

  power-domains:
    maxItems: 1

  "#address-cells":
    const: 1

  "#size-cells":
    const: 1

required:
  - compatible
  - ranges

additionalProperties:
  type: object

examples:
  - |
    bus@48000000 {
        compatible = "ti,omap4-l4-per", "simple-bus";
        reg = <0x48000000 0x800>,
              <0x48000800 0x800>,
              <0x48001000 0x400>,
              <0x48001400 0x400>,
              <0x48001800 0x400>,
              <0x48001c00 0x400>;
        reg-names = "ap", "la", "ia0", "ia1", "ia2", "ia3";
        #address-cells = <1>;
        #size-cells = <1>;
        ranges = <0 0x48000000 0x100000>;
    };