blob: d64a147142364ee56e0c64010330e0a4c38cf967 [file] [log] [blame]
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +00001 STMicroelectronics 10/100/1000 Synopsys Ethernet driver
2
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +01003Copyright (C) 2007-2014 STMicroelectronics Ltd
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +00004Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
5
6This is the driver for the MAC 10/100/1000 on-chip Ethernet controllers
Giuseppe CAVALLARO5b993262011-12-21 03:58:20 +00007(Synopsys IP blocks).
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +00008
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +01009Currently this network device driver is for all STi embedded MAC/GMAC
Giuseppe CAVALLARO5b993262011-12-21 03:58:20 +000010(i.e. 7xxx/5xxx SoCs), SPEAr (arm), Loongson1B (mips) and XLINX XC2V3000
11FF1152AMT0221 D1215994A VIRTEX FPGA board.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000012
Giuseppe CAVALLARO49cfbf62013-04-08 02:09:59 +000013DWC Ether MAC 10/100/1000 Universal version 3.70a (and older) and DWC Ether
Giuseppe CAVALLARO3d237712012-06-04 19:22:56 +000014MAC 10/100 Universal version 4.0 have been used for developing this driver.
Giuseppe CAVALLARO5b993262011-12-21 03:58:20 +000015
16This driver supports both the platform bus and PCI.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000017
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
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +010025CONFIG_STMMAC_PLATFORM: is to enable the platform driver.
26CONFIG_STMMAC_PCI: is to enable the pci driver.
27
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000282) Driver parameters list:
29 debug: message level (0: no output, 16: all);
30 phyaddr: to manually provide the physical address to the PHY device;
31 dma_rxsize: DMA rx ring size;
32 dma_txsize: DMA tx ring size;
33 buf_sz: DMA buffer size;
34 tc: control the HW FIFO threshold;
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000035 watchdog: transmit timeout (in milliseconds);
36 flow_ctrl: Flow control ability [on/off];
37 pause: Flow Control Pause Time;
Giuseppe CAVALLARO49cfbf62013-04-08 02:09:59 +000038 eee_timer: tx EEE timer;
39 chain_mode: select chain mode instead of ring.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000040
413) Command line options
42Driver parameters can be also passed in command line by using:
43 stmmaceth=dma_rxsize:128,dma_txsize:512
44
454) Driver information and notes
46
474.1) Transmit process
48The xmit method is invoked when the kernel needs to transmit a packet; it sets
49the descriptors in the ring and informs the DMA engine that there is a packet
50ready to be transmitted.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000051By default, the driver sets the NETIF_F_SG bit in the features field of the
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +010052net_device structure enabling the scatter-gather feature. This is true on
53chips and configurations where the checksum can be done in hardware.
54Once the controller has finished transmitting the packet, napi will be
55scheduled to release the transmit resources.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000056
574.2) Receive process
58When one or more packets are received, an interrupt happens. The interrupts
59are not queued so the driver has to scan all the descriptors in the ring during
60the receive process.
Giuseppe CAVALLARO3d237712012-06-04 19:22:56 +000061This is based on NAPI so the interrupt handler signals only if there is work
62to be done, and it exits.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000063Then the poll method will be scheduled at some future point.
64The incoming packets are stored, by the DMA, in a list of pre-allocated socket
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +010065buffers in order to avoid the memcpy (zero-copy).
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000066
Giuseppe CAVALLAROf9e01b52012-11-25 23:10:45 +0000674.3) Interrupt Mitigation
68The driver is able to mitigate the number of its DMA interrupts
69using NAPI for the reception on chips older than the 3.50.
70New chips have an HW RX-Watchdog used for this mitigation.
Giuseppe CAVALLAROf9e01b52012-11-25 23:10:45 +000071Mitigation parameters can be tuned by ethtool.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000072
734.4) WOL
Giuseppe CAVALLARO3d237712012-06-04 19:22:56 +000074Wake up on Lan feature through Magic and Unicast frames are supported for the
75GMAC core.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000076
774.5) DMA descriptors
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +010078Driver handles both normal and alternate descriptors. The latter has been only
Giuseppe CAVALLARO51e31372011-10-18 00:01:20 +000079tested on DWC Ether MAC 10/100/1000 Universal version 3.41a and later.
80
81STMMAC supports DMA descriptor to operate both in dual buffer (RING)
82and linked-list(CHAINED) mode. In RING each descriptor points to two
83data buffer pointers whereas in CHAINED mode they point to only one data
84buffer pointer. RING mode is the default.
85
86In CHAINED mode each descriptor will have pointer to next descriptor in
87the list, hence creating the explicit chaining in the descriptor itself,
88whereas such explicit chaining is not possible in RING mode.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +000089
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100904.5.1) Extended descriptors
91 The extended descriptors give us information about the Ethernet payload
92 when it is carrying PTP packets or TCP/UDP/ICMP over IP.
93 These are not available on GMAC Synopsys chips older than the 3.50.
94 At probe time the driver will decide if these can be actually used.
95 This support also is mandatory for PTPv2 because the extra descriptors
96 are used for saving the hardware timestamps and Extended Status.
97
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000984.6) Ethtool support
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +010099Ethtool is supported.
100
101For example, driver statistics (including RMON), internal errors can be taken
102using:
103 # ethtool -S ethX command
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000104
1054.7) Jumbo and Segmentation Offloading
106Jumbo frames are supported and tested for the GMAC.
107The GSO has been also added but it's performed in software.
108LRO is not supported.
109
1104.8) Physical
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100111The driver is compatible with Physical Abstraction Layer to be connected with
112PHY and GPHY devices.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000113
1144.9) Platform information
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100115Several information can be passed through the platform and device-tree.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000116
Giuseppe CAVALLARO3d237712012-06-04 19:22:56 +0000117struct plat_stmmacenet_data {
118 char *phy_bus_name;
Giuseppe Cavallarof5539b52010-11-12 12:43:34 -0800119 int bus_id;
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000120 int phy_addr;
121 int interface;
122 struct stmmac_mdio_bus_data *mdio_bus_data;
Deepak SIKRI8327eb62012-04-04 04:33:23 +0000123 struct stmmac_dma_cfg *dma_cfg;
Giuseppe Cavallarof5539b52010-11-12 12:43:34 -0800124 int clk_csr;
125 int has_gmac;
126 int enh_desc;
127 int tx_coe;
Deepak SIKRI55f9a4d2012-04-04 04:33:20 +0000128 int rx_coe;
Giuseppe Cavallarof5539b52010-11-12 12:43:34 -0800129 int bugged_jumbo;
130 int pmt;
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000131 int force_sf_dma_mode;
Sonic Zhange2a240c2013-08-28 18:55:39 +0800132 int force_thresh_dma_mode;
Giuseppe CAVALLAROf9e01b52012-11-25 23:10:45 +0000133 int riwt_off;
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100134 int max_speed;
135 int maxmtu;
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000136 void (*fix_mac_speed)(void *priv, unsigned int speed);
137 void (*bus_setup)(void __iomem *ioaddr);
Chen-Yu Tsai938dfda2014-01-17 21:24:42 +0800138 int (*init)(struct platform_device *pdev, void *priv);
139 void (*exit)(struct platform_device *pdev, void *priv);
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000140 void *bsp_priv;
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100141};
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000142
143Where:
Giuseppe CAVALLARO3d237712012-06-04 19:22:56 +0000144 o phy_bus_name: phy bus name to attach to the stmmac.
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000145 o bus_id: bus identifier.
146 o phy_addr: the physical address can be passed from the platform.
147 If it is set to -1 the driver will automatically
148 detect it at run-time by probing all the 32 addresses.
149 o interface: PHY device's interface.
150 o mdio_bus_data: specific platform fields for the MDIO bus.
Giuseppe CAVALLARO3d237712012-06-04 19:22:56 +0000151 o dma_cfg: internal DMA parameters
152 o pbl: the Programmable Burst Length is maximum number of beats to
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000153 be transferred in one DMA transaction.
154 GMAC also enables the 4xPBL by default.
Giuseppe CAVALLARO3d237712012-06-04 19:22:56 +0000155 o fixed_burst/mixed_burst/burst_len
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +0000156 o clk_csr: fixed CSR Clock range selection.
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000157 o has_gmac: uses the GMAC core.
158 o enh_desc: if sets the MAC will use the enhanced descriptor structure.
159 o tx_coe: core is able to perform the tx csum in HW.
Deepak SIKRI55f9a4d2012-04-04 04:33:20 +0000160 o rx_coe: the supports three check sum offloading engine types:
161 type_1, type_2 (full csum) and no RX coe.
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000162 o bugged_jumbo: some HWs are not able to perform the csum in HW for
163 over-sized frames due to limited buffer sizes.
164 Setting this flag the csum will be done in SW on
165 JUMBO frames.
166 o pmt: core has the embedded power module (optional).
167 o force_sf_dma_mode: force DMA to use the Store and Forward mode
168 instead of the Threshold.
Masanari Iidac17cb8b2013-10-30 16:46:15 +0900169 o force_thresh_dma_mode: force DMA to use the Threshold mode other than
Sonic Zhange2a240c2013-08-28 18:55:39 +0800170 the Store and Forward mode.
Giuseppe CAVALLAROf9e01b52012-11-25 23:10:45 +0000171 o riwt_off: force to disable the RX watchdog feature and switch to NAPI mode.
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000172 o fix_mac_speed: this callback is used for modifying some syscfg registers
173 (on ST SoCs) according to the link speed negotiated by the
174 physical layer .
175 o bus_setup: perform HW setup of the bus. For example, on some ST platforms
176 this field is used to configure the AMBA bridge to generate more
177 efficient STBus traffic.
Joachim Eastwood75fee592015-07-29 00:09:03 +0200178 o init/exit: callbacks used for calling a custom initialization;
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000179 this is sometime necessary on some platforms (e.g. ST boxes)
180 where the HW needs to have set some PIO lines or system cfg
Joachim Eastwood75fee592015-07-29 00:09:03 +0200181 registers. init/exit callbacks should not use or modify
Chen-Yu Tsai938dfda2014-01-17 21:24:42 +0800182 platform data.
Masanari Iidac17cb8b2013-10-30 16:46:15 +0900183 o bsp_priv: another private pointer.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000184
Deepak SIKRI8327eb62012-04-04 04:33:23 +0000185For MDIO bus The we have:
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000186
187 struct stmmac_mdio_bus_data {
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000188 int (*phy_reset)(void *priv);
189 unsigned int phy_mask;
190 int *irqs;
191 int probed_phy_irq;
192 };
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000193
194Where:
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000195 o phy_reset: hook to reset the phy device attached to the bus.
196 o phy_mask: phy mask passed when register the MDIO bus within the driver.
197 o irqs: list of IRQs, one per PHY.
198 o probed_phy_irq: if irqs is NULL, use this for probed PHY.
Giuseppe CAVALLAROa1d6f3f2010-03-31 21:44:04 +0000199
Deepak SIKRI8327eb62012-04-04 04:33:23 +0000200For DMA engine we have the following internal fields that should be
201tuned according to the HW capabilities.
202
203struct stmmac_dma_cfg {
204 int pbl;
205 int fixed_burst;
206 int burst_len_supported;
207};
208
209Where:
210 o pbl: Programmable Burst Length
211 o fixed_burst: program the DMA to use the fixed burst mode
212 o burst_len: this is the value we put in the register
213 supported values are provided as macros in
214 linux/stmmac.h header file.
215
216---
217
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000218Below an example how the structures above are using on ST platforms.
Giuseppe Cavallarof5539b52010-11-12 12:43:34 -0800219
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000220 static struct plat_stmmacenet_data stxYYY_ethernet_platform_data = {
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000221 .has_gmac = 0,
222 .enh_desc = 0,
223 .fix_mac_speed = stxYYY_ethernet_fix_mac_speed,
224 |
225 |-> to write an internal syscfg
226 | on this platform when the
227 | link speed changes from 10 to
228 | 100 and viceversa
229 .init = &stmmac_claim_resource,
230 |
231 |-> On ST SoC this calls own "PAD"
232 | manager framework to claim
233 | all the resources necessary
234 | (GPIO ...). The .custom_cfg field
235 | is used to pass a custom config.
236};
237
238Below the usage of the stmmac_mdio_bus_data: on this SoC, in fact,
239there are two MAC cores: one MAC is for MDIO Bus/PHY emulation
240with fixed_link support.
241
242static struct stmmac_mdio_bus_data stmmac1_mdio_bus = {
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000243 .phy_reset = phy_reset;
244 |
245 |-> function to provide the phy_reset on this board
246 .phy_mask = 0,
247};
248
249static struct fixed_phy_status stmmac0_fixed_phy_status = {
250 .link = 1,
251 .speed = 100,
252 .duplex = 1,
253};
254
255During the board's device_init we can configure the first
256MAC for fixed_link by calling:
Andrew Lunna5597002015-08-31 15:56:53 +0200257 fixed_phy_add(PHY_POLL, 1, &stmmac0_fixed_phy_status, -1);
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000258and the second one, with a real PHY device attached to the bus,
259by using the stmmac_mdio_bus_data structure (to provide the id, the
260reset procedure etc).
261
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100262Note that, starting from new chips, where it is available the HW capability
263register, many configurations are discovered at run-time for example to
264understand if EEE, HW csum, PTP, enhanced descriptor etc are actually
265available. As strategy adopted in this driver, the information from the HW
266capability register can replace what has been passed from the platform.
267
2684.10) Device-tree support.
269
270Please see the following document:
271 Documentation/devicetree/bindings/net/stmmac.txt
272
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +01002734.11) This is a summary of the content of some relevant files:
274 o stmmac_main.c: to implement the main network device driver;
275 o stmmac_mdio.c: to provide mdio functions;
276 o stmmac_pci: this the PCI driver;
277 o stmmac_platform.c: this the platform driver (OF supported)
278 o stmmac_ethtool.c: to implement the ethtool support;
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000279 o stmmac.h: private driver structure;
280 o common.h: common definitions and VFTs;
281 o descs.h: descriptor structure definitions;
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100282 o dwmac1000_core.c: dwmac GiGa core functions;
283 o dwmac1000_dma.c: dma functions for the GMAC chip;
284 o dwmac1000.h: specific header file for the dwmac GiGa;
285 o dwmac100_core: dwmac 100 core code;
286 o dwmac100_dma.c: dma functions for the dwmac 100 chip;
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000287 o dwmac1000.h: specific header file for the MAC;
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100288 o dwmac_lib.c: generic DMA functions;
Giuseppe CAVALLARO0ec2ccd2012-06-27 21:14:36 +0000289 o enh_desc.c: functions for handling enhanced descriptors;
290 o norm_desc.c: functions for handling normal descriptors;
291 o chain_mode.c/ring_mode.c:: functions to manage RING/CHAINED modes;
292 o mmc_core.c/mmc.h: Management MAC Counters;
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100293 o stmmac_hwtstamp.c: HW timestamp support for PTP;
294 o stmmac_ptp.c: PTP 1588 clock;
295 o dwmac-<XXX>.c: these are for the platform glue-logic file; e.g. dwmac-sti.c
296 for STMicroelectronics SoCs.
Giuseppe CAVALLARO557e2a32011-07-20 00:05:24 +0000297
Giuseppe CAVALLARO4f2f25f2011-09-01 21:51:42 +00002985) Debug Information
299
300The driver exports many information i.e. internal statistics,
301debug information, MAC and DMA registers etc.
302
303These can be read in several ways depending on the
304type of the information actually needed.
305
306For example a user can be use the ethtool support
307to get statistics: e.g. using: ethtool -S ethX
308(that shows the Management counters (MMC) if supported)
309or sees the MAC/DMA registers: e.g. using: ethtool -d ethX
310
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100311Compiling the Kernel with CONFIG_DEBUG_FS the driver will export the following
Giuseppe CAVALLARO4f2f25f2011-09-01 21:51:42 +0000312debugfs entries:
313
314/sys/kernel/debug/stmmaceth/descriptors_status
315 To show the DMA TX/RX descriptor rings
316
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +0100317Developer can also use the "debug" module parameter to get further debug
318information (please see: NETIF Msg Level).
Giuseppe CAVALLARO4f2f25f2011-09-01 21:51:42 +0000319
Giuseppe CAVALLARO0ec2ccd2012-06-27 21:14:36 +00003206) Energy Efficient Ethernet
321
322Energy Efficient Ethernet(EEE) enables IEEE 802.3 MAC sublayer along
323with a family of Physical layer to operate in the Low power Idle(LPI)
324mode. The EEE mode supports the IEEE 802.3 MAC operation at 100Mbps,
3251000Mbps & 10Gbps.
326
327The LPI mode allows power saving by switching off parts of the
328communication device functionality when there is no data to be
329transmitted & received. The system on both the side of the link can
330disable some functionalities & save power during the period of low-link
331utilization. The MAC controls whether the system should enter or exit
332the LPI mode & communicate this to PHY.
333
334As soon as the interface is opened, the driver verifies if the EEE can
335be supported. This is done by looking at both the DMA HW capability
336register and the PHY devices MCD registers.
337To enter in Tx LPI mode the driver needs to have a software timer
338that enable and disable the LPI mode when there is nothing to be
339transmitted.
340
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +01003417) Precision Time Protocol (PTP)
Giuseppe CAVALLARO94fbbbf2013-03-26 04:43:12 +0000342The driver supports the IEEE 1588-2002, Precision Time Protocol (PTP),
343which enables precise synchronization of clocks in measurement and
344control systems implemented with technologies such as network
345communication.
346
347In addition to the basic timestamp features mentioned in IEEE 1588-2002
348Timestamps, new GMAC cores support the advanced timestamp features.
349IEEE 1588-2008 that can be enabled when configure the Kernel.
350
Giuseppe CAVALLARO233b36c2014-11-18 09:46:59 +01003518) SGMII/RGMII supports
Giuseppe CAVALLARO94fbbbf2013-03-26 04:43:12 +0000352New GMAC devices provide own way to manage RGMII/SGMII.
353This information is available at run-time by looking at the
354HW capability register. This means that the stmmac can manage
355auto-negotiation and link status w/o using the PHYLIB stuff
356In fact, the HW provides a subset of extended registers to
357restart the ANE, verify Full/Half duplex mode and Speed.
358Also thanks to these registers it is possible to look at the
359Auto-negotiated Link Parter Ability.