xref: /freebsd/sys/contrib/device-tree/Bindings/net/asix,ax88178.yaml (revision 8bab661a3316d8bd9b9fbd11a3b4371b91507bd2)
1d5b0e70fSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2d5b0e70fSEmmanuel Vadot%YAML 1.2
3d5b0e70fSEmmanuel Vadot---
4d5b0e70fSEmmanuel Vadot$id: http://devicetree.org/schemas/net/asix,ax88178.yaml#
5d5b0e70fSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6d5b0e70fSEmmanuel Vadot
7*8bab661aSEmmanuel Vadottitle: ASIX AX88172/AX88772 USB Ethernet Controllers
8d5b0e70fSEmmanuel Vadot
9d5b0e70fSEmmanuel Vadotmaintainers:
10d5b0e70fSEmmanuel Vadot  - Oleksij Rempel <o.rempel@pengutronix.de>
11d5b0e70fSEmmanuel Vadot
12d5b0e70fSEmmanuel Vadotdescription: |
13d5b0e70fSEmmanuel Vadot  Device tree properties for hard wired USB Ethernet devices.
14d5b0e70fSEmmanuel Vadot
15d5b0e70fSEmmanuel VadotallOf:
16d5b0e70fSEmmanuel Vadot  - $ref: ethernet-controller.yaml#
17d5b0e70fSEmmanuel Vadot
18d5b0e70fSEmmanuel Vadotproperties:
19d5b0e70fSEmmanuel Vadot  compatible:
20d5b0e70fSEmmanuel Vadot    items:
21d5b0e70fSEmmanuel Vadot      - enum:
22d5b0e70fSEmmanuel Vadot          - usbb95,1720   # ASIX AX88172
23d5b0e70fSEmmanuel Vadot          - usbb95,172a   # ASIX AX88172A
24d5b0e70fSEmmanuel Vadot          - usbb95,1780   # ASIX AX88178
25d5b0e70fSEmmanuel Vadot          - usbb95,7720   # ASIX AX88772
26d5b0e70fSEmmanuel Vadot          - usbb95,772a   # ASIX AX88772A
27d5b0e70fSEmmanuel Vadot          - usbb95,772b   # ASIX AX88772B
28d5b0e70fSEmmanuel Vadot          - usbb95,7e2b   # ASIX AX88772B
29d5b0e70fSEmmanuel Vadot
30*8bab661aSEmmanuel Vadot  reg:
31*8bab661aSEmmanuel Vadot    maxItems: 1
32*8bab661aSEmmanuel Vadot
33d5b0e70fSEmmanuel Vadot  local-mac-address: true
34d5b0e70fSEmmanuel Vadot  mac-address: true
35d5b0e70fSEmmanuel Vadot
36d5b0e70fSEmmanuel Vadotrequired:
37d5b0e70fSEmmanuel Vadot  - compatible
38d5b0e70fSEmmanuel Vadot  - reg
39d5b0e70fSEmmanuel Vadot
40d5b0e70fSEmmanuel VadotadditionalProperties: false
41d5b0e70fSEmmanuel Vadot
42d5b0e70fSEmmanuel Vadotexamples:
43d5b0e70fSEmmanuel Vadot  - |
44d5b0e70fSEmmanuel Vadot    usb {
45d5b0e70fSEmmanuel Vadot        #address-cells = <1>;
46d5b0e70fSEmmanuel Vadot        #size-cells = <0>;
47d5b0e70fSEmmanuel Vadot
48d5b0e70fSEmmanuel Vadot        ethernet@1 {
49d5b0e70fSEmmanuel Vadot            compatible = "usbb95,7e2b";
50d5b0e70fSEmmanuel Vadot            reg = <1>;
51d5b0e70fSEmmanuel Vadot            local-mac-address = [00 00 00 00 00 00];
52d5b0e70fSEmmanuel Vadot        };
53d5b0e70fSEmmanuel Vadot    };
54d5b0e70fSEmmanuel Vadot  - |
55d5b0e70fSEmmanuel Vadot    usb {
56d5b0e70fSEmmanuel Vadot        #address-cells = <1>;
57d5b0e70fSEmmanuel Vadot        #size-cells = <0>;
58d5b0e70fSEmmanuel Vadot
59d5b0e70fSEmmanuel Vadot        usb1@1 {
60d5b0e70fSEmmanuel Vadot            compatible = "usb1234,5678";
61d5b0e70fSEmmanuel Vadot            reg = <1>;
62d5b0e70fSEmmanuel Vadot            #address-cells = <1>;
63d5b0e70fSEmmanuel Vadot            #size-cells = <0>;
64d5b0e70fSEmmanuel Vadot
65d5b0e70fSEmmanuel Vadot            ethernet@1 {
66d5b0e70fSEmmanuel Vadot               compatible = "usbb95,772b";
67d5b0e70fSEmmanuel Vadot               reg = <1>;
68d5b0e70fSEmmanuel Vadot            };
69d5b0e70fSEmmanuel Vadot        };
70d5b0e70fSEmmanuel Vadot    };
71