stmmac: MDC clock dynamically based on the csr clock input
[deliverable/linux.git] / Documentation / networking / stmmac.txt
CommitLineData
a1d6f3f6
GC
1 STMicroelectronics 10/100/1000 Synopsys Ethernet driver
2
3Copyright (C) 2007-2010 STMicroelectronics Ltd
4Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
5
6This is the driver for the MAC 10/100/1000 on-chip Ethernet controllers
5b993268 7(Synopsys IP blocks).
a1d6f3f6
GC
8
9Currently this network device driver is for all STM embedded MAC/GMAC
5b993268
GC
10(i.e. 7xxx/5xxx SoCs), SPEAr (arm), Loongson1B (mips) and XLINX XC2V3000
11FF1152AMT0221 D1215994A VIRTEX FPGA board.
a1d6f3f6 12
5b993268
GC
13DWC Ether MAC 10/100/1000 Universal version 3.60a (and older) and DWC Ether MAC 10/100
14Universal version 4.0 have been used for developing this driver.
15
16This driver supports both the platform bus and PCI.
a1d6f3f6
GC
17
18Please, for more information also visit: www.stlinux.com
19
201) Kernel Configuration
21The kernel configuration option is STMMAC_ETH:
22 Device Drivers ---> Network device support ---> Ethernet (1000 Mbit) --->
23 STMicroelectronics 10/100/1000 Ethernet driver (STMMAC_ETH)
24
252) Driver parameters list:
26 debug: message level (0: no output, 16: all);
27 phyaddr: to manually provide the physical address to the PHY device;
28 dma_rxsize: DMA rx ring size;
29 dma_txsize: DMA tx ring size;
30 buf_sz: DMA buffer size;
31 tc: control the HW FIFO threshold;
32 tx_coe: Enable/Disable Tx Checksum Offload engine;
33 watchdog: transmit timeout (in milliseconds);
34 flow_ctrl: Flow control ability [on/off];
35 pause: Flow Control Pause Time;
36 tmrate: timer period (only if timer optimisation is configured).
37
383) Command line options
39Driver parameters can be also passed in command line by using:
40 stmmaceth=dma_rxsize:128,dma_txsize:512
41
424) Driver information and notes
43
444.1) Transmit process
45The xmit method is invoked when the kernel needs to transmit a packet; it sets
46the descriptors in the ring and informs the DMA engine that there is a packet
47ready to be transmitted.
48Once the controller has finished transmitting the packet, an interrupt is
49triggered; So the driver will be able to release the socket buffers.
50By default, the driver sets the NETIF_F_SG bit in the features field of the
51net_device structure enabling the scatter/gather feature.
52
534.2) Receive process
54When one or more packets are received, an interrupt happens. The interrupts
55are not queued so the driver has to scan all the descriptors in the ring during
56the receive process.
57This is based on NAPI so the interrupt handler signals only if there is work to be
58done, and it exits.
59Then the poll method will be scheduled at some future point.
60The incoming packets are stored, by the DMA, in a list of pre-allocated socket
61buffers in order to avoid the memcpy (Zero-copy).
62
634.3) Timer-Driver Interrupt
64Instead of having the device that asynchronously notifies the frame receptions, the
65driver configures a timer to generate an interrupt at regular intervals.
66Based on the granularity of the timer, the frames that are received by the device
67will experience different levels of latency. Some NICs have dedicated timer
68device to perform this task. STMMAC can use either the RTC device or the TMU
69channel 2 on STLinux platforms.
70The timers frequency can be passed to the driver as parameter; when change it,
71take care of both hardware capability and network stability/performance impact.
72Several performance tests on STM platforms showed this optimisation allows to spare
73the CPU while having the maximum throughput.
74
754.4) WOL
557e2a39 76Wake up on Lan feature through Magic and Unicast frames are supported for the GMAC
a1d6f3f6
GC
77core.
78
794.5) DMA descriptors
80Driver handles both normal and enhanced descriptors. The latter has been only
51e3137b
GC
81tested on DWC Ether MAC 10/100/1000 Universal version 3.41a and later.
82
83STMMAC supports DMA descriptor to operate both in dual buffer (RING)
84and linked-list(CHAINED) mode. In RING each descriptor points to two
85data buffer pointers whereas in CHAINED mode they point to only one data
86buffer pointer. RING mode is the default.
87
88In CHAINED mode each descriptor will have pointer to next descriptor in
89the list, hence creating the explicit chaining in the descriptor itself,
90whereas such explicit chaining is not possible in RING mode.
a1d6f3f6
GC
91
924.6) Ethtool support
93Ethtool is supported. Driver statistics and internal errors can be taken using:
94ethtool -S ethX command. It is possible to dump registers etc.
95
964.7) Jumbo and Segmentation Offloading
97Jumbo frames are supported and tested for the GMAC.
98The GSO has been also added but it's performed in software.
99LRO is not supported.
100
1014.8) Physical
102The driver is compatible with PAL to work with PHY and GPHY devices.
103
1044.9) Platform information
557e2a39
GC
105Several driver's information can be passed through the platform
106These are included in the include/linux/stmmac.h header file
107and detailed below as well:
a1d6f3f6 108
557e2a39 109 struct plat_stmmacenet_data {
f5539b5b 110 int bus_id;
557e2a39
GC
111 int phy_addr;
112 int interface;
113 struct stmmac_mdio_bus_data *mdio_bus_data;
8327eb65 114 struct stmmac_dma_cfg *dma_cfg;
f5539b5b
GC
115 int clk_csr;
116 int has_gmac;
117 int enh_desc;
118 int tx_coe;
55f9a4d6 119 int rx_coe;
f5539b5b
GC
120 int bugged_jumbo;
121 int pmt;
557e2a39
GC
122 int force_sf_dma_mode;
123 void (*fix_mac_speed)(void *priv, unsigned int speed);
124 void (*bus_setup)(void __iomem *ioaddr);
125 int (*init)(struct platform_device *pdev);
126 void (*exit)(struct platform_device *pdev);
127 void *bsp_priv;
128 };
a1d6f3f6
GC
129
130Where:
557e2a39
GC
131 o bus_id: bus identifier.
132 o phy_addr: the physical address can be passed from the platform.
133 If it is set to -1 the driver will automatically
134 detect it at run-time by probing all the 32 addresses.
135 o interface: PHY device's interface.
136 o mdio_bus_data: specific platform fields for the MDIO bus.
137 o pbl: the Programmable Burst Length is maximum number of beats to
138 be transferred in one DMA transaction.
139 GMAC also enables the 4xPBL by default.
cd7201f4 140 o clk_csr: fixed CSR Clock range selection.
557e2a39
GC
141 o has_gmac: uses the GMAC core.
142 o enh_desc: if sets the MAC will use the enhanced descriptor structure.
143 o tx_coe: core is able to perform the tx csum in HW.
55f9a4d6
DS
144 o rx_coe: the supports three check sum offloading engine types:
145 type_1, type_2 (full csum) and no RX coe.
557e2a39
GC
146 o bugged_jumbo: some HWs are not able to perform the csum in HW for
147 over-sized frames due to limited buffer sizes.
148 Setting this flag the csum will be done in SW on
149 JUMBO frames.
150 o pmt: core has the embedded power module (optional).
151 o force_sf_dma_mode: force DMA to use the Store and Forward mode
152 instead of the Threshold.
153 o fix_mac_speed: this callback is used for modifying some syscfg registers
154 (on ST SoCs) according to the link speed negotiated by the
155 physical layer .
156 o bus_setup: perform HW setup of the bus. For example, on some ST platforms
157 this field is used to configure the AMBA bridge to generate more
158 efficient STBus traffic.
159 o init/exit: callbacks used for calling a custom initialisation;
160 this is sometime necessary on some platforms (e.g. ST boxes)
161 where the HW needs to have set some PIO lines or system cfg
162 registers.
163 o custom_cfg: this is a custom configuration that can be passed while
164 initialising the resources.
165
8327eb65 166For MDIO bus The we have:
557e2a39
GC
167
168 struct stmmac_mdio_bus_data {
169 int bus_id;
170 int (*phy_reset)(void *priv);
171 unsigned int phy_mask;
172 int *irqs;
173 int probed_phy_irq;
174 };
a1d6f3f6
GC
175
176Where:
557e2a39
GC
177 o bus_id: bus identifier;
178 o phy_reset: hook to reset the phy device attached to the bus.
179 o phy_mask: phy mask passed when register the MDIO bus within the driver.
180 o irqs: list of IRQs, one per PHY.
181 o probed_phy_irq: if irqs is NULL, use this for probed PHY.
182
8327eb65
DS
183
184For DMA engine we have the following internal fields that should be
185tuned according to the HW capabilities.
186
187struct stmmac_dma_cfg {
188 int pbl;
189 int fixed_burst;
190 int burst_len_supported;
191};
192
193Where:
194 o pbl: Programmable Burst Length
195 o fixed_burst: program the DMA to use the fixed burst mode
196 o burst_len: this is the value we put in the register
197 supported values are provided as macros in
198 linux/stmmac.h header file.
199
200---
201
557e2a39
GC
202Below an example how the structures above are using on ST platforms.
203
204 static struct plat_stmmacenet_data stxYYY_ethernet_platform_data = {
557e2a39
GC
205 .has_gmac = 0,
206 .enh_desc = 0,
207 .fix_mac_speed = stxYYY_ethernet_fix_mac_speed,
208 |
209 |-> to write an internal syscfg
210 | on this platform when the
211 | link speed changes from 10 to
212 | 100 and viceversa
213 .init = &stmmac_claim_resource,
214 |
215 |-> On ST SoC this calls own "PAD"
216 | manager framework to claim
217 | all the resources necessary
218 | (GPIO ...). The .custom_cfg field
219 | is used to pass a custom config.
220};
221
222Below the usage of the stmmac_mdio_bus_data: on this SoC, in fact,
223there are two MAC cores: one MAC is for MDIO Bus/PHY emulation
224with fixed_link support.
225
226static struct stmmac_mdio_bus_data stmmac1_mdio_bus = {
227 .bus_id = 1,
228 |
229 |-> phy device on the bus_id 1
230 .phy_reset = phy_reset;
231 |
232 |-> function to provide the phy_reset on this board
233 .phy_mask = 0,
234};
235
236static struct fixed_phy_status stmmac0_fixed_phy_status = {
237 .link = 1,
238 .speed = 100,
239 .duplex = 1,
240};
241
242During the board's device_init we can configure the first
243MAC for fixed_link by calling:
244 fixed_phy_add(PHY_POLL, 1, &stmmac0_fixed_phy_status));)
245and the second one, with a real PHY device attached to the bus,
246by using the stmmac_mdio_bus_data structure (to provide the id, the
247reset procedure etc).
248
2494.10) List of source files:
250 o Kconfig
251 o Makefile
252 o stmmac_main.c: main network device driver;
253 o stmmac_mdio.c: mdio functions;
254 o stmmac_ethtool.c: ethtool support;
255 o stmmac_timer.[ch]: timer code used for mitigating the driver dma interrupts
256 Only tested on ST40 platforms based.
257 o stmmac.h: private driver structure;
258 o common.h: common definitions and VFTs;
259 o descs.h: descriptor structure definitions;
260 o dwmac1000_core.c: GMAC core functions;
261 o dwmac1000_dma.c: dma functions for the GMAC chip;
262 o dwmac1000.h: specific header file for the GMAC;
263 o dwmac100_core: MAC 100 core and dma code;
264 o dwmac100_dma.c: dma funtions for the MAC chip;
265 o dwmac1000.h: specific header file for the MAC;
266 o dwmac_lib.c: generic DMA functions shared among chips
267 o enh_desc.c: functions for handling enhanced descriptors
268 o norm_desc.c: functions for handling normal descriptors
269
4f2f25f9
GC
2705) Debug Information
271
272The driver exports many information i.e. internal statistics,
273debug information, MAC and DMA registers etc.
274
275These can be read in several ways depending on the
276type of the information actually needed.
277
278For example a user can be use the ethtool support
279to get statistics: e.g. using: ethtool -S ethX
280(that shows the Management counters (MMC) if supported)
281or sees the MAC/DMA registers: e.g. using: ethtool -d ethX
282
283Compiling the Kernel with CONFIG_DEBUG_FS and enabling the
284STMMAC_DEBUG_FS option the driver will export the following
285debugfs entries:
286
287/sys/kernel/debug/stmmaceth/descriptors_status
288 To show the DMA TX/RX descriptor rings
289
290Developer can also use the "debug" module parameter to get
291further debug information.
292
293In the end, there are other macros (that cannot be enabled
294via menuconfig) to turn-on the RX/TX DMA debugging,
295specific MAC core debug printk etc. Others to enable the
296debug in the TX and RX processes.
297All these are only useful during the developing stage
298and should never enabled inside the code for general usage.
299In fact, these can generate an huge amount of debug messages.
300
3016) TODO:
557e2a39 302 o XGMAC is not supported.
5b993268
GC
303 o Add the EEE - Energy Efficient Ethernet
304 o Add the PTP - precision time protocol
This page took 0.173528 seconds and 5 git commands to generate.