mediatek-net.txt 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. MediaTek Frame Engine Ethernet controller
  2. =========================================
  3. The frame engine ethernet controller can be found on MediaTek SoCs. These SoCs
  4. have dual GMAC each represented by a child node..
  5. * Ethernet controller node
  6. Required properties:
  7. - compatible: Should be
  8. "mediatek,mt2701-eth": for MT2701 SoC
  9. "mediatek,mt7623-eth", "mediatek,mt2701-eth": for MT7623 SoC
  10. "mediatek,mt7622-eth": for MT7622 SoC
  11. - reg: Address and length of the register set for the device
  12. - interrupts: Should contain the three frame engines interrupts in numeric
  13. order. These are fe_int0, fe_int1 and fe_int2.
  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" : For MT2701 and MT7623 SoC
  17. "ethif", "esw", "gp0", "gp1", "gp2", "sgmii_tx250m", "sgmii_rx250m",
  18. "sgmii_cdr_ref", "sgmii_cdr_fb", "sgmii_ck", "eth2pll" : For MT7622 SoC
  19. - power-domains: phandle to the power domain that the ethernet is part of
  20. - resets: Should contain phandles to the ethsys reset signals
  21. - reset-names: Should contain the names of reset signal listed in the resets
  22. property
  23. These are "fe", "gmac" and "ppe"
  24. - mediatek,ethsys: phandle to the syscon node that handles the port setup
  25. - mediatek,sgmiisys: phandle to the syscon node that handles the SGMII setup
  26. which is required for those SoCs equipped with SGMII such as MT7622 SoC.
  27. - mediatek,pctl: phandle to the syscon node that handles the ports slew rate
  28. and driver current: only for MT2701 and MT7623 SoC
  29. * Ethernet MAC node
  30. Required properties:
  31. - compatible: Should be "mediatek,eth-mac"
  32. - reg: The number of the MAC
  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
  36. with internal switch such as MT7530.
  37. Example:
  38. eth: ethernet@1b100000 {
  39. compatible = "mediatek,mt7623-eth";
  40. reg = <0 0x1b100000 0 0x20000>;
  41. clocks = <&topckgen CLK_TOP_ETHIF_SEL>,
  42. <&ethsys CLK_ETHSYS_ESW>,
  43. <&ethsys CLK_ETHSYS_GP2>,
  44. <&ethsys CLK_ETHSYS_GP1>;
  45. clock-names = "ethif", "esw", "gp2", "gp1";
  46. interrupts = <GIC_SPI 200 IRQ_TYPE_LEVEL_LOW
  47. GIC_SPI 199 IRQ_TYPE_LEVEL_LOW
  48. GIC_SPI 198 IRQ_TYPE_LEVEL_LOW>;
  49. power-domains = <&scpsys MT2701_POWER_DOMAIN_ETH>;
  50. resets = <&ethsys MT2701_ETHSYS_ETH_RST>;
  51. reset-names = "eth";
  52. mediatek,ethsys = <&ethsys>;
  53. mediatek,pctl = <&syscfg_pctl_a>;
  54. #address-cells = <1>;
  55. #size-cells = <0>;
  56. gmac1: mac@0 {
  57. compatible = "mediatek,eth-mac";
  58. reg = <0>;
  59. phy-handle = <&phy0>;
  60. };
  61. gmac2: mac@1 {
  62. compatible = "mediatek,eth-mac";
  63. reg = <1>;
  64. phy-handle = <&phy1>;
  65. };
  66. mdio-bus {
  67. phy0: ethernet-phy@0 {
  68. reg = <0>;
  69. phy-mode = "rgmii";
  70. };
  71. phy1: ethernet-phy@1 {
  72. reg = <1>;
  73. phy-mode = "rgmii";
  74. };
  75. };
  76. };