Skip to content

Commit dac0bad

Browse files
abajkdavem330
authored andcommitted
dt-bindings: net: lantiq,etop-xway: Document Lantiq Xway ETOP bindings
Document the Lantiq Xway SoC series External Bus Unit (ETOP) bindings. Signed-off-by: Aleksander Jan Bajkowski <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 5535bcf commit dac0bad

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/net/lantiq,etop-xway.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: Lantiq Xway ETOP Ethernet driver
8+
9+
maintainers:
10+
- John Crispin <[email protected]>
11+
12+
properties:
13+
$nodename:
14+
pattern: "^ethernet@[0-9a-f]+$"
15+
16+
compatible:
17+
const: lantiq,etop-xway
18+
19+
reg:
20+
maxItems: 1
21+
22+
interrupts:
23+
items:
24+
- description: TX interrupt
25+
- description: RX interrupt
26+
27+
interrupt-names:
28+
items:
29+
- const: tx
30+
- const: rx
31+
32+
phy-mode: true
33+
34+
required:
35+
- compatible
36+
- reg
37+
- interrupt-parent
38+
- interrupts
39+
- interrupt-names
40+
- phy-mode
41+
42+
additionalProperties: false
43+
44+
examples:
45+
- |
46+
ethernet@e180000 {
47+
compatible = "lantiq,etop-xway";
48+
reg = <0xe180000 0x40000>;
49+
interrupt-parent = <&icu0>;
50+
interrupts = <73>, <78>;
51+
interrupt-names = "tx", "rx";
52+
phy-mode = "rmii";
53+
};

0 commit comments

Comments
 (0)