blob: e45ac3f926b164636b73e4280cf40ddfde314203 [file] [log] [blame]
Stefan Roese6a228452012-03-13 04:56:37 +00001* STMicroelectronics 10/100/1000 Ethernet driver (GMAC)
2
3Required properties:
Dinh Nguyen84c9f8c42012-07-18 13:28:26 +00004- compatible: Should be "snps,dwmac-<ip_version>" "snps,dwmac"
5 For backwards compatibility: "st,spear600-gmac" is also supported.
Stefan Roese6a228452012-03-13 04:56:37 +00006- reg: Address and length of the register set for the device
7- interrupt-parent: Should be the phandle for the interrupt controller
8 that services interrupts for this device
9- interrupts: Should contain the STMMAC interrupts
10- interrupt-names: Should contain the interrupt names "macirq"
11 "eth_wake_irq" if this interrupt is supported in the "interrupts"
12 property
Sergei Shtylyove8f08ee2014-02-18 02:41:59 +030013- phy-mode: See ethernet.txt file in the same directory.
Srinivas Kandagatla0e076472013-07-04 10:35:48 +010014- snps,reset-gpio gpio number for phy reset.
15- snps,reset-active-low boolean flag to indicate if phy reset is active low.
16- snps,reset-delays-us is triplet of delays
17 The 1st cell is reset pre-delay in micro seconds.
18 The 2nd cell is reset pulse in micro seconds.
19 The 3rd cell is reset post-delay in micro seconds.
Srinivas Kandagatla25c83b52013-07-04 10:35:41 +010020- snps,pbl Programmable Burst Length
21- snps,fixed-burst Program the DMA to use the fixed burst mode
22- snps,mixed-burst Program the DMA to use the mixed burst mode
Sonic Zhange2a240c2013-08-28 18:55:39 +080023- snps,force_thresh_dma_mode Force DMA to use the threshold mode for
24 both tx and rx
25- snps,force_sf_dma_mode Force DMA to use the Store and Forward
26 mode for both tx and rx. This flag is
27 ignored if force_thresh_dma_mode is set.
Vince Bridgers94ceaa22014-07-31 15:49:15 -050028- snps,multicast-filter-bins: Number of multicast filter hash bins
29 supported by this device instance
30- snps,perfect-filter-entries: Number of perfect filter entries supported
31 by this device instance
Stefan Roese6a228452012-03-13 04:56:37 +000032
33Optional properties:
Chen-Yu Tsaic5e4ddb2014-01-17 21:24:41 +080034- resets: Should contain a phandle to the STMMAC reset signal, if any
35- reset-names: Should contain the reset signal name "stmmaceth", if a
36 reset phandle is given
Sergei Shtylyove8f08ee2014-02-18 02:41:59 +030037- max-frame-size: See ethernet.txt file in the same directory
Dinh Nguyen50b4af42014-03-26 22:45:12 -050038- clocks: If present, the first clock should be the GMAC main clock,
39 further clocks may be specified in derived bindings.
Geert Uytterhoevenae107d02014-04-22 20:40:25 +020040- clock-names: One name for each entry in the clocks property, the
Dinh Nguyen50b4af42014-03-26 22:45:12 -050041 first one should be "stmmaceth".
Giuseppe CAVALLARO55664012014-08-27 10:37:49 +020042- clk_ptp_ref: this is the PTP reference clock; in case of the PTP is
43 available this clock is used for programming the Timestamp Addend Register.
44 If not passed then the system clock will be used and this is fine on some
45 platforms.
Stefan Roese6a228452012-03-13 04:56:37 +000046
47Examples:
48
49 gmac0: ethernet@e0800000 {
50 compatible = "st,spear600-gmac";
51 reg = <0xe0800000 0x8000>;
52 interrupt-parent = <&vic1>;
53 interrupts = <24 23>;
54 interrupt-names = "macirq", "eth_wake_irq";
55 mac-address = [000000000000]; /* Filled in by U-Boot */
Vince Bridgers369ea812014-01-20 05:39:00 -060056 max-frame-size = <3800>;
Stefan Roese6a228452012-03-13 04:56:37 +000057 phy-mode = "gmii";
Vince Bridgers94ceaa22014-07-31 15:49:15 -050058 snps,multicast-filter-bins = <256>;
59 snps,perfect-filter-entries = <128>;
Dinh Nguyen50b4af42014-03-26 22:45:12 -050060 clocks = <&clock>;
61 clock-names = "stmmaceth">;
Stefan Roese6a228452012-03-13 04:56:37 +000062 };