xref: /freebsd-src/sys/contrib/device-tree/Bindings/net/microchip,lan95xx.yaml (revision 84943d6f38e936ac3b7a3947ca26eeb27a39f938)
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/microchip,lan95xx.yaml#
5d5b0e70fSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6d5b0e70fSEmmanuel Vadot
78bab661aSEmmanuel Vadottitle: Microchip SMSC9500/LAN9530/LAN9730 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 SMSC95xx compatible USB Ethernet
14d5b0e70fSEmmanuel Vadot  controller.
15d5b0e70fSEmmanuel Vadot
16d5b0e70fSEmmanuel VadotallOf:
17d5b0e70fSEmmanuel Vadot  - $ref: ethernet-controller.yaml#
18d5b0e70fSEmmanuel Vadot
19d5b0e70fSEmmanuel Vadotproperties:
20d5b0e70fSEmmanuel Vadot  compatible:
21d5b0e70fSEmmanuel Vadot    items:
22d5b0e70fSEmmanuel Vadot      - enum:
23d5b0e70fSEmmanuel Vadot          - usb424,9500   # SMSC9500 USB Ethernet Device
24d5b0e70fSEmmanuel Vadot          - usb424,9505   # SMSC9505 USB Ethernet Device
25d5b0e70fSEmmanuel Vadot          - usb424,9530   # SMSC LAN9530 USB Ethernet Device
26d5b0e70fSEmmanuel Vadot          - usb424,9730   # SMSC LAN9730 USB Ethernet Device
27d5b0e70fSEmmanuel Vadot          - usb424,9900   # SMSC9500 USB Ethernet Device (SAL10)
28d5b0e70fSEmmanuel Vadot          - usb424,9901   # SMSC9505 USB Ethernet Device (SAL10)
29d5b0e70fSEmmanuel Vadot          - usb424,9902   # SMSC9500A USB Ethernet Device (SAL10)
30d5b0e70fSEmmanuel Vadot          - usb424,9903   # SMSC9505A USB Ethernet Device (SAL10)
31d5b0e70fSEmmanuel Vadot          - usb424,9904   # SMSC9512/9514 USB Hub & Ethernet Device (SAL10)
32d5b0e70fSEmmanuel Vadot          - usb424,9905   # SMSC9500A USB Ethernet Device (HAL)
33d5b0e70fSEmmanuel Vadot          - usb424,9906   # SMSC9505A USB Ethernet Device (HAL)
34d5b0e70fSEmmanuel Vadot          - usb424,9907   # SMSC9500 USB Ethernet Device (Alternate ID)
35d5b0e70fSEmmanuel Vadot          - usb424,9908   # SMSC9500A USB Ethernet Device (Alternate ID)
36aa1a8ff2SEmmanuel Vadot          - usb424,9909   # SMSC9512/9514 USB Hub & Ethernet Device  ID)
37d5b0e70fSEmmanuel Vadot          - usb424,9e00   # SMSC9500A USB Ethernet Device
38d5b0e70fSEmmanuel Vadot          - usb424,9e01   # SMSC9505A USB Ethernet Device
39d5b0e70fSEmmanuel Vadot          - usb424,9e08   # SMSC LAN89530 USB Ethernet Device
40d5b0e70fSEmmanuel Vadot          - usb424,ec00   # SMSC9512/9514 USB Hub & Ethernet Device
41d5b0e70fSEmmanuel Vadot
428bab661aSEmmanuel Vadot  reg:
438bab661aSEmmanuel Vadot    maxItems: 1
448bab661aSEmmanuel Vadot
45d5b0e70fSEmmanuel Vadot  local-mac-address: true
46d5b0e70fSEmmanuel Vadot  mac-address: true
47*84943d6fSEmmanuel Vadot  nvmem-cells: true
48*84943d6fSEmmanuel Vadot  nvmem-cell-names: true
49d5b0e70fSEmmanuel Vadot
50d5b0e70fSEmmanuel Vadotrequired:
51d5b0e70fSEmmanuel Vadot  - compatible
52d5b0e70fSEmmanuel Vadot  - reg
53d5b0e70fSEmmanuel Vadot
54d5b0e70fSEmmanuel VadotadditionalProperties: false
55d5b0e70fSEmmanuel Vadot
56d5b0e70fSEmmanuel Vadotexamples:
57d5b0e70fSEmmanuel Vadot  - |
58d5b0e70fSEmmanuel Vadot    usb {
59d5b0e70fSEmmanuel Vadot        #address-cells = <1>;
60d5b0e70fSEmmanuel Vadot        #size-cells = <0>;
61d5b0e70fSEmmanuel Vadot
62d5b0e70fSEmmanuel Vadot        ethernet@1 {
63d5b0e70fSEmmanuel Vadot            compatible = "usb424,9e00";
64d5b0e70fSEmmanuel Vadot            reg = <1>;
65d5b0e70fSEmmanuel Vadot            local-mac-address = [00 00 00 00 00 00];
66d5b0e70fSEmmanuel Vadot        };
67d5b0e70fSEmmanuel Vadot    };
68