linux/Documentation/networking/stmmac.txt
<<
>>
Prefs
   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
   7(Synopsys IP blocks); it has been fully tested on STLinux platforms.
   8
   9Currently this network device driver is for all STM embedded MAC/GMAC
  10(7xxx SoCs).
  11
  12DWC Ether MAC 10/100/1000 Universal version 3.41a and DWC Ether MAC 10/100
  13Universal version 4.0 have been used for developing the first code
  14implementation.
  15
  16Please, for more information also visit: www.stlinux.com
  17
  181) Kernel Configuration
  19The kernel configuration option is STMMAC_ETH:
  20 Device Drivers ---> Network device support ---> Ethernet (1000 Mbit) --->
  21 STMicroelectronics 10/100/1000 Ethernet driver (STMMAC_ETH)
  22
  232) Driver parameters list:
  24        debug: message level (0: no output, 16: all);
  25        phyaddr: to manually provide the physical address to the PHY device;
  26        dma_rxsize: DMA rx ring size;
  27        dma_txsize: DMA tx ring size;
  28        buf_sz: DMA buffer size;
  29        tc: control the HW FIFO threshold;
  30        tx_coe: Enable/Disable Tx Checksum Offload engine;
  31        watchdog: transmit timeout (in milliseconds);
  32        flow_ctrl: Flow control ability [on/off];
  33        pause: Flow Control Pause Time;
  34        tmrate: timer period (only if timer optimisation is configured).
  35
  363) Command line options
  37Driver parameters can be also passed in command line by using:
  38        stmmaceth=dma_rxsize:128,dma_txsize:512
  39
  404) Driver information and notes
  41
  424.1) Transmit process
  43The xmit method is invoked when the kernel needs to transmit a packet; it sets
  44the descriptors in the ring and informs the DMA engine that there is a packet
  45ready to be transmitted.
  46Once the controller has finished transmitting the packet, an interrupt is
  47triggered; So the driver will be able to release the socket buffers.
  48By default, the driver sets the NETIF_F_SG bit in the features field of the
  49net_device structure enabling the scatter/gather feature.
  50
  514.2) Receive process
  52When one or more packets are received, an interrupt happens. The interrupts
  53are not queued so the driver has to scan all the descriptors in the ring during
  54the receive process.
  55This is based on NAPI so the interrupt handler signals only if there is work to be
  56done, and it exits.
  57Then the poll method will be scheduled at some future point.
  58The incoming packets are stored, by the DMA, in a list of pre-allocated socket
  59buffers in order to avoid the memcpy (Zero-copy).
  60
  614.3) Timer-Driver Interrupt
  62Instead of having the device that asynchronously notifies the frame receptions, the
  63driver configures a timer to generate an interrupt at regular intervals.
  64Based on the granularity of the timer, the frames that are received by the device
  65will experience different levels of latency. Some NICs have dedicated timer
  66device to perform this task. STMMAC can use either the RTC device or the TMU
  67channel 2  on STLinux platforms.
  68The timers frequency can be passed to the driver as parameter; when change it,
  69take care of both hardware capability and network stability/performance impact.
  70Several performance tests on STM platforms showed this optimisation allows to spare
  71the CPU while having the maximum throughput.
  72
  734.4) WOL
  74Wake up on Lan feature through Magic Frame is only supported for the GMAC
  75core.
  76
  774.5) DMA descriptors
  78Driver handles both normal and enhanced descriptors. The latter has been only
  79tested on DWC Ether MAC 10/100/1000 Universal version 3.41a.
  80
  814.6) Ethtool support
  82Ethtool is supported. Driver statistics and internal errors can be taken using:
  83ethtool -S ethX command. It is possible to dump registers etc.
  84
  854.7) Jumbo and Segmentation Offloading
  86Jumbo frames are supported and tested for the GMAC.
  87The GSO has been also added but it's performed in software.
  88LRO is not supported.
  89
  904.8) Physical
  91The driver is compatible with PAL to work with PHY and GPHY devices.
  92
  934.9) Platform information
  94Several information came from the platform; please refer to the
  95driver's Header file in include/linux directory.
  96
  97struct plat_stmmacenet_data {
  98        int bus_id;
  99        int pbl;
 100        int has_gmac;
 101        void (*fix_mac_speed)(void *priv, unsigned int speed);
 102        void (*bus_setup)(unsigned long ioaddr);
 103#ifdef CONFIG_STM_DRIVERS
 104        struct stm_pad_config *pad_config;
 105#endif
 106        void *bsp_priv;
 107};
 108
 109Where:
 110- pbl (Programmable Burst Length) is maximum number of
 111  beats to be transferred in one DMA transaction.
 112  GMAC also enables the 4xPBL by default.
 113- fix_mac_speed and bus_setup are used to configure internal target
 114  registers (on STM platforms);
 115- has_gmac: GMAC core is on board (get it at run-time in the next step);
 116- bus_id: bus identifier.
 117
 118struct plat_stmmacphy_data {
 119        int bus_id;
 120        int phy_addr;
 121        unsigned int phy_mask;
 122        int interface;
 123        int (*phy_reset)(void *priv);
 124        void *priv;
 125};
 126
 127Where:
 128- bus_id: bus identifier;
 129- phy_addr: physical address used for the attached phy device;
 130            set it to -1 to get it at run-time;
 131- interface: physical MII interface mode;
 132- phy_reset: hook to reset HW function.
 133
 134TODO:
 135- Continue to make the driver more generic and suitable for other Synopsys
 136  Ethernet controllers used on other architectures (i.e. ARM).
 137- 10G controllers are not supported.
 138- MAC uses Normal descriptors and GMAC uses enhanced ones.
 139  This is a limit that should be reviewed. MAC could want to
 140  use the enhanced structure.
 141- Checksumming: Rx/Tx csum is done in HW in case of GMAC only.
 142- Review the timer optimisation code to use an embedded device that seems to be
 143  available in new chip generations.
 144