]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - Documentation/devicetree/bindings/net/mediatek-dwmac.txt
Merge tag 'x86_urgent_for_v5.13_rc3' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-jammy-kernel.git] / Documentation / devicetree / bindings / net / mediatek-dwmac.txt
CommitLineData
58ee9028
BH
1MediaTek DWMAC glue layer controller
2
3This file documents platform glue layer for stmmac.
4Please see stmmac.txt for the other unchanged properties.
5
6The device node has following properties.
7
8Required properties:
9- compatible: Should be "mediatek,mt2712-gmac" for MT2712 SoC
10- reg: Address and length of the register set for the device
11- interrupts: Should contain the MAC interrupts
12- interrupt-names: Should contain a list of interrupt names corresponding to
13 the interrupts in the interrupts property, if available.
14 Should be "macirq" for the main MAC IRQ
15- clocks: Must contain a phandle for each entry in clock-names.
16- clock-names: The name of the clock listed in the clocks property. These are
882007ed 17 "axi", "apb", "mac_main", "ptp_ref", "rmii_internal" for MT2712 SoC.
58ee9028
BH
18- mac-address: See ethernet.txt in the same directory
19- phy-mode: See ethernet.txt in the same directory
20- mediatek,pericfg: A phandle to the syscon node that control ethernet
21 interface and timing delay.
22
23Optional properties:
24- mediatek,tx-delay-ps: TX clock delay macro value. Default is 0.
a32ed90b 25 It should be defined for RGMII/MII interface.
882007ed 26 It should be defined for RMII interface when the reference clock is from MT2712 SoC.
58ee9028 27- mediatek,rx-delay-ps: RX clock delay macro value. Default is 0.
882007ed
BH
28 It should be defined for RGMII/MII interface.
29 It should be defined for RMII interface.
a32ed90b
BH
30Both delay properties need to be a multiple of 170 for RGMII interface,
31or will round down. Range 0~31*170.
32Both delay properties need to be a multiple of 550 for MII/RMII interface,
33or will round down. Range 0~31*550.
58ee9028 34
a32ed90b 35- mediatek,rmii-rxc: boolean property, if present indicates that the RMII
58ee9028
BH
36 reference clock, which is from external PHYs, is connected to RXC pin
37 on MT2712 SoC.
38 Otherwise, is connected to TXC pin.
882007ed
BH
39- mediatek,rmii-clk-from-mac: boolean property, if present indicates that
40 MT2712 SoC provides the RMII reference clock, which outputs to TXC pin only.
58ee9028 41- mediatek,txc-inverse: boolean property, if present indicates that
a32ed90b 42 1. tx clock will be inversed in MII/RGMII case,
58ee9028 43 2. tx clock inside MAC will be inversed relative to reference clock
a32ed90b 44 which is from external PHYs in RMII case, and it rarely happen.
882007ed
BH
45 3. the reference clock, which outputs to TXC pin will be inversed in RMII case
46 when the reference clock is from MT2712 SoC.
58ee9028 47- mediatek,rxc-inverse: boolean property, if present indicates that
a32ed90b 48 1. rx clock will be inversed in MII/RGMII case.
882007ed
BH
49 2. reference clock will be inversed when arrived at MAC in RMII case, when
50 the reference clock is from external PHYs.
51 3. the inside clock, which be sent to MAC, will be inversed in RMII case when
52 the reference clock is from MT2712 SoC.
58ee9028
BH
53- assigned-clocks: mac_main and ptp_ref clocks
54- assigned-clock-parents: parent clocks of the assigned clocks
55
56Example:
57 eth: ethernet@1101c000 {
58 compatible = "mediatek,mt2712-gmac";
59 reg = <0 0x1101c000 0 0x1300>;
60 interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_LOW>;
61 interrupt-names = "macirq";
882007ed 62 phy-mode ="rgmii-rxid";
58ee9028
BH
63 mac-address = [00 55 7b b5 7d f7];
64 clock-names = "axi",
65 "apb",
66 "mac_main",
67 "ptp_ref",
882007ed 68 "rmii_internal";
58ee9028
BH
69 clocks = <&pericfg CLK_PERI_GMAC>,
70 <&pericfg CLK_PERI_GMAC_PCLK>,
71 <&topckgen CLK_TOP_ETHER_125M_SEL>,
882007ed
BH
72 <&topckgen CLK_TOP_ETHER_50M_SEL>,
73 <&topckgen CLK_TOP_ETHER_50M_RMII_SEL>;
58ee9028 74 assigned-clocks = <&topckgen CLK_TOP_ETHER_125M_SEL>,
882007ed
BH
75 <&topckgen CLK_TOP_ETHER_50M_SEL>,
76 <&topckgen CLK_TOP_ETHER_50M_RMII_SEL>;
58ee9028 77 assigned-clock-parents = <&topckgen CLK_TOP_ETHERPLL_125M>,
882007ed
BH
78 <&topckgen CLK_TOP_APLL1_D3>,
79 <&topckgen CLK_TOP_ETHERPLL_50M>;
80 power-domains = <&scpsys MT2712_POWER_DOMAIN_AUDIO>;
58ee9028
BH
81 mediatek,pericfg = <&pericfg>;
82 mediatek,tx-delay-ps = <1530>;
83 mediatek,rx-delay-ps = <1530>;
58ee9028
BH
84 mediatek,rmii-rxc;
85 mediatek,txc-inverse;
86 mediatek,rxc-inverse;
882007ed
BH
87 snps,txpbl = <1>;
88 snps,rxpbl = <1>;
58ee9028
BH
89 snps,reset-gpio = <&pio 87 GPIO_ACTIVE_LOW>;
90 snps,reset-active-low;
91 };