stmmac.txt 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. * STMicroelectronics 10/100/1000 Ethernet driver (GMAC)
  2. Required properties:
  3. - compatible: Should be "snps,dwmac-<ip_version>" "snps,dwmac"
  4. For backwards compatibility: "st,spear600-gmac" is also supported.
  5. - reg: Address and length of the register set for the device
  6. - interrupt-parent: Should be the phandle for the interrupt controller
  7. that services interrupts for this device
  8. - interrupts: Should contain the STMMAC interrupts
  9. - interrupt-names: Should contain the interrupt names "macirq"
  10. "eth_wake_irq" if this interrupt is supported in the "interrupts"
  11. property
  12. - phy-mode: See ethernet.txt file in the same directory.
  13. - snps,reset-gpio gpio number for phy reset.
  14. - snps,reset-active-low boolean flag to indicate if phy reset is active low.
  15. - snps,reset-delays-us is triplet of delays
  16. The 1st cell is reset pre-delay in micro seconds.
  17. The 2nd cell is reset pulse in micro seconds.
  18. The 3rd cell is reset post-delay in micro seconds.
  19. - snps,pbl Programmable Burst Length
  20. - snps,fixed-burst Program the DMA to use the fixed burst mode
  21. - snps,mixed-burst Program the DMA to use the mixed burst mode
  22. - snps,force_thresh_dma_mode Force DMA to use the threshold mode for
  23. both tx and rx
  24. - snps,force_sf_dma_mode Force DMA to use the Store and Forward
  25. mode for both tx and rx. This flag is
  26. ignored if force_thresh_dma_mode is set.
  27. - snps,multicast-filter-bins: Number of multicast filter hash bins
  28. supported by this device instance
  29. - snps,perfect-filter-entries: Number of perfect filter entries supported
  30. by this device instance
  31. Optional properties:
  32. - resets: Should contain a phandle to the STMMAC reset signal, if any
  33. - reset-names: Should contain the reset signal name "stmmaceth", if a
  34. reset phandle is given
  35. - max-frame-size: See ethernet.txt file in the same directory
  36. - clocks: If present, the first clock should be the GMAC main clock,
  37. further clocks may be specified in derived bindings.
  38. - clock-names: One name for each entry in the clocks property, the
  39. first one should be "stmmaceth".
  40. - clk_ptp_ref: this is the PTP reference clock; in case of the PTP is
  41. available this clock is used for programming the Timestamp Addend Register.
  42. If not passed then the system clock will be used and this is fine on some
  43. platforms.
  44. - snps,burst_len: The AXI burst lenth value of the AXI BUS MODE register.
  45. Examples:
  46. gmac0: ethernet@e0800000 {
  47. compatible = "st,spear600-gmac";
  48. reg = <0xe0800000 0x8000>;
  49. interrupt-parent = <&vic1>;
  50. interrupts = <24 23>;
  51. interrupt-names = "macirq", "eth_wake_irq";
  52. mac-address = [000000000000]; /* Filled in by U-Boot */
  53. max-frame-size = <3800>;
  54. phy-mode = "gmii";
  55. snps,multicast-filter-bins = <256>;
  56. snps,perfect-filter-entries = <128>;
  57. clocks = <&clock>;
  58. clock-names = "stmmaceth";
  59. };