summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/net/pse-pd/pse-controller.yaml
blob: a12cda8aa7648f81192026a6db56cbd5d898710e (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
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/net/pse-pd/pse-controller.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Power Sourcing Equipment (PSE).

description: Binding for the Power Sourcing Equipment (PSE) as defined in the
  IEEE 802.3 specification. It is designed for hardware which is delivering
  power over twisted pair/ethernet cable. The ethernet-pse nodes should be
  used to describe PSE controller and referenced by the ethernet-phy node.

maintainers:
  - Oleksij Rempel <o.rempel@pengutronix.de>
  - Kory Maincent <kory.maincent@bootlin.com>

properties:
  $nodename:
    pattern: "^ethernet-pse(@.*|-([0-9]|[1-9][0-9]+))?$"

  "#pse-cells":
    description:
      Used to uniquely identify a PSE instance within an IC. Will be
      0 on PSE nodes with only a single output and at least 1 on nodes
      controlling several outputs which are not described in the pse-pis
      subnode. This property is deprecated, please use pse-pis instead.
    enum: [0, 1]

  pse-pis:
    type: object
    description:
      Overview of the PSE PIs provided by the controller.

    properties:
      "#address-cells":
        const: 1

      "#size-cells":
        const: 0

    required:
      - "#address-cells"
      - "#size-cells"

    patternProperties:
      "^pse-pi@[0-9a-f]+$":
        type: object
        description:
          PSE PI for power delivery via pairsets, compliant with IEEE
          802.3-2022, Section 145.2.4. Each pairset comprises a positive and
          a negative VPSE pair, adhering to the pinout configurations
          detailed in the standard.
          See Documentation/networking/pse-pd/pse-pi.rst for details.

        properties:
          reg:
            description:
              Address describing the PSE PI index.
            maxItems: 1

          "#pse-cells":
            const: 0

          pairset-names:
            $ref: /schemas/types.yaml#/definitions/string-array
            description:
              Names of the pairsets as per IEEE 802.3-2022, Section 145.2.4.
              Each name should correspond to a phandle in the 'pairset'
              property pointing to the power supply for that pairset.
            minItems: 1
            maxItems: 2
            items:
              enum:
                - alternative-a
                - alternative-b

          pairsets:
            $ref: /schemas/types.yaml#/definitions/phandle-array
            description:
              List of phandles, each pointing to the power supply for the
              corresponding pairset named in 'pairset-names'. This property
              aligns with IEEE 802.3-2022, Section 33.2.3 and 145.2.4.
              PSE Pinout Alternatives (as per IEEE 802.3-2022 Table 145\u20133)
              |-----------|---------------|---------------|---------------|---------------|
              | Conductor | Alternative A | Alternative A | Alternative B | Alternative B |
              |           |    (MDI-X)    |     (MDI)     |      (X)      |      (S)      |
              |-----------|---------------|---------------|---------------|---------------|
              | 1         | Negative VPSE | Positive VPSE | -             | -             |
              | 2         | Negative VPSE | Positive VPSE | -             | -             |
              | 3         | Positive VPSE | Negative VPSE | -             | -             |
              | 4         | -             | -             | Negative VPSE | Positive VPSE |
              | 5         | -             | -             | Negative VPSE | Positive VPSE |
              | 6         | Positive VPSE | Negative VPSE | -             | -             |
              | 7         | -             | -             | Positive VPSE | Negative VPSE |
              | 8         | -             | -             | Positive VPSE | Negative VPSE |
            minItems: 1
            maxItems: 2

          polarity-supported:
            $ref: /schemas/types.yaml#/definitions/string-array
            description:
              Polarity configuration supported by the PSE PI pairsets.
            minItems: 1
            maxItems: 4
            items:
              enum:
                - MDI-X
                - MDI
                - X
                - S

          vpwr-supply:
            description: Regulator power supply for the PSE PI.

        required:
          - reg
          - "#pse-cells"

oneOf:
  - required:
      - "#pse-cells"
  - required:
      - pse-pis

additionalProperties: true

...