rockchip-dwmac.txt 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Rockchip SoC RK3288 10/100/1000 Ethernet driver(GMAC)
  2. The device node has following properties.
  3. Required properties:
  4. - compatible: should be "rockchip,<name>-gamc"
  5. "rockchip,rk3228-gmac": found on RK322x SoCs
  6. "rockchip,rk3288-gmac": found on RK3288 SoCs
  7. "rockchip,rk3366-gmac": found on RK3366 SoCs
  8. "rockchip,rk3368-gmac": found on RK3368 SoCs
  9. "rockchip,rk3399-gmac": found on RK3399 SoCs
  10. - reg: addresses and length of the register sets for the device.
  11. - interrupts: Should contain the GMAC interrupts.
  12. - interrupt-names: Should contain the interrupt names "macirq".
  13. - rockchip,grf: phandle to the syscon grf used to control speed and mode.
  14. - clocks: <&cru SCLK_MAC>: clock selector for main clock, from PLL or PHY.
  15. <&cru SCLK_MAC_PLL>: PLL clock for SCLK_MAC
  16. <&cru SCLK_MAC_RX>: clock gate for RX
  17. <&cru SCLK_MAC_TX>: clock gate for TX
  18. <&cru SCLK_MACREF>: clock gate for RMII referce clock
  19. <&cru SCLK_MACREF_OUT> clock gate for RMII reference clock output
  20. <&cru ACLK_GMAC>: AXI clock gate for GMAC
  21. <&cru PCLK_GMAC>: APB clock gate for GMAC
  22. - clock-names: One name for each entry in the clocks property.
  23. - phy-mode: See ethernet.txt file in the same directory.
  24. - pinctrl-names: Names corresponding to the numbered pinctrl states.
  25. - pinctrl-0: pin-control mode. can be <&rgmii_pins> or <&rmii_pins>.
  26. - clock_in_out: For RGMII, it must be "input", means main clock(125MHz)
  27. is not sourced from SoC's PLL, but input from PHY; For RMII, "input" means
  28. PHY provides the reference clock(50MHz), "output" means GMAC provides the
  29. reference clock.
  30. - snps,reset-gpio gpio number for phy reset.
  31. - snps,reset-active-low boolean flag to indicate if phy reset is active low.
  32. - assigned-clocks: main clock, should be <&cru SCLK_MAC>;
  33. - assigned-clock-parents = parent of main clock.
  34. can be <&ext_gmac> or <&cru SCLK_MAC_PLL>.
  35. Optional properties:
  36. - tx_delay: Delay value for TXD timing. Range value is 0~0x7F, 0x30 as default.
  37. - rx_delay: Delay value for RXD timing. Range value is 0~0x7F, 0x10 as default.
  38. - phy-supply: phandle to a regulator if the PHY needs one
  39. Example:
  40. gmac: ethernet@ff290000 {
  41. compatible = "rockchip,rk3288-gmac";
  42. reg = <0xff290000 0x10000>;
  43. interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
  44. interrupt-names = "macirq";
  45. rockchip,grf = <&grf>;
  46. clocks = <&cru SCLK_MAC>,
  47. <&cru SCLK_MAC_RX>, <&cru SCLK_MAC_TX>,
  48. <&cru SCLK_MACREF>, <&cru SCLK_MACREF_OUT>,
  49. <&cru ACLK_GMAC>, <&cru PCLK_GMAC>;
  50. clock-names = "stmmaceth",
  51. "mac_clk_rx", "mac_clk_tx",
  52. "clk_mac_ref", "clk_mac_refout",
  53. "aclk_mac", "pclk_mac";
  54. phy-mode = "rgmii";
  55. pinctrl-names = "default";
  56. pinctrl-0 = <&rgmii_pins /*&rmii_pins*/>;
  57. clock_in_out = "input";
  58. snps,reset-gpio = <&gpio4 7 0>;
  59. snps,reset-active-low;
  60. assigned-clocks = <&cru SCLK_MAC>;
  61. assigned-clock-parents = <&ext_gmac>;
  62. tx_delay = <0x30>;
  63. rx_delay = <0x10>;
  64. status = "ok";
  65. };