1# SPDX-License-Identifier: GPL-2.0
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/net/rockchip-dwmac.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Rockchip 10/100/1000 Ethernet driver(GMAC)
8
9maintainers:
10  - David Wu <david.wu@rock-chips.com>
11
12# We need a select here so we don't match all nodes with 'snps,dwmac'
13select:
14  properties:
15    compatible:
16      contains:
17        enum:
18          - rockchip,px30-gmac
19          - rockchip,rk3128-gmac
20          - rockchip,rk3228-gmac
21          - rockchip,rk3288-gmac
22          - rockchip,rk3308-gmac
23          - rockchip,rk3328-gmac
24          - rockchip,rk3366-gmac
25          - rockchip,rk3368-gmac
26          - rockchip,rk3399-gmac
27          - rockchip,rk3568-gmac
28          - rockchip,rk3588-gmac
29          - rockchip,rv1108-gmac
30          - rockchip,rv1126-gmac
31  required:
32    - compatible
33
34allOf:
35  - $ref: snps,dwmac.yaml#
36
37properties:
38  compatible:
39    oneOf:
40      - items:
41          - enum:
42              - rockchip,px30-gmac
43              - rockchip,rk3128-gmac
44              - rockchip,rk3228-gmac
45              - rockchip,rk3288-gmac
46              - rockchip,rk3308-gmac
47              - rockchip,rk3328-gmac
48              - rockchip,rk3366-gmac
49              - rockchip,rk3368-gmac
50              - rockchip,rk3399-gmac
51              - rockchip,rv1108-gmac
52      - items:
53          - enum:
54              - rockchip,rk3568-gmac
55              - rockchip,rk3588-gmac
56              - rockchip,rv1126-gmac
57          - const: snps,dwmac-4.20a
58
59  clocks:
60    minItems: 5
61    maxItems: 8
62
63  clock-names:
64    contains:
65      enum:
66        - stmmaceth
67        - mac_clk_tx
68        - mac_clk_rx
69        - aclk_mac
70        - pclk_mac
71        - clk_mac_ref
72        - clk_mac_refout
73        - clk_mac_speed
74
75  clock_in_out:
76    description:
77      For RGMII, it must be "input", means main clock(125MHz)
78      is not sourced from SoC's PLL, but input from PHY.
79      For RMII, "input" means PHY provides the reference clock(50MHz),
80      "output" means GMAC provides the reference clock.
81    $ref: /schemas/types.yaml#/definitions/string
82    enum: [input, output]
83    default: input
84
85  rockchip,grf:
86    description: The phandle of the syscon node for the general register file.
87    $ref: /schemas/types.yaml#/definitions/phandle
88
89  rockchip,php-grf:
90    description:
91      The phandle of the syscon node for the peripheral general register file.
92    $ref: /schemas/types.yaml#/definitions/phandle
93
94  tx_delay:
95    description: Delay value for TXD timing. Range value is 0~0x7F, 0x30 as default.
96    $ref: /schemas/types.yaml#/definitions/uint32
97
98  rx_delay:
99    description: Delay value for RXD timing. Range value is 0~0x7F, 0x10 as default.
100    $ref: /schemas/types.yaml#/definitions/uint32
101
102  phy-supply:
103    description: PHY regulator
104
105required:
106  - compatible
107  - clocks
108  - clock-names
109
110unevaluatedProperties: false
111
112examples:
113  - |
114    #include <dt-bindings/interrupt-controller/arm-gic.h>
115    #include <dt-bindings/clock/rk3288-cru.h>
116
117    gmac: ethernet@ff290000 {
118        compatible = "rockchip,rk3288-gmac";
119        reg = <0xff290000 0x10000>;
120        interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
121        interrupt-names = "macirq";
122        clocks = <&cru SCLK_MAC>,
123                 <&cru SCLK_MAC_RX>, <&cru SCLK_MAC_TX>,
124                 <&cru SCLK_MACREF>, <&cru SCLK_MACREF_OUT>,
125                 <&cru ACLK_GMAC>, <&cru PCLK_GMAC>;
126        clock-names = "stmmaceth",
127                      "mac_clk_rx", "mac_clk_tx",
128                      "clk_mac_ref", "clk_mac_refout",
129                      "aclk_mac", "pclk_mac";
130        assigned-clocks = <&cru SCLK_MAC>;
131        assigned-clock-parents = <&ext_gmac>;
132
133        rockchip,grf = <&grf>;
134        phy-mode = "rgmii";
135        clock_in_out = "input";
136        tx_delay = <0x30>;
137        rx_delay = <0x10>;
138    };
139