2012-03-13 08:56:37 +04:00
* STMicroelectronics 10/100/1000 Ethernet driver (GMAC)
Required properties:
2012-07-18 17:28:26 +04:00
- compatible: Should be "snps,dwmac-<ip_version>" "snps,dwmac"
For backwards compatibility: "st,spear600-gmac" is also supported.
2012-03-13 08:56:37 +04:00
- reg: Address and length of the register set for the device
- interrupt-parent: Should be the phandle for the interrupt controller
that services interrupts for this device
- interrupts: Should contain the STMMAC interrupts
- interrupt-names: Should contain the interrupt names "macirq"
"eth_wake_irq" if this interrupt is supported in the "interrupts"
property
2014-02-18 03:41:59 +04:00
- phy-mode: See ethernet.txt file in the same directory.
2013-07-04 13:35:48 +04:00
- snps,reset-gpio gpio number for phy reset.
- snps,reset-active-low boolean flag to indicate if phy reset is active low.
- snps,reset-delays-us is triplet of delays
The 1st cell is reset pre-delay in micro seconds.
The 2nd cell is reset pulse in micro seconds.
The 3rd cell is reset post-delay in micro seconds.
2013-07-04 13:35:41 +04:00
- snps,pbl Programmable Burst Length
- snps,fixed-burst Program the DMA to use the fixed burst mode
- snps,mixed-burst Program the DMA to use the mixed burst mode
2013-08-28 14:55:39 +04:00
- snps,force_thresh_dma_mode Force DMA to use the threshold mode for
both tx and rx
- snps,force_sf_dma_mode Force DMA to use the Store and Forward
mode for both tx and rx. This flag is
ignored if force_thresh_dma_mode is set.
2014-08-01 00:49:15 +04:00
- snps,multicast-filter-bins: Number of multicast filter hash bins
supported by this device instance
- snps,perfect-filter-entries: Number of perfect filter entries supported
by this device instance
2012-03-13 08:56:37 +04:00
Optional properties:
2014-01-17 17:24:41 +04:00
- resets: Should contain a phandle to the STMMAC reset signal, if any
- reset-names: Should contain the reset signal name "stmmaceth", if a
reset phandle is given
2014-02-18 03:41:59 +04:00
- max-frame-size: See ethernet.txt file in the same directory
2014-03-27 07:45:12 +04:00
- clocks: If present, the first clock should be the GMAC main clock,
further clocks may be specified in derived bindings.
2014-04-22 22:40:25 +04:00
- clock-names: One name for each entry in the clocks property, the
2014-03-27 07:45:12 +04:00
first one should be "stmmaceth".
2012-03-13 08:56:37 +04:00
Examples:
gmac0: ethernet@e0800000 {
compatible = "st,spear600-gmac";
reg = <0xe0800000 0x8000>;
interrupt-parent = <&vic1>;
interrupts = <24 23>;
interrupt-names = "macirq", "eth_wake_irq";
mac-address = [000000000000]; /* Filled in by U-Boot */
2014-01-20 15:39:00 +04:00
max-frame-size = <3800>;
2012-03-13 08:56:37 +04:00
phy-mode = "gmii";
2014-08-01 00:49:15 +04:00
snps,multicast-filter-bins = <256>;
snps,perfect-filter-entries = <128>;
2014-03-27 07:45:12 +04:00
clocks = <&clock>;
clock-names = "stmmaceth">;
2012-03-13 08:56:37 +04:00
};