stmmac.txt 12 KB

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