f2714b5b6cf426bf50f1662007df12ab4073d78d
[linux-block.git] / Documentation / devicetree / bindings / net / stm32-dwmac.yaml
1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2 # Copyright 2019 BayLibre, SAS
3 %YAML 1.2
4 ---
5 $id: http://devicetree.org/schemas/net/stm32-dwmac.yaml#
6 $schema: http://devicetree.org/meta-schemas/core.yaml#
7
8 title: STMicroelectronics STM32 / MCU DWMAC glue layer controller
9
10 maintainers:
11   - Alexandre Torgue <alexandre.torgue@foss.st.com>
12   - Christophe Roullier <christophe.roullier@foss.st.com>
13
14 description:
15   This file documents platform glue layer for stmmac.
16
17 # We need a select here so we don't match all nodes with 'snps,dwmac'
18 select:
19   properties:
20     compatible:
21       contains:
22         enum:
23           - st,stm32-dwmac
24           - st,stm32mp1-dwmac
25   required:
26     - compatible
27
28 allOf:
29   - $ref: snps,dwmac.yaml#
30
31 properties:
32   compatible:
33     oneOf:
34       - items:
35           - enum:
36               - st,stm32mp1-dwmac
37           - const: snps,dwmac-4.20a
38       - items:
39           - enum:
40               - st,stm32-dwmac
41           - const: snps,dwmac-4.10a
42       - items:
43           - enum:
44               - st,stm32-dwmac
45           - const: snps,dwmac-3.50a
46
47   reg: true
48
49   reg-names:
50     items:
51       - const: stmmaceth
52
53   clocks:
54     minItems: 3
55     items:
56       - description: GMAC main clock
57       - description: MAC TX clock
58       - description: MAC RX clock
59       - description: For MPU family, used for power mode
60       - description: For MPU family, used for PHY without quartz
61       - description: PTP clock
62
63   clock-names:
64     minItems: 3
65     maxItems: 6
66     contains:
67       enum:
68         - stmmaceth
69         - mac-clk-tx
70         - mac-clk-rx
71         - ethstp
72         - eth-ck
73         - ptp_ref
74
75   st,syscon:
76     $ref: /schemas/types.yaml#/definitions/phandle-array
77     items:
78       - items:
79           - description: phandle to the syscon node which encompases the glue register
80           - description: offset of the control register
81     description:
82       Should be phandle/offset pair. The phandle to the syscon node which
83       encompases the glue register, and the offset of the control register
84
85   st,eth-clk-sel:
86     description:
87       set this property in RGMII PHY when you want to select RCC clock instead of ETH_CLK125.
88     type: boolean
89
90   st,eth-ref-clk-sel:
91     description:
92       set this property in RMII mode when you have PHY without crystal 50MHz and want to
93       select RCC clock instead of ETH_REF_CLK.
94     type: boolean
95
96   access-controllers:
97     minItems: 1
98     maxItems: 2
99
100 required:
101   - compatible
102   - clocks
103   - clock-names
104   - st,syscon
105
106 unevaluatedProperties: false
107
108 examples:
109   - |
110     #include <dt-bindings/interrupt-controller/arm-gic.h>
111     #include <dt-bindings/clock/stm32mp1-clks.h>
112     #include <dt-bindings/reset/stm32mp1-resets.h>
113     #include <dt-bindings/mfd/stm32h7-rcc.h>
114     //Example 1
115      ethernet0: ethernet@5800a000 {
116            compatible = "st,stm32mp1-dwmac", "snps,dwmac-4.20a";
117            reg = <0x5800a000 0x2000>;
118            reg-names = "stmmaceth";
119            interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
120            interrupt-names = "macirq";
121            clock-names = "stmmaceth",
122                      "mac-clk-tx",
123                      "mac-clk-rx",
124                      "ethstp",
125                      "eth-ck";
126            clocks = <&rcc ETHMAC>,
127                 <&rcc ETHTX>,
128                 <&rcc ETHRX>,
129                 <&rcc ETHSTP>,
130                 <&rcc ETHCK_K>;
131            st,syscon = <&syscfg 0x4>;
132            snps,pbl = <2>;
133            snps,axi-config = <&stmmac_axi_config_0>;
134            snps,tso;
135            phy-mode = "rgmii";
136        };
137
138   - |
139     //Example 2 (MCU example)
140      ethernet1: ethernet@40028000 {
141            compatible = "st,stm32-dwmac", "snps,dwmac-3.50a";
142            reg = <0x40028000 0x8000>;
143            reg-names = "stmmaceth";
144            interrupts = <0 61 0>, <0 62 0>;
145            interrupt-names = "macirq", "eth_wake_irq";
146            clock-names = "stmmaceth", "mac-clk-tx", "mac-clk-rx";
147            clocks = <&rcc 0 25>, <&rcc 0 26>, <&rcc 0 27>;
148            st,syscon = <&syscfg 0x4>;
149            snps,pbl = <8>;
150            snps,mixed-burst;
151            phy-mode = "mii";
152        };
153
154   - |
155     //Example 3
156      ethernet2: ethernet@40027000 {
157            compatible = "st,stm32-dwmac", "snps,dwmac-4.10a";
158            reg = <0x40028000 0x8000>;
159            reg-names = "stmmaceth";
160            interrupts = <61>;
161            interrupt-names = "macirq";
162            clock-names = "stmmaceth", "mac-clk-tx", "mac-clk-rx";
163            clocks = <&rcc 62>, <&rcc 61>, <&rcc 60>;
164            st,syscon = <&syscfg 0x4>;
165            snps,pbl = <8>;
166            phy-mode = "mii";
167        };