xref: /src/sys/contrib/device-tree/Bindings/net/via,vt8500-rhine.yaml (revision bc531a96c9b28b1cabcd5deb0c9f8f6d815cfebc)
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/net/via,vt8500-rhine.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: VIA Rhine 10/100 Network Controller
8
9description:
10  VIA's Ethernet controller integrated into VIA VT8500,
11  WonderMedia WM8950 and related SoCs
12
13maintainers:
14  - Alexey Charkov <alchark@gmail.com>
15
16allOf:
17  - $ref: ethernet-controller.yaml#
18
19properties:
20  compatible:
21    const: via,vt8500-rhine
22
23  reg:
24    maxItems: 1
25
26  interrupts:
27    maxItems: 1
28
29required:
30  - reg
31  - interrupts
32
33unevaluatedProperties: false
34
35examples:
36  - |
37    ethernet@d8004000 {
38        compatible = "via,vt8500-rhine";
39        reg = <0xd8004000 0x100>;
40        interrupts = <10>;
41    };
42