Merge tag 'armsoc-defconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6-block.git] / Documentation / devicetree / bindings / net / mediatek-net.txt
CommitLineData
58ff9865
JC
1MediaTek Frame Engine Ethernet controller
2=========================================
3
4The frame engine ethernet controller can be found on MediaTek SoCs. These SoCs
5have dual GMAC each represented by a child node..
6
7* Ethernet controller node
8
9Required properties:
10- compatible: Should be "mediatek,mt7623-eth"
11- reg: Address and length of the register set for the device
f1d0540d
JC
12- interrupts: Should contain the three frame engines interrupts in numeric
13 order. These are fe_int0, fe_int1 and fe_int2.
58ff9865
JC
14- clocks: the clock used by the core
15- clock-names: the names of the clock listed in the clocks property. These are
16 "ethif", "esw", "gp2", "gp1"
17- power-domains: phandle to the power domain that the ethernet is part of
18- resets: Should contain a phandle to the ethsys reset signal
19- reset-names: Should contain the reset signal name "eth"
20- mediatek,ethsys: phandle to the syscon node that handles the port setup
21- mediatek,pctl: phandle to the syscon node that handles the ports slew rate
22 and driver current
23
24Optional properties:
25- interrupt-parent: Should be the phandle for the interrupt controller
26 that services interrupts for this device
58ff9865
JC
27
28* Ethernet MAC node
29
30Required properties:
31- compatible: Should be "mediatek,eth-mac"
32- reg: The number of the MAC
b8853965
SW
33- phy-handle: see ethernet.txt file in the same directory and
34 the phy-mode "trgmii" required being provided when reg
35 is equal to 0 and the MAC uses fixed-link to connect
7f8c2865 36 with internal switch such as MT7530.
58ff9865
JC
37
38Example:
39
40eth: ethernet@1b100000 {
41 compatible = "mediatek,mt7623-eth";
42 reg = <0 0x1b100000 0 0x20000>;
43 clocks = <&topckgen CLK_TOP_ETHIF_SEL>,
44 <&ethsys CLK_ETHSYS_ESW>,
45 <&ethsys CLK_ETHSYS_GP2>,
46 <&ethsys CLK_ETHSYS_GP1>;
47 clock-names = "ethif", "esw", "gp2", "gp1";
f1d0540d
JC
48 interrupts = <GIC_SPI 200 IRQ_TYPE_LEVEL_LOW
49 GIC_SPI 199 IRQ_TYPE_LEVEL_LOW
50 GIC_SPI 198 IRQ_TYPE_LEVEL_LOW>;
58ff9865
JC
51 power-domains = <&scpsys MT2701_POWER_DOMAIN_ETH>;
52 resets = <&ethsys MT2701_ETHSYS_ETH_RST>;
53 reset-names = "eth";
54 mediatek,ethsys = <&ethsys>;
55 mediatek,pctl = <&syscfg_pctl_a>;
56 #address-cells = <1>;
57 #size-cells = <0>;
58
59 gmac1: mac@0 {
60 compatible = "mediatek,eth-mac";
61 reg = <0>;
62 phy-handle = <&phy0>;
63 };
64
65 gmac2: mac@1 {
66 compatible = "mediatek,eth-mac";
67 reg = <1>;
68 phy-handle = <&phy1>;
69 };
70
71 mdio-bus {
72 phy0: ethernet-phy@0 {
73 reg = <0>;
74 phy-mode = "rgmii";
75 };
76
77 phy1: ethernet-phy@1 {
78 reg = <1>;
79 phy-mode = "rgmii";
80 };
81 };
82};