summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/net/marvell,dfx-server.yaml
blob: 8a14c919e3f73b4e62e79dd2ca1427e3376f8031 (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/net/marvell,dfx-server.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Marvell Prestera DFX server

maintainers:
  - Miquel Raynal <miquel.raynal@bootlin.com>

select:
  properties:
    compatible:
      contains:
        const: marvell,dfx-server
  required:
    - compatible

properties:
  compatible:
    items:
      - const: marvell,dfx-server
      - const: simple-bus

  reg:
    maxItems: 1

  ranges: true

  '#address-cells':
    const: 1

  '#size-cells':
    const: 1

required:
  - compatible
  - reg
  - ranges

# The DFX server may expose clocks described as subnodes
additionalProperties:
  type: object

examples:
  - |

    #define MBUS_ID(target,attributes) (((target) << 24) | ((attributes) << 16))
    bus@0 {
        reg = <0 0>;
        #address-cells = <2>;
        #size-cells = <1>;

        dfx-bus@ac000000 {
            compatible = "marvell,dfx-server", "simple-bus";
            #address-cells = <1>;
            #size-cells = <1>;
            ranges = <0 MBUS_ID(0x08, 0x00) 0 0x100000>;
            reg = <MBUS_ID(0x08, 0x00) 0 0x100000>;
        };
    };