blob: e663d5a2f014788481dfa0c612c261eb6adb6423 (
plain) (
blame)
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
|
# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
%YAML 1.2
---
$id: http://devicetree.org/schemas/net/via,vt8500-rhine.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: VIA Rhine 10/100 Network Controller
description:
VIA's Ethernet controller integrated into VIA VT8500,
WonderMedia WM8950 and related SoCs
maintainers:
- Alexey Charkov <alchark@gmail.com>
allOf:
- $ref: ethernet-controller.yaml#
properties:
compatible:
const: via,vt8500-rhine
reg:
maxItems: 1
interrupts:
maxItems: 1
required:
- reg
- interrupts
unevaluatedProperties: false
examples:
- |
ethernet@d8004000 {
compatible = "via,vt8500-rhine";
reg = <0xd8004000 0x100>;
interrupts = <10>;
};
|