blob: 71b64857e3a61bf2e9c8b738d2bae521310c4d94 [file] [log] [blame]
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001/*******************************************************************************
2 This is the driver for the ST MAC 10/100/1000 on-chip Ethernet controllers.
3 ST Ethernet IPs are built around a Synopsys IP Core.
4
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00005 Copyright(C) 2007-2011 STMicroelectronics Ltd
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07006
7 This program is free software; you can redistribute it and/or modify it
8 under the terms and conditions of the GNU General Public License,
9 version 2, as published by the Free Software Foundation.
10
11 This program is distributed in the hope it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
15
16 You should have received a copy of the GNU General Public License along with
17 this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
19
20 The full GNU General Public License is included in this distribution in
21 the file called "COPYING".
22
23 Author: Giuseppe Cavallaro <peppe.cavallaro@st.com>
24
25 Documentation available at:
26 http://www.stlinux.com
27 Support available at:
28 https://bugzilla.stlinux.com/
29*******************************************************************************/
30
Viresh Kumar6a81c262012-07-30 14:39:41 -070031#include <linux/clk.h>
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070032#include <linux/kernel.h>
33#include <linux/interrupt.h>
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070034#include <linux/ip.h>
35#include <linux/tcp.h>
36#include <linux/skbuff.h>
37#include <linux/ethtool.h>
38#include <linux/if_ether.h>
39#include <linux/crc32.h>
40#include <linux/mii.h>
Jiri Pirko01789342011-08-16 06:29:00 +000041#include <linux/if.h>
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070042#include <linux/if_vlan.h>
43#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Paul Gortmaker70c71602011-05-22 16:47:17 -040045#include <linux/prefetch.h>
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +000046#ifdef CONFIG_STMMAC_DEBUG_FS
47#include <linux/debugfs.h>
48#include <linux/seq_file.h>
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +000049#endif /* CONFIG_STMMAC_DEBUG_FS */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +000050#include <linux/net_tstamp.h>
51#include "stmmac_ptp.h"
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +000052#include "stmmac.h"
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070053
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070054#undef STMMAC_DEBUG
55/*#define STMMAC_DEBUG*/
56#ifdef STMMAC_DEBUG
57#define DBG(nlevel, klevel, fmt, args...) \
58 ((void)(netif_msg_##nlevel(priv) && \
59 printk(KERN_##klevel fmt, ## args)))
60#else
61#define DBG(nlevel, klevel, fmt, args...) do { } while (0)
62#endif
63
64#undef STMMAC_RX_DEBUG
65/*#define STMMAC_RX_DEBUG*/
66#ifdef STMMAC_RX_DEBUG
67#define RX_DBG(fmt, args...) printk(fmt, ## args)
68#else
69#define RX_DBG(fmt, args...) do { } while (0)
70#endif
71
72#undef STMMAC_XMIT_DEBUG
73/*#define STMMAC_XMIT_DEBUG*/
Giuseppe CAVALLAROde53d552013-02-06 20:47:51 +000074#ifdef STMMAC_XMIT_DEBUG
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070075#define TX_DBG(fmt, args...) printk(fmt, ## args)
76#else
77#define TX_DBG(fmt, args...) do { } while (0)
78#endif
79
80#define STMMAC_ALIGN(x) L1_CACHE_ALIGN(x)
81#define JUMBO_LEN 9000
82
83/* Module parameters */
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +000084#define TX_TIMEO 5000
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070085static int watchdog = TX_TIMEO;
86module_param(watchdog, int, S_IRUGO | S_IWUSR);
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +000087MODULE_PARM_DESC(watchdog, "Transmit timeout in milliseconds (default 5s)");
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070088
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +000089static int debug = -1;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070090module_param(debug, int, S_IRUGO | S_IWUSR);
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +000091MODULE_PARM_DESC(debug, "Message Level (-1: default, 0: no output, 16: all)");
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070092
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +000093int phyaddr = -1;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -070094module_param(phyaddr, int, S_IRUGO);
95MODULE_PARM_DESC(phyaddr, "Physical device address");
96
97#define DMA_TX_SIZE 256
98static int dma_txsize = DMA_TX_SIZE;
99module_param(dma_txsize, int, S_IRUGO | S_IWUSR);
100MODULE_PARM_DESC(dma_txsize, "Number of descriptors in the TX list");
101
102#define DMA_RX_SIZE 256
103static int dma_rxsize = DMA_RX_SIZE;
104module_param(dma_rxsize, int, S_IRUGO | S_IWUSR);
105MODULE_PARM_DESC(dma_rxsize, "Number of descriptors in the RX list");
106
107static int flow_ctrl = FLOW_OFF;
108module_param(flow_ctrl, int, S_IRUGO | S_IWUSR);
109MODULE_PARM_DESC(flow_ctrl, "Flow control ability [on/off]");
110
111static int pause = PAUSE_TIME;
112module_param(pause, int, S_IRUGO | S_IWUSR);
113MODULE_PARM_DESC(pause, "Flow Control Pause Time");
114
115#define TC_DEFAULT 64
116static int tc = TC_DEFAULT;
117module_param(tc, int, S_IRUGO | S_IWUSR);
118MODULE_PARM_DESC(tc, "DMA threshold control value");
119
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700120#define DMA_BUFFER_SIZE BUF_SIZE_2KiB
121static int buf_sz = DMA_BUFFER_SIZE;
122module_param(buf_sz, int, S_IRUGO | S_IWUSR);
123MODULE_PARM_DESC(buf_sz, "DMA buffer size");
124
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700125static const u32 default_msg_level = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
126 NETIF_MSG_LINK | NETIF_MSG_IFUP |
127 NETIF_MSG_IFDOWN | NETIF_MSG_TIMER);
128
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000129#define STMMAC_DEFAULT_LPI_TIMER 1000
130static int eee_timer = STMMAC_DEFAULT_LPI_TIMER;
131module_param(eee_timer, int, S_IRUGO | S_IWUSR);
132MODULE_PARM_DESC(eee_timer, "LPI tx expiration time in msec");
133#define STMMAC_LPI_TIMER(x) (jiffies + msecs_to_jiffies(x))
134
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +0000135/* By default the driver will use the ring mode to manage tx and rx descriptors
136 * but passing this value so user can force to use the chain instead of the ring
137 */
138static unsigned int chain_mode;
139module_param(chain_mode, int, S_IRUGO);
140MODULE_PARM_DESC(chain_mode, "To use chain instead of ring mode");
141
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700142static irqreturn_t stmmac_interrupt(int irq, void *dev_id);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700143
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +0000144#ifdef CONFIG_STMMAC_DEBUG_FS
145static int stmmac_init_fs(struct net_device *dev);
146static void stmmac_exit_fs(void);
147#endif
148
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +0000149#define STMMAC_COAL_TIMER(x) (jiffies + usecs_to_jiffies(x))
150
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700151/**
152 * stmmac_verify_args - verify the driver parameters.
153 * Description: it verifies if some wrong parameter is passed to the driver.
154 * Note that wrong parameters are replaced with the default values.
155 */
156static void stmmac_verify_args(void)
157{
158 if (unlikely(watchdog < 0))
159 watchdog = TX_TIMEO;
160 if (unlikely(dma_rxsize < 0))
161 dma_rxsize = DMA_RX_SIZE;
162 if (unlikely(dma_txsize < 0))
163 dma_txsize = DMA_TX_SIZE;
164 if (unlikely((buf_sz < DMA_BUFFER_SIZE) || (buf_sz > BUF_SIZE_16KiB)))
165 buf_sz = DMA_BUFFER_SIZE;
166 if (unlikely(flow_ctrl > 1))
167 flow_ctrl = FLOW_AUTO;
168 else if (likely(flow_ctrl < 0))
169 flow_ctrl = FLOW_OFF;
170 if (unlikely((pause < 0) || (pause > 0xffff)))
171 pause = PAUSE_TIME;
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000172 if (eee_timer < 0)
173 eee_timer = STMMAC_DEFAULT_LPI_TIMER;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700174}
175
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000176/**
177 * stmmac_clk_csr_set - dynamically set the MDC clock
178 * @priv: driver private structure
179 * Description: this is to dynamically set the MDC clock according to the csr
180 * clock input.
181 * Note:
182 * If a specific clk_csr value is passed from the platform
183 * this means that the CSR Clock Range selection cannot be
184 * changed at run-time and it is fixed (as reported in the driver
185 * documentation). Viceversa the driver will try to set the MDC
186 * clock dynamically according to the actual clock input.
187 */
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +0000188static void stmmac_clk_csr_set(struct stmmac_priv *priv)
189{
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +0000190 u32 clk_rate;
191
192 clk_rate = clk_get_rate(priv->stmmac_clk);
193
194 /* Platform provided default clk_csr would be assumed valid
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000195 * for all other cases except for the below mentioned ones.
196 * For values higher than the IEEE 802.3 specified frequency
197 * we can not estimate the proper divider as it is not known
198 * the frequency of clk_csr_i. So we do not change the default
199 * divider.
200 */
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +0000201 if (!(priv->clk_csr & MAC_CSR_H_FRQ_MASK)) {
202 if (clk_rate < CSR_F_35M)
203 priv->clk_csr = STMMAC_CSR_20_35M;
204 else if ((clk_rate >= CSR_F_35M) && (clk_rate < CSR_F_60M))
205 priv->clk_csr = STMMAC_CSR_35_60M;
206 else if ((clk_rate >= CSR_F_60M) && (clk_rate < CSR_F_100M))
207 priv->clk_csr = STMMAC_CSR_60_100M;
208 else if ((clk_rate >= CSR_F_100M) && (clk_rate < CSR_F_150M))
209 priv->clk_csr = STMMAC_CSR_100_150M;
210 else if ((clk_rate >= CSR_F_150M) && (clk_rate < CSR_F_250M))
211 priv->clk_csr = STMMAC_CSR_150_250M;
212 else if ((clk_rate >= CSR_F_250M) && (clk_rate < CSR_F_300M))
213 priv->clk_csr = STMMAC_CSR_250_300M;
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000214 }
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +0000215}
216
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700217#if defined(STMMAC_XMIT_DEBUG) || defined(STMMAC_RX_DEBUG)
218static void print_pkt(unsigned char *buf, int len)
219{
220 int j;
221 pr_info("len = %d byte, buf addr: 0x%p", len, buf);
222 for (j = 0; j < len; j++) {
223 if ((j % 16) == 0)
224 pr_info("\n %03x:", j);
225 pr_info(" %02x", buf[j]);
226 }
227 pr_info("\n");
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700228}
229#endif
230
231/* minimum number of free TX descriptors required to wake up TX process */
232#define STMMAC_TX_THRESH(x) (x->dma_tx_size/4)
233
234static inline u32 stmmac_tx_avail(struct stmmac_priv *priv)
235{
236 return priv->dirty_tx + priv->dma_tx_size - priv->cur_tx - 1;
237}
238
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000239/**
240 * stmmac_hw_fix_mac_speed: callback for speed selection
241 * @priv: driver private structure
242 * Description: on some platforms (e.g. ST), some HW system configuraton
243 * registers have to be set according to the link speed negotiated.
Giuseppe CAVALLARO9dfeb4d2010-11-24 02:37:58 +0000244 */
245static inline void stmmac_hw_fix_mac_speed(struct stmmac_priv *priv)
246{
247 struct phy_device *phydev = priv->phydev;
248
249 if (likely(priv->plat->fix_mac_speed))
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000250 priv->plat->fix_mac_speed(priv->plat->bsp_priv, phydev->speed);
Giuseppe CAVALLARO9dfeb4d2010-11-24 02:37:58 +0000251}
252
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000253/**
254 * stmmac_enable_eee_mode: Check and enter in LPI mode
255 * @priv: driver private structure
256 * Description: this function is to verify and enter in LPI mode for EEE.
257 */
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000258static void stmmac_enable_eee_mode(struct stmmac_priv *priv)
259{
260 /* Check and enter in LPI mode */
261 if ((priv->dirty_tx == priv->cur_tx) &&
262 (priv->tx_path_in_lpi_mode == false))
263 priv->hw->mac->set_eee_mode(priv->ioaddr);
264}
265
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000266/**
267 * stmmac_disable_eee_mode: disable/exit from EEE
268 * @priv: driver private structure
269 * Description: this function is to exit and disable EEE in case of
270 * LPI state is true. This is called by the xmit.
271 */
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000272void stmmac_disable_eee_mode(struct stmmac_priv *priv)
273{
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000274 priv->hw->mac->reset_eee_mode(priv->ioaddr);
275 del_timer_sync(&priv->eee_ctrl_timer);
276 priv->tx_path_in_lpi_mode = false;
277}
278
279/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000280 * stmmac_eee_ctrl_timer: EEE TX SW timer.
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000281 * @arg : data hook
282 * Description:
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000283 * if there is no data transfer and if we are not in LPI state,
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000284 * then MAC Transmitter can be moved to LPI state.
285 */
286static void stmmac_eee_ctrl_timer(unsigned long arg)
287{
288 struct stmmac_priv *priv = (struct stmmac_priv *)arg;
289
290 stmmac_enable_eee_mode(priv);
291 mod_timer(&priv->eee_ctrl_timer, STMMAC_LPI_TIMER(eee_timer));
292}
293
294/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000295 * stmmac_eee_init: init EEE
296 * @priv: driver private structure
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000297 * Description:
298 * If the EEE support has been enabled while configuring the driver,
299 * if the GMAC actually supports the EEE (from the HW cap reg) and the
300 * phy can also manage EEE, so enable the LPI state and start the timer
301 * to verify if the tx path can enter in LPI state.
302 */
303bool stmmac_eee_init(struct stmmac_priv *priv)
304{
305 bool ret = false;
306
307 /* MAC core supports the EEE feature. */
308 if (priv->dma_cap.eee) {
309 /* Check if the PHY supports EEE */
310 if (phy_init_eee(priv->phydev, 1))
311 goto out;
312
313 priv->eee_active = 1;
314 init_timer(&priv->eee_ctrl_timer);
315 priv->eee_ctrl_timer.function = stmmac_eee_ctrl_timer;
316 priv->eee_ctrl_timer.data = (unsigned long)priv;
317 priv->eee_ctrl_timer.expires = STMMAC_LPI_TIMER(eee_timer);
318 add_timer(&priv->eee_ctrl_timer);
319
320 priv->hw->mac->set_eee_timer(priv->ioaddr,
321 STMMAC_DEFAULT_LIT_LS_TIMER,
322 priv->tx_lpi_timer);
323
324 pr_info("stmmac: Energy-Efficient Ethernet initialized\n");
325
326 ret = true;
327 }
328out:
329 return ret;
330}
331
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000332/**
333 * stmmac_eee_adjust: adjust HW EEE according to the speed
334 * @priv: driver private structure
335 * Description:
336 * When the EEE has been already initialised we have to
337 * modify the PLS bit in the LPI ctrl & status reg according
338 * to the PHY link status. For this reason.
339 */
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000340static void stmmac_eee_adjust(struct stmmac_priv *priv)
341{
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000342 if (priv->eee_enabled)
343 priv->hw->mac->set_eee_pls(priv->ioaddr, priv->phydev->link);
344}
345
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000346/* stmmac_get_tx_hwtstamp: get HW TX timestamps
347 * @priv: driver private structure
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000348 * @entry : descriptor index to be used.
349 * @skb : the socket buffer
350 * Description :
351 * This function will read timestamp from the descriptor & pass it to stack.
352 * and also perform some sanity checks.
353 */
354static void stmmac_get_tx_hwtstamp(struct stmmac_priv *priv,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000355 unsigned int entry, struct sk_buff *skb)
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000356{
357 struct skb_shared_hwtstamps shhwtstamp;
358 u64 ns;
359 void *desc = NULL;
360
361 if (!priv->hwts_tx_en)
362 return;
363
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000364 /* exit if skb doesn't support hw tstamp */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000365 if (likely(!(skb_shinfo(skb)->tx_flags & SKBTX_IN_PROGRESS)))
366 return;
367
368 if (priv->adv_ts)
369 desc = (priv->dma_etx + entry);
370 else
371 desc = (priv->dma_tx + entry);
372
373 /* check tx tstamp status */
374 if (!priv->hw->desc->get_tx_timestamp_status((struct dma_desc *)desc))
375 return;
376
377 /* get the valid tstamp */
378 ns = priv->hw->desc->get_timestamp(desc, priv->adv_ts);
379
380 memset(&shhwtstamp, 0, sizeof(struct skb_shared_hwtstamps));
381 shhwtstamp.hwtstamp = ns_to_ktime(ns);
382 /* pass tstamp to stack */
383 skb_tstamp_tx(skb, &shhwtstamp);
384
385 return;
386}
387
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000388/* stmmac_get_rx_hwtstamp: get HW RX timestamps
389 * @priv: driver private structure
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000390 * @entry : descriptor index to be used.
391 * @skb : the socket buffer
392 * Description :
393 * This function will read received packet's timestamp from the descriptor
394 * and pass it to stack. It also perform some sanity checks.
395 */
396static void stmmac_get_rx_hwtstamp(struct stmmac_priv *priv,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000397 unsigned int entry, struct sk_buff *skb)
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000398{
399 struct skb_shared_hwtstamps *shhwtstamp = NULL;
400 u64 ns;
401 void *desc = NULL;
402
403 if (!priv->hwts_rx_en)
404 return;
405
406 if (priv->adv_ts)
407 desc = (priv->dma_erx + entry);
408 else
409 desc = (priv->dma_rx + entry);
410
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000411 /* exit if rx tstamp is not valid */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000412 if (!priv->hw->desc->get_rx_timestamp_status(desc, priv->adv_ts))
413 return;
414
415 /* get valid tstamp */
416 ns = priv->hw->desc->get_timestamp(desc, priv->adv_ts);
417 shhwtstamp = skb_hwtstamps(skb);
418 memset(shhwtstamp, 0, sizeof(struct skb_shared_hwtstamps));
419 shhwtstamp->hwtstamp = ns_to_ktime(ns);
420}
421
422/**
423 * stmmac_hwtstamp_ioctl - control hardware timestamping.
424 * @dev: device pointer.
425 * @ifr: An IOCTL specefic structure, that can contain a pointer to
426 * a proprietary structure used to pass information to the driver.
427 * Description:
428 * This function configures the MAC to enable/disable both outgoing(TX)
429 * and incoming(RX) packets time stamping based on user input.
430 * Return Value:
431 * 0 on success and an appropriate -ve integer on failure.
432 */
433static int stmmac_hwtstamp_ioctl(struct net_device *dev, struct ifreq *ifr)
434{
435 struct stmmac_priv *priv = netdev_priv(dev);
436 struct hwtstamp_config config;
437 struct timespec now;
438 u64 temp = 0;
439 u32 ptp_v2 = 0;
440 u32 tstamp_all = 0;
441 u32 ptp_over_ipv4_udp = 0;
442 u32 ptp_over_ipv6_udp = 0;
443 u32 ptp_over_ethernet = 0;
444 u32 snap_type_sel = 0;
445 u32 ts_master_en = 0;
446 u32 ts_event_en = 0;
447 u32 value = 0;
448
449 if (!(priv->dma_cap.time_stamp || priv->adv_ts)) {
450 netdev_alert(priv->dev, "No support for HW time stamping\n");
451 priv->hwts_tx_en = 0;
452 priv->hwts_rx_en = 0;
453
454 return -EOPNOTSUPP;
455 }
456
457 if (copy_from_user(&config, ifr->ifr_data,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000458 sizeof(struct hwtstamp_config)))
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000459 return -EFAULT;
460
461 pr_debug("%s config flags:0x%x, tx_type:0x%x, rx_filter:0x%x\n",
462 __func__, config.flags, config.tx_type, config.rx_filter);
463
464 /* reserved for future extensions */
465 if (config.flags)
466 return -EINVAL;
467
468 switch (config.tx_type) {
469 case HWTSTAMP_TX_OFF:
470 priv->hwts_tx_en = 0;
471 break;
472 case HWTSTAMP_TX_ON:
473 priv->hwts_tx_en = 1;
474 break;
475 default:
476 return -ERANGE;
477 }
478
479 if (priv->adv_ts) {
480 switch (config.rx_filter) {
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000481 case HWTSTAMP_FILTER_NONE:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000482 /* time stamp no incoming packet at all */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000483 config.rx_filter = HWTSTAMP_FILTER_NONE;
484 break;
485
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000486 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000487 /* PTP v1, UDP, any kind of event packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000488 config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
489 /* take time stamp for all event messages */
490 snap_type_sel = PTP_TCR_SNAPTYPSEL_1;
491
492 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
493 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
494 break;
495
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000496 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000497 /* PTP v1, UDP, Sync packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000498 config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_SYNC;
499 /* take time stamp for SYNC messages only */
500 ts_event_en = PTP_TCR_TSEVNTENA;
501
502 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
503 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
504 break;
505
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000506 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000507 /* PTP v1, UDP, Delay_req packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000508 config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ;
509 /* take time stamp for Delay_Req messages only */
510 ts_master_en = PTP_TCR_TSMSTRENA;
511 ts_event_en = PTP_TCR_TSEVNTENA;
512
513 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
514 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
515 break;
516
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000517 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000518 /* PTP v2, UDP, any kind of event packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000519 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_EVENT;
520 ptp_v2 = PTP_TCR_TSVER2ENA;
521 /* take time stamp for all event messages */
522 snap_type_sel = PTP_TCR_SNAPTYPSEL_1;
523
524 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
525 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
526 break;
527
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000528 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000529 /* PTP v2, UDP, Sync packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000530 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_SYNC;
531 ptp_v2 = PTP_TCR_TSVER2ENA;
532 /* take time stamp for SYNC messages only */
533 ts_event_en = PTP_TCR_TSEVNTENA;
534
535 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
536 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
537 break;
538
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000539 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000540 /* PTP v2, UDP, Delay_req packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000541 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ;
542 ptp_v2 = PTP_TCR_TSVER2ENA;
543 /* take time stamp for Delay_Req messages only */
544 ts_master_en = PTP_TCR_TSMSTRENA;
545 ts_event_en = PTP_TCR_TSEVNTENA;
546
547 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
548 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
549 break;
550
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000551 case HWTSTAMP_FILTER_PTP_V2_EVENT:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000552 /* PTP v2/802.AS1 any layer, any kind of event packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000553 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
554 ptp_v2 = PTP_TCR_TSVER2ENA;
555 /* take time stamp for all event messages */
556 snap_type_sel = PTP_TCR_SNAPTYPSEL_1;
557
558 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
559 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
560 ptp_over_ethernet = PTP_TCR_TSIPENA;
561 break;
562
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000563 case HWTSTAMP_FILTER_PTP_V2_SYNC:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000564 /* PTP v2/802.AS1, any layer, Sync packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000565 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_SYNC;
566 ptp_v2 = PTP_TCR_TSVER2ENA;
567 /* take time stamp for SYNC messages only */
568 ts_event_en = PTP_TCR_TSEVNTENA;
569
570 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
571 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
572 ptp_over_ethernet = PTP_TCR_TSIPENA;
573 break;
574
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000575 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000576 /* PTP v2/802.AS1, any layer, Delay_req packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000577 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_DELAY_REQ;
578 ptp_v2 = PTP_TCR_TSVER2ENA;
579 /* take time stamp for Delay_Req messages only */
580 ts_master_en = PTP_TCR_TSMSTRENA;
581 ts_event_en = PTP_TCR_TSEVNTENA;
582
583 ptp_over_ipv4_udp = PTP_TCR_TSIPV4ENA;
584 ptp_over_ipv6_udp = PTP_TCR_TSIPV6ENA;
585 ptp_over_ethernet = PTP_TCR_TSIPENA;
586 break;
587
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000588 case HWTSTAMP_FILTER_ALL:
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000589 /* time stamp any incoming packet */
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000590 config.rx_filter = HWTSTAMP_FILTER_ALL;
591 tstamp_all = PTP_TCR_TSENALL;
592 break;
593
594 default:
595 return -ERANGE;
596 }
597 } else {
598 switch (config.rx_filter) {
599 case HWTSTAMP_FILTER_NONE:
600 config.rx_filter = HWTSTAMP_FILTER_NONE;
601 break;
602 default:
603 /* PTP v1, UDP, any kind of event packet */
604 config.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
605 break;
606 }
607 }
608 priv->hwts_rx_en = ((config.rx_filter == HWTSTAMP_FILTER_NONE) ? 0 : 1);
609
610 if (!priv->hwts_tx_en && !priv->hwts_rx_en)
611 priv->hw->ptp->config_hw_tstamping(priv->ioaddr, 0);
612 else {
613 value = (PTP_TCR_TSENA | PTP_TCR_TSCFUPDT | PTP_TCR_TSCTRLSSR |
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000614 tstamp_all | ptp_v2 | ptp_over_ethernet |
615 ptp_over_ipv6_udp | ptp_over_ipv4_udp | ts_event_en |
616 ts_master_en | snap_type_sel);
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000617
618 priv->hw->ptp->config_hw_tstamping(priv->ioaddr, value);
619
620 /* program Sub Second Increment reg */
621 priv->hw->ptp->config_sub_second_increment(priv->ioaddr);
622
623 /* calculate default added value:
624 * formula is :
625 * addend = (2^32)/freq_div_ratio;
626 * where, freq_div_ratio = STMMAC_SYSCLOCK/50MHz
627 * hence, addend = ((2^32) * 50MHz)/STMMAC_SYSCLOCK;
628 * NOTE: STMMAC_SYSCLOCK should be >= 50MHz to
629 * achive 20ns accuracy.
630 *
631 * 2^x * y == (y << x), hence
632 * 2^32 * 50000000 ==> (50000000 << 32)
633 */
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000634 temp = (u64) (50000000ULL << 32);
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000635 priv->default_addend = div_u64(temp, STMMAC_SYSCLOCK);
636 priv->hw->ptp->config_addend(priv->ioaddr,
637 priv->default_addend);
638
639 /* initialize system time */
640 getnstimeofday(&now);
641 priv->hw->ptp->init_systime(priv->ioaddr, now.tv_sec,
642 now.tv_nsec);
643 }
644
645 return copy_to_user(ifr->ifr_data, &config,
646 sizeof(struct hwtstamp_config)) ? -EFAULT : 0;
647}
648
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000649/**
650 * stmmac_init_ptp: init PTP
651 * @priv: driver private structure
652 * Description: this is to verify if the HW supports the PTPv1 or v2.
653 * This is done by looking at the HW cap. register.
654 * Also it registers the ptp driver.
655 */
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +0000656static int stmmac_init_ptp(struct stmmac_priv *priv)
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000657{
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +0000658 if (!(priv->dma_cap.time_stamp || priv->dma_cap.atime_stamp))
659 return -EOPNOTSUPP;
660
661 if (netif_msg_hw(priv)) {
662 if (priv->dma_cap.time_stamp) {
663 pr_debug("IEEE 1588-2002 Time Stamp supported\n");
664 priv->adv_ts = 0;
665 }
666 if (priv->dma_cap.atime_stamp && priv->extend_desc) {
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000667 pr_debug
668 ("IEEE 1588-2008 Advanced Time Stamp supported\n");
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +0000669 priv->adv_ts = 1;
670 }
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000671 }
672
673 priv->hw->ptp = &stmmac_ptp;
674 priv->hwts_tx_en = 0;
675 priv->hwts_rx_en = 0;
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +0000676
677 return stmmac_ptp_register(priv);
678}
679
680static void stmmac_release_ptp(struct stmmac_priv *priv)
681{
682 stmmac_ptp_unregister(priv);
Rayagond Kokatanur891434b2013-03-26 04:43:10 +0000683}
684
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700685/**
686 * stmmac_adjust_link
687 * @dev: net device structure
688 * Description: it adjusts the link parameters.
689 */
690static void stmmac_adjust_link(struct net_device *dev)
691{
692 struct stmmac_priv *priv = netdev_priv(dev);
693 struct phy_device *phydev = priv->phydev;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700694 unsigned long flags;
695 int new_state = 0;
696 unsigned int fc = priv->flow_ctrl, pause_time = priv->pause;
697
698 if (phydev == NULL)
699 return;
700
701 DBG(probe, DEBUG, "stmmac_adjust_link: called. address %d link %d\n",
702 phydev->addr, phydev->link);
703
704 spin_lock_irqsave(&priv->lock, flags);
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000705
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700706 if (phydev->link) {
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000707 u32 ctrl = readl(priv->ioaddr + MAC_CTRL_REG);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700708
709 /* Now we make sure that we can be in full duplex mode.
710 * If not, we operate in half-duplex mode. */
711 if (phydev->duplex != priv->oldduplex) {
712 new_state = 1;
713 if (!(phydev->duplex))
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000714 ctrl &= ~priv->hw->link.duplex;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700715 else
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000716 ctrl |= priv->hw->link.duplex;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700717 priv->oldduplex = phydev->duplex;
718 }
719 /* Flow Control operation */
720 if (phydev->pause)
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000721 priv->hw->mac->flow_ctrl(priv->ioaddr, phydev->duplex,
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000722 fc, pause_time);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700723
724 if (phydev->speed != priv->speed) {
725 new_state = 1;
726 switch (phydev->speed) {
727 case 1000:
Giuseppe CAVALLARO9dfeb4d2010-11-24 02:37:58 +0000728 if (likely(priv->plat->has_gmac))
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000729 ctrl &= ~priv->hw->link.port;
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000730 stmmac_hw_fix_mac_speed(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700731 break;
732 case 100:
733 case 10:
Giuseppe CAVALLARO9dfeb4d2010-11-24 02:37:58 +0000734 if (priv->plat->has_gmac) {
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000735 ctrl |= priv->hw->link.port;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700736 if (phydev->speed == SPEED_100) {
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000737 ctrl |= priv->hw->link.speed;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700738 } else {
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000739 ctrl &= ~(priv->hw->link.speed);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700740 }
741 } else {
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +0000742 ctrl &= ~priv->hw->link.port;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700743 }
Giuseppe CAVALLARO9dfeb4d2010-11-24 02:37:58 +0000744 stmmac_hw_fix_mac_speed(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700745 break;
746 default:
747 if (netif_msg_link(priv))
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000748 pr_warn("%s: Speed (%d) not 10/100\n",
749 dev->name, phydev->speed);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700750 break;
751 }
752
753 priv->speed = phydev->speed;
754 }
755
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +0000756 writel(ctrl, priv->ioaddr + MAC_CTRL_REG);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700757
758 if (!priv->oldlink) {
759 new_state = 1;
760 priv->oldlink = 1;
761 }
762 } else if (priv->oldlink) {
763 new_state = 1;
764 priv->oldlink = 0;
765 priv->speed = 0;
766 priv->oldduplex = -1;
767 }
768
769 if (new_state && netif_msg_link(priv))
770 phy_print_status(phydev);
771
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000772 stmmac_eee_adjust(priv);
773
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700774 spin_unlock_irqrestore(&priv->lock, flags);
775
776 DBG(probe, DEBUG, "stmmac_adjust_link: exiting\n");
777}
778
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000779/**
780 * stmmac_check_pcs_mode: verify if RGMII/SGMII is supported
781 * @priv: driver private structure
782 * Description: this is to verify if the HW supports the PCS.
783 * Physical Coding Sublayer (PCS) interface that can be used when the MAC is
784 * configured for the TBI, RTBI, or SGMII PHY interface.
785 */
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +0000786static void stmmac_check_pcs_mode(struct stmmac_priv *priv)
787{
788 int interface = priv->plat->interface;
789
790 if (priv->dma_cap.pcs) {
791 if ((interface & PHY_INTERFACE_MODE_RGMII) ||
792 (interface & PHY_INTERFACE_MODE_RGMII_ID) ||
793 (interface & PHY_INTERFACE_MODE_RGMII_RXID) ||
794 (interface & PHY_INTERFACE_MODE_RGMII_TXID)) {
795 pr_debug("STMMAC: PCS RGMII support enable\n");
796 priv->pcs = STMMAC_PCS_RGMII;
797 } else if (interface & PHY_INTERFACE_MODE_SGMII) {
798 pr_debug("STMMAC: PCS SGMII support enable\n");
799 priv->pcs = STMMAC_PCS_SGMII;
800 }
801 }
802}
803
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700804/**
805 * stmmac_init_phy - PHY initialization
806 * @dev: net device structure
807 * Description: it initializes the driver's PHY state, and attaches the PHY
808 * to the mac driver.
809 * Return value:
810 * 0 on success
811 */
812static int stmmac_init_phy(struct net_device *dev)
813{
814 struct stmmac_priv *priv = netdev_priv(dev);
815 struct phy_device *phydev;
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000816 char phy_id_fmt[MII_BUS_ID_SIZE + 3];
Giuseppe CAVALLARO109cdd62010-01-06 23:07:11 +0000817 char bus_id[MII_BUS_ID_SIZE];
Srinivas Kandagatla79ee1dc2011-10-18 00:01:18 +0000818 int interface = priv->plat->interface;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700819 priv->oldlink = 0;
820 priv->speed = 0;
821 priv->oldduplex = -1;
822
Srinivas Kandagatlaf142af22012-04-04 04:33:19 +0000823 if (priv->plat->phy_bus_name)
824 snprintf(bus_id, MII_BUS_ID_SIZE, "%s-%x",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000825 priv->plat->phy_bus_name, priv->plat->bus_id);
Srinivas Kandagatlaf142af22012-04-04 04:33:19 +0000826 else
827 snprintf(bus_id, MII_BUS_ID_SIZE, "stmmac-%x",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000828 priv->plat->bus_id);
Srinivas Kandagatlaf142af22012-04-04 04:33:19 +0000829
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000830 snprintf(phy_id_fmt, MII_BUS_ID_SIZE + 3, PHY_ID_FMT, bus_id,
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000831 priv->plat->phy_addr);
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +0000832 pr_debug("stmmac_init_phy: trying to attach to %s\n", phy_id_fmt);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700833
Florian Fainellif9a8f832013-01-14 00:52:52 +0000834 phydev = phy_connect(dev, phy_id_fmt, &stmmac_adjust_link, interface);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700835
836 if (IS_ERR(phydev)) {
837 pr_err("%s: Could not attach to PHY\n", dev->name);
838 return PTR_ERR(phydev);
839 }
840
Srinivas Kandagatla79ee1dc2011-10-18 00:01:18 +0000841 /* Stop Advertising 1000BASE Capability if interface is not GMII */
Srinivas Kandagatlac5b9b4e2011-11-16 21:57:59 +0000842 if ((interface == PHY_INTERFACE_MODE_MII) ||
843 (interface == PHY_INTERFACE_MODE_RMII))
844 phydev->advertising &= ~(SUPPORTED_1000baseT_Half |
845 SUPPORTED_1000baseT_Full);
Srinivas Kandagatla79ee1dc2011-10-18 00:01:18 +0000846
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700847 /*
848 * Broken HW is sometimes missing the pull-up resistor on the
849 * MDIO line, which results in reads to non-existent devices returning
850 * 0 rather than 0xffff. Catch this here and treat 0 as a non-existent
851 * device as well.
852 * Note: phydev->phy_id is the result of reading the UID PHY registers.
853 */
854 if (phydev->phy_id == 0) {
855 phy_disconnect(phydev);
856 return -ENODEV;
857 }
858 pr_debug("stmmac_init_phy: %s: attached to PHY (UID 0x%x)"
Giuseppe CAVALLARO36bcfe72011-07-20 00:05:23 +0000859 " Link = %d\n", dev->name, phydev->phy_id, phydev->link);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700860
861 priv->phydev = phydev;
862
863 return 0;
864}
865
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700866/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000867 * stmmac_display_ring: display ring
868 * @head: pointer to the head of the ring passed.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700869 * @size: size of the ring.
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000870 * @extend_desc: to verify if extended descriptors are used.
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000871 * Description: display the control/status and buffer descriptors.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700872 */
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000873static void stmmac_display_ring(void *head, int size, int extend_desc)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700874{
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700875 int i;
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000876 struct dma_extended_desc *ep = (struct dma_extended_desc *)head;
877 struct dma_desc *p = (struct dma_desc *)head;
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000878
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700879 for (i = 0; i < size; i++) {
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000880 u64 x;
881 if (extend_desc) {
882 x = *(u64 *) ep;
883 pr_info("%d [0x%x]: 0x%x 0x%x 0x%x 0x%x\n",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000884 i, (unsigned int)virt_to_phys(ep),
885 (unsigned int)x, (unsigned int)(x >> 32),
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000886 ep->basic.des2, ep->basic.des3);
887 ep++;
888 } else {
889 x = *(u64 *) p;
890 pr_info("%d [0x%x]: 0x%x 0x%x 0x%x 0x%x",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000891 i, (unsigned int)virt_to_phys(p),
892 (unsigned int)x, (unsigned int)(x >> 32),
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000893 p->des2, p->des3);
894 p++;
895 }
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700896 pr_info("\n");
897 }
898}
899
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000900static void stmmac_display_rings(struct stmmac_priv *priv)
901{
902 unsigned int txsize = priv->dma_tx_size;
903 unsigned int rxsize = priv->dma_rx_size;
904
905 if (priv->extend_desc) {
906 pr_info("Extended RX descriptor ring:\n");
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000907 stmmac_display_ring((void *)priv->dma_erx, rxsize, 1);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000908 pr_info("Extended TX descriptor ring:\n");
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +0000909 stmmac_display_ring((void *)priv->dma_etx, txsize, 1);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000910 } else {
911 pr_info("RX descriptor ring:\n");
912 stmmac_display_ring((void *)priv->dma_rx, rxsize, 0);
913 pr_info("TX descriptor ring:\n");
914 stmmac_display_ring((void *)priv->dma_tx, txsize, 0);
915 }
916}
917
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +0000918static int stmmac_set_bfsize(int mtu, int bufsize)
919{
920 int ret = bufsize;
921
922 if (mtu >= BUF_SIZE_4KiB)
923 ret = BUF_SIZE_8KiB;
924 else if (mtu >= BUF_SIZE_2KiB)
925 ret = BUF_SIZE_4KiB;
926 else if (mtu >= DMA_BUFFER_SIZE)
927 ret = BUF_SIZE_2KiB;
928 else
929 ret = DMA_BUFFER_SIZE;
930
931 return ret;
932}
933
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +0000934/**
935 * stmmac_clear_descriptors: clear descriptors
936 * @priv: driver private structure
937 * Description: this function is called to clear the tx and rx descriptors
938 * in case of both basic and extended descriptors are used.
939 */
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +0000940static void stmmac_clear_descriptors(struct stmmac_priv *priv)
941{
942 int i;
943 unsigned int txsize = priv->dma_tx_size;
944 unsigned int rxsize = priv->dma_rx_size;
945
946 /* Clear the Rx/Tx descriptors */
947 for (i = 0; i < rxsize; i++)
948 if (priv->extend_desc)
949 priv->hw->desc->init_rx_desc(&priv->dma_erx[i].basic,
950 priv->use_riwt, priv->mode,
951 (i == rxsize - 1));
952 else
953 priv->hw->desc->init_rx_desc(&priv->dma_rx[i],
954 priv->use_riwt, priv->mode,
955 (i == rxsize - 1));
956 for (i = 0; i < txsize; i++)
957 if (priv->extend_desc)
958 priv->hw->desc->init_tx_desc(&priv->dma_etx[i].basic,
959 priv->mode,
960 (i == txsize - 1));
961 else
962 priv->hw->desc->init_tx_desc(&priv->dma_tx[i],
963 priv->mode,
964 (i == txsize - 1));
965}
966
967static int stmmac_init_rx_buffers(struct stmmac_priv *priv, struct dma_desc *p,
968 int i)
969{
970 struct sk_buff *skb;
971
972 skb = __netdev_alloc_skb(priv->dev, priv->dma_buf_sz + NET_IP_ALIGN,
973 GFP_KERNEL);
974 if (unlikely(skb == NULL)) {
975 pr_err("%s: Rx init fails; skb is NULL\n", __func__);
976 return 1;
977 }
978 skb_reserve(skb, NET_IP_ALIGN);
979 priv->rx_skbuff[i] = skb;
980 priv->rx_skbuff_dma[i] = dma_map_single(priv->device, skb->data,
981 priv->dma_buf_sz,
982 DMA_FROM_DEVICE);
983
984 p->des2 = priv->rx_skbuff_dma[i];
985
986 if ((priv->mode == STMMAC_RING_MODE) &&
987 (priv->dma_buf_sz == BUF_SIZE_16KiB))
988 priv->hw->ring->init_desc3(p);
989
990 return 0;
991}
992
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700993/**
994 * init_dma_desc_rings - init the RX/TX descriptor rings
995 * @dev: net device structure
996 * Description: this function initializes the DMA RX/TX descriptors
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +0000997 * and allocates the socket buffers. It suppors the chained and ring
998 * modes.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -0700999 */
1000static void init_dma_desc_rings(struct net_device *dev)
1001{
1002 int i;
1003 struct stmmac_priv *priv = netdev_priv(dev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001004 unsigned int txsize = priv->dma_tx_size;
1005 unsigned int rxsize = priv->dma_rx_size;
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001006 unsigned int bfsize = 0;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001007
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001008 /* Set the max buffer size according to the DESC mode
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001009 * and the MTU. Note that RING mode allows 16KiB bsize.
1010 */
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001011 if (priv->mode == STMMAC_RING_MODE)
1012 bfsize = priv->hw->ring->set_16kib_bfsize(dev->mtu);
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001013
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001014 if (bfsize < BUF_SIZE_16KiB)
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001015 bfsize = stmmac_set_bfsize(dev->mtu, priv->dma_buf_sz);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001016
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001017 DBG(probe, INFO, "stmmac: txsize %d, rxsize %d, bfsize %d\n",
1018 txsize, rxsize, bfsize);
1019
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001020 if (priv->extend_desc) {
1021 priv->dma_erx = dma_alloc_coherent(priv->device, rxsize *
1022 sizeof(struct
1023 dma_extended_desc),
1024 &priv->dma_rx_phy,
1025 GFP_KERNEL);
1026 priv->dma_etx = dma_alloc_coherent(priv->device, txsize *
1027 sizeof(struct
1028 dma_extended_desc),
1029 &priv->dma_tx_phy,
1030 GFP_KERNEL);
1031 if ((!priv->dma_erx) || (!priv->dma_etx))
1032 return;
1033 } else {
1034 priv->dma_rx = dma_alloc_coherent(priv->device, rxsize *
1035 sizeof(struct dma_desc),
1036 &priv->dma_rx_phy,
1037 GFP_KERNEL);
1038 priv->dma_tx = dma_alloc_coherent(priv->device, txsize *
1039 sizeof(struct dma_desc),
1040 &priv->dma_tx_phy,
1041 GFP_KERNEL);
1042 if ((!priv->dma_rx) || (!priv->dma_tx))
1043 return;
1044 }
1045
Joe Perchesb2adaca2013-02-03 17:43:58 +00001046 priv->rx_skbuff_dma = kmalloc_array(rxsize, sizeof(dma_addr_t),
1047 GFP_KERNEL);
1048 priv->rx_skbuff = kmalloc_array(rxsize, sizeof(struct sk_buff *),
1049 GFP_KERNEL);
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001050 priv->tx_skbuff_dma = kmalloc_array(txsize, sizeof(dma_addr_t),
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001051 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00001052 priv->tx_skbuff = kmalloc_array(txsize, sizeof(struct sk_buff *),
1053 GFP_KERNEL);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001054 if (netif_msg_drv(priv))
1055 pr_debug("(%s) dma_rx_phy=0x%08x dma_tx_phy=0x%08x\n", __func__,
1056 (u32) priv->dma_rx_phy, (u32) priv->dma_tx_phy);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001057
1058 /* RX INITIALIZATION */
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001059 DBG(probe, INFO, "stmmac: SKB addresses:\nskb\t\tskb data\tdma data\n");
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001060 for (i = 0; i < rxsize; i++) {
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001061 struct dma_desc *p;
1062 if (priv->extend_desc)
1063 p = &((priv->dma_erx + i)->basic);
1064 else
1065 p = priv->dma_rx + i;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001066
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001067 if (stmmac_init_rx_buffers(priv, p, i))
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001068 break;
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001069
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001070 DBG(probe, INFO, "[%p]\t[%p]\t[%x]\n", priv->rx_skbuff[i],
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001071 priv->rx_skbuff[i]->data, priv->rx_skbuff_dma[i]);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001072 }
1073 priv->cur_rx = 0;
1074 priv->dirty_rx = (unsigned int)(i - rxsize);
1075 priv->dma_buf_sz = bfsize;
1076 buf_sz = bfsize;
1077
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001078 /* Setup the chained descriptor addresses */
1079 if (priv->mode == STMMAC_CHAIN_MODE) {
1080 if (priv->extend_desc) {
1081 priv->hw->chain->init(priv->dma_erx, priv->dma_rx_phy,
1082 rxsize, 1);
1083 priv->hw->chain->init(priv->dma_etx, priv->dma_tx_phy,
1084 txsize, 1);
1085 } else {
1086 priv->hw->chain->init(priv->dma_rx, priv->dma_rx_phy,
1087 rxsize, 0);
1088 priv->hw->chain->init(priv->dma_tx, priv->dma_tx_phy,
1089 txsize, 0);
1090 }
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001091 }
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001092
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001093 /* TX INITIALIZATION */
1094 for (i = 0; i < txsize; i++) {
1095 struct dma_desc *p;
1096 if (priv->extend_desc)
1097 p = &((priv->dma_etx + i)->basic);
1098 else
1099 p = priv->dma_tx + i;
1100 p->des2 = 0;
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001101 priv->tx_skbuff_dma[i] = 0;
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001102 priv->tx_skbuff[i] = NULL;
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001103 }
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001104
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001105 priv->dirty_tx = 0;
1106 priv->cur_tx = 0;
1107
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001108 stmmac_clear_descriptors(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001109
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001110 if (netif_msg_hw(priv))
1111 stmmac_display_rings(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001112}
1113
1114static void dma_free_rx_skbufs(struct stmmac_priv *priv)
1115{
1116 int i;
1117
1118 for (i = 0; i < priv->dma_rx_size; i++) {
1119 if (priv->rx_skbuff[i]) {
1120 dma_unmap_single(priv->device, priv->rx_skbuff_dma[i],
1121 priv->dma_buf_sz, DMA_FROM_DEVICE);
1122 dev_kfree_skb_any(priv->rx_skbuff[i]);
1123 }
1124 priv->rx_skbuff[i] = NULL;
1125 }
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001126}
1127
1128static void dma_free_tx_skbufs(struct stmmac_priv *priv)
1129{
1130 int i;
1131
1132 for (i = 0; i < priv->dma_tx_size; i++) {
1133 if (priv->tx_skbuff[i] != NULL) {
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001134 struct dma_desc *p;
1135 if (priv->extend_desc)
1136 p = &((priv->dma_etx + i)->basic);
1137 else
1138 p = priv->dma_tx + i;
1139
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001140 if (priv->tx_skbuff_dma[i])
1141 dma_unmap_single(priv->device,
1142 priv->tx_skbuff_dma[i],
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +00001143 priv->hw->desc->get_tx_len(p),
1144 DMA_TO_DEVICE);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001145 dev_kfree_skb_any(priv->tx_skbuff[i]);
1146 priv->tx_skbuff[i] = NULL;
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001147 priv->tx_skbuff_dma[i] = 0;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001148 }
1149 }
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001150}
1151
1152static void free_dma_desc_resources(struct stmmac_priv *priv)
1153{
1154 /* Release the DMA TX/RX socket buffers */
1155 dma_free_rx_skbufs(priv);
1156 dma_free_tx_skbufs(priv);
1157
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001158 /* Free DMA regions of consistent memory previously allocated */
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001159 if (!priv->extend_desc) {
1160 dma_free_coherent(priv->device,
1161 priv->dma_tx_size * sizeof(struct dma_desc),
1162 priv->dma_tx, priv->dma_tx_phy);
1163 dma_free_coherent(priv->device,
1164 priv->dma_rx_size * sizeof(struct dma_desc),
1165 priv->dma_rx, priv->dma_rx_phy);
1166 } else {
1167 dma_free_coherent(priv->device, priv->dma_tx_size *
1168 sizeof(struct dma_extended_desc),
1169 priv->dma_etx, priv->dma_tx_phy);
1170 dma_free_coherent(priv->device, priv->dma_rx_size *
1171 sizeof(struct dma_extended_desc),
1172 priv->dma_erx, priv->dma_rx_phy);
1173 }
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001174 kfree(priv->rx_skbuff_dma);
1175 kfree(priv->rx_skbuff);
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001176 kfree(priv->tx_skbuff_dma);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001177 kfree(priv->tx_skbuff);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001178}
1179
1180/**
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001181 * stmmac_dma_operation_mode - HW DMA operation mode
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001182 * @priv: driver private structure
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001183 * Description: it sets the DMA operation mode: tx/rx DMA thresholds
Giuseppe CAVALLAROebbb2932010-09-17 03:23:40 +00001184 * or Store-And-Forward capability.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001185 */
1186static void stmmac_dma_operation_mode(struct stmmac_priv *priv)
1187{
Srinivas Kandagatla61b80132011-07-17 20:54:09 +00001188 if (likely(priv->plat->force_sf_dma_mode ||
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001189 ((priv->plat->tx_coe) && (!priv->no_csum_insertion)))) {
Srinivas Kandagatla61b80132011-07-17 20:54:09 +00001190 /*
1191 * In case of GMAC, SF mode can be enabled
1192 * to perform the TX COE in HW. This depends on:
Giuseppe CAVALLAROebbb2932010-09-17 03:23:40 +00001193 * 1) TX COE if actually supported
1194 * 2) There is no bugged Jumbo frame support
1195 * that needs to not insert csum in the TDES.
1196 */
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001197 priv->hw->dma->dma_mode(priv->ioaddr, SF_DMA_MODE, SF_DMA_MODE);
Giuseppe CAVALLAROebbb2932010-09-17 03:23:40 +00001198 tc = SF_DMA_MODE;
1199 } else
1200 priv->hw->dma->dma_mode(priv->ioaddr, tc, SF_DMA_MODE);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001201}
1202
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001203/**
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001204 * stmmac_tx_clean:
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001205 * @priv: driver private structure
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001206 * Description: it reclaims resources after transmission completes.
1207 */
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001208static void stmmac_tx_clean(struct stmmac_priv *priv)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001209{
1210 unsigned int txsize = priv->dma_tx_size;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001211
Giuseppe CAVALLAROa9097a92011-10-18 00:01:19 +00001212 spin_lock(&priv->tx_lock);
1213
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001214 priv->xstats.tx_clean++;
1215
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001216 while (priv->dirty_tx != priv->cur_tx) {
1217 int last;
1218 unsigned int entry = priv->dirty_tx % txsize;
1219 struct sk_buff *skb = priv->tx_skbuff[entry];
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001220 struct dma_desc *p;
1221
1222 if (priv->extend_desc)
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001223 p = (struct dma_desc *)(priv->dma_etx + entry);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001224 else
1225 p = priv->dma_tx + entry;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001226
1227 /* Check if the descriptor is owned by the DMA. */
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +00001228 if (priv->hw->desc->get_tx_owner(p))
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001229 break;
1230
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001231 /* Verify tx error by looking at the last segment. */
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +00001232 last = priv->hw->desc->get_tx_ls(p);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001233 if (likely(last)) {
1234 int tx_error =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001235 priv->hw->desc->tx_status(&priv->dev->stats,
1236 &priv->xstats, p,
1237 priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001238 if (likely(tx_error == 0)) {
1239 priv->dev->stats.tx_packets++;
1240 priv->xstats.tx_pkt_n++;
1241 } else
1242 priv->dev->stats.tx_errors++;
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00001243
1244 stmmac_get_tx_hwtstamp(priv, entry, skb);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001245 }
1246 TX_DBG("%s: curr %d, dirty %d\n", __func__,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001247 priv->cur_tx, priv->dirty_tx);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001248
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001249 if (likely(priv->tx_skbuff_dma[entry])) {
1250 dma_unmap_single(priv->device,
1251 priv->tx_skbuff_dma[entry],
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +00001252 priv->hw->desc->get_tx_len(p),
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001253 DMA_TO_DEVICE);
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001254 priv->tx_skbuff_dma[entry] = 0;
1255 }
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00001256 priv->hw->ring->clean_desc3(priv, p);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001257
1258 if (likely(skb != NULL)) {
Eric Dumazetacb600d2012-10-05 06:23:55 +00001259 dev_kfree_skb(skb);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001260 priv->tx_skbuff[entry] = NULL;
1261 }
1262
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001263 priv->hw->desc->release_tx_desc(p, priv->mode);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001264
Giuseppe CAVALLARO13497f52012-06-04 06:36:22 +00001265 priv->dirty_tx++;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001266 }
1267 if (unlikely(netif_queue_stopped(priv->dev) &&
1268 stmmac_tx_avail(priv) > STMMAC_TX_THRESH(priv))) {
1269 netif_tx_lock(priv->dev);
1270 if (netif_queue_stopped(priv->dev) &&
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001271 stmmac_tx_avail(priv) > STMMAC_TX_THRESH(priv)) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001272 TX_DBG("%s: restart transmit\n", __func__);
1273 netif_wake_queue(priv->dev);
1274 }
1275 netif_tx_unlock(priv->dev);
1276 }
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00001277
1278 if ((priv->eee_enabled) && (!priv->tx_path_in_lpi_mode)) {
1279 stmmac_enable_eee_mode(priv);
1280 mod_timer(&priv->eee_ctrl_timer, STMMAC_LPI_TIMER(eee_timer));
1281 }
Giuseppe CAVALLAROa9097a92011-10-18 00:01:19 +00001282 spin_unlock(&priv->tx_lock);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001283}
1284
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001285static inline void stmmac_enable_dma_irq(struct stmmac_priv *priv)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001286{
Giuseppe CAVALLARO7284a3f2012-11-25 23:10:41 +00001287 priv->hw->dma->enable_dma_irq(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001288}
1289
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001290static inline void stmmac_disable_dma_irq(struct stmmac_priv *priv)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001291{
Giuseppe CAVALLARO7284a3f2012-11-25 23:10:41 +00001292 priv->hw->dma->disable_dma_irq(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001293}
1294
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001295/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001296 * stmmac_tx_err: irq tx error mng function
1297 * @priv: driver private structure
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001298 * Description: it cleans the descriptors and restarts the transmission
1299 * in case of errors.
1300 */
1301static void stmmac_tx_err(struct stmmac_priv *priv)
1302{
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001303 int i;
1304 int txsize = priv->dma_tx_size;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001305 netif_stop_queue(priv->dev);
1306
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001307 priv->hw->dma->stop_tx(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001308 dma_free_tx_skbufs(priv);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001309 for (i = 0; i < txsize; i++)
1310 if (priv->extend_desc)
1311 priv->hw->desc->init_tx_desc(&priv->dma_etx[i].basic,
1312 priv->mode,
1313 (i == txsize - 1));
1314 else
1315 priv->hw->desc->init_tx_desc(&priv->dma_tx[i],
1316 priv->mode,
1317 (i == txsize - 1));
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001318 priv->dirty_tx = 0;
1319 priv->cur_tx = 0;
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001320 priv->hw->dma->start_tx(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001321
1322 priv->dev->stats.tx_errors++;
1323 netif_wake_queue(priv->dev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001324}
1325
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001326/**
1327 * stmmac_dma_interrupt: DMA ISR
1328 * @priv: driver private structure
1329 * Description: this is the DMA ISR. It is called by the main ISR.
1330 * It calls the dwmac dma routine to understand which type of interrupt
1331 * happened. In case of there is a Normal interrupt and either TX or RX
1332 * interrupt happened so the NAPI is scheduled.
1333 */
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +00001334static void stmmac_dma_interrupt(struct stmmac_priv *priv)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001335{
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +00001336 int status;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001337
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001338 status = priv->hw->dma->dma_interrupt(priv->ioaddr, &priv->xstats);
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001339 if (likely((status & handle_rx)) || (status & handle_tx)) {
1340 if (likely(napi_schedule_prep(&priv->napi))) {
1341 stmmac_disable_dma_irq(priv);
1342 __napi_schedule(&priv->napi);
1343 }
1344 }
1345 if (unlikely(status & tx_hard_error_bump_tc)) {
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +00001346 /* Try to bump up the dma threshold on this failure */
1347 if (unlikely(tc != SF_DMA_MODE) && (tc <= 256)) {
1348 tc += 64;
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001349 priv->hw->dma->dma_mode(priv->ioaddr, tc, SF_DMA_MODE);
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +00001350 priv->xstats.threshold = tc;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001351 }
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +00001352 } else if (unlikely(status == tx_hard_error))
1353 stmmac_tx_err(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001354}
1355
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001356/**
1357 * stmmac_mmc_setup: setup the Mac Management Counters (MMC)
1358 * @priv: driver private structure
1359 * Description: this masks the MMC irq, in fact, the counters are managed in SW.
1360 */
Giuseppe CAVALLARO1c901a42011-09-01 21:51:38 +00001361static void stmmac_mmc_setup(struct stmmac_priv *priv)
1362{
1363 unsigned int mode = MMC_CNTRL_RESET_ON_READ | MMC_CNTRL_COUNTER_RESET |
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001364 MMC_CNTRL_PRESET | MMC_CNTRL_FULL_HALF_PRESET;
Giuseppe CAVALLARO1c901a42011-09-01 21:51:38 +00001365
Giuseppe CAVALLARO1c901a42011-09-01 21:51:38 +00001366 dwmac_mmc_intr_all_mask(priv->ioaddr);
Giuseppe CAVALLARO4f795b22011-11-18 05:00:20 +00001367
1368 if (priv->dma_cap.rmon) {
1369 dwmac_mmc_ctrl(priv->ioaddr, mode);
1370 memset(&priv->mmc, 0, sizeof(struct stmmac_counters));
1371 } else
Stefan Roeseaae54cf2012-01-10 01:47:51 +00001372 pr_info(" No MAC Management Counters available\n");
Giuseppe CAVALLARO1c901a42011-09-01 21:51:38 +00001373}
1374
Giuseppe CAVALLAROf0b9d782011-09-01 21:51:40 +00001375static u32 stmmac_get_synopsys_id(struct stmmac_priv *priv)
1376{
1377 u32 hwid = priv->hw->synopsys_uid;
1378
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001379 /* Check Synopsys Id (not available on old chips) */
Giuseppe CAVALLAROf0b9d782011-09-01 21:51:40 +00001380 if (likely(hwid)) {
1381 u32 uid = ((hwid & 0x0000ff00) >> 8);
1382 u32 synid = (hwid & 0x000000ff);
1383
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00001384 pr_info("stmmac - user ID: 0x%x, Synopsys ID: 0x%x\n",
Giuseppe CAVALLAROf0b9d782011-09-01 21:51:40 +00001385 uid, synid);
1386
1387 return synid;
1388 }
1389 return 0;
1390}
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00001391
Giuseppe CAVALLARO19e30c12011-11-16 21:58:00 +00001392/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001393 * stmmac_selec_desc_mode: to select among: normal/alternate/extend descriptors
1394 * @priv: driver private structure
1395 * Description: select the Enhanced/Alternate or Normal descriptors.
1396 * In case of Enhanced/Alternate, it looks at the extended descriptors are
1397 * supported by the HW cap. register.
Giuseppe CAVALLAROff3dd782012-06-04 19:22:55 +00001398 */
Giuseppe CAVALLARO19e30c12011-11-16 21:58:00 +00001399static void stmmac_selec_desc_mode(struct stmmac_priv *priv)
1400{
1401 if (priv->plat->enh_desc) {
1402 pr_info(" Enhanced/Alternate descriptors\n");
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001403
1404 /* GMAC older than 3.50 has no extended descriptors */
1405 if (priv->synopsys_id >= DWMAC_CORE_3_50) {
1406 pr_info("\tEnabled extended descriptors\n");
1407 priv->extend_desc = 1;
1408 } else
1409 pr_warn("Extended descriptors not supported\n");
1410
Giuseppe CAVALLARO19e30c12011-11-16 21:58:00 +00001411 priv->hw->desc = &enh_desc_ops;
1412 } else {
1413 pr_info(" Normal descriptors\n");
1414 priv->hw->desc = &ndesc_ops;
1415 }
1416}
1417
1418/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001419 * stmmac_get_hw_features: get MAC capabilities from the HW cap. register.
1420 * @priv: driver private structure
Giuseppe CAVALLARO19e30c12011-11-16 21:58:00 +00001421 * Description:
1422 * new GMAC chip generations have a new register to indicate the
1423 * presence of the optional feature/functions.
1424 * This can be also used to override the value passed through the
1425 * platform and necessary for old MAC10/100 and GMAC chips.
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00001426 */
1427static int stmmac_get_hw_features(struct stmmac_priv *priv)
1428{
Giuseppe CAVALLARO5e6efe82011-10-26 19:43:07 +00001429 u32 hw_cap = 0;
Giuseppe CAVALLARO3c20f722011-10-26 19:43:09 +00001430
Giuseppe CAVALLARO5e6efe82011-10-26 19:43:07 +00001431 if (priv->hw->dma->get_hw_feature) {
1432 hw_cap = priv->hw->dma->get_hw_feature(priv->ioaddr);
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00001433
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001434 priv->dma_cap.mbps_10_100 = (hw_cap & DMA_HW_FEAT_MIISEL);
1435 priv->dma_cap.mbps_1000 = (hw_cap & DMA_HW_FEAT_GMIISEL) >> 1;
1436 priv->dma_cap.half_duplex = (hw_cap & DMA_HW_FEAT_HDSEL) >> 2;
1437 priv->dma_cap.hash_filter = (hw_cap & DMA_HW_FEAT_HASHSEL) >> 4;
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001438 priv->dma_cap.multi_addr = (hw_cap & DMA_HW_FEAT_ADDMAC) >> 5;
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001439 priv->dma_cap.pcs = (hw_cap & DMA_HW_FEAT_PCSSEL) >> 6;
1440 priv->dma_cap.sma_mdio = (hw_cap & DMA_HW_FEAT_SMASEL) >> 8;
1441 priv->dma_cap.pmt_remote_wake_up =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001442 (hw_cap & DMA_HW_FEAT_RWKSEL) >> 9;
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001443 priv->dma_cap.pmt_magic_frame =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001444 (hw_cap & DMA_HW_FEAT_MGKSEL) >> 10;
Giuseppe CAVALLARO19e30c12011-11-16 21:58:00 +00001445 /* MMC */
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001446 priv->dma_cap.rmon = (hw_cap & DMA_HW_FEAT_MMCSEL) >> 11;
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001447 /* IEEE 1588-2002 */
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001448 priv->dma_cap.time_stamp =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001449 (hw_cap & DMA_HW_FEAT_TSVER1SEL) >> 12;
1450 /* IEEE 1588-2008 */
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001451 priv->dma_cap.atime_stamp =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001452 (hw_cap & DMA_HW_FEAT_TSVER2SEL) >> 13;
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00001453 /* 802.3az - Energy-Efficient Ethernet (EEE) */
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001454 priv->dma_cap.eee = (hw_cap & DMA_HW_FEAT_EEESEL) >> 14;
1455 priv->dma_cap.av = (hw_cap & DMA_HW_FEAT_AVSEL) >> 15;
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00001456 /* TX and RX csum */
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001457 priv->dma_cap.tx_coe = (hw_cap & DMA_HW_FEAT_TXCOESEL) >> 16;
1458 priv->dma_cap.rx_coe_type1 =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001459 (hw_cap & DMA_HW_FEAT_RXTYP1COE) >> 17;
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001460 priv->dma_cap.rx_coe_type2 =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001461 (hw_cap & DMA_HW_FEAT_RXTYP2COE) >> 18;
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001462 priv->dma_cap.rxfifo_over_2048 =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001463 (hw_cap & DMA_HW_FEAT_RXFIFOSIZE) >> 19;
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00001464 /* TX and RX number of channels */
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001465 priv->dma_cap.number_rx_channel =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001466 (hw_cap & DMA_HW_FEAT_RXCHCNT) >> 20;
Rayagond Kokatanur1db123f2011-10-18 00:01:22 +00001467 priv->dma_cap.number_tx_channel =
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001468 (hw_cap & DMA_HW_FEAT_TXCHCNT) >> 22;
1469 /* Alternate (enhanced) DESC mode */
1470 priv->dma_cap.enh_desc = (hw_cap & DMA_HW_FEAT_ENHDESSEL) >> 24;
Giuseppe CAVALLARO19e30c12011-11-16 21:58:00 +00001471 }
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00001472
1473 return hw_cap;
1474}
1475
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001476/**
1477 * stmmac_check_ether_addr: check if the MAC addr is valid
1478 * @priv: driver private structure
1479 * Description:
1480 * it is to verify if the MAC address is valid, in case of failures it
1481 * generates a random MAC address
1482 */
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001483static void stmmac_check_ether_addr(struct stmmac_priv *priv)
1484{
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001485 if (!is_valid_ether_addr(priv->dev->dev_addr)) {
1486 priv->hw->mac->get_umac_addr((void __iomem *)
1487 priv->dev->base_addr,
1488 priv->dev->dev_addr, 0);
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001489 if (!is_valid_ether_addr(priv->dev->dev_addr))
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001490 eth_hw_addr_random(priv->dev);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001491 }
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001492 pr_warn("%s: device MAC address %pM\n", priv->dev->name,
1493 priv->dev->dev_addr);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001494}
1495
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001496/**
1497 * stmmac_init_dma_engine: DMA init.
1498 * @priv: driver private structure
1499 * Description:
1500 * It inits the DMA invoking the specific MAC/GMAC callback.
1501 * Some DMA parameters can be passed from the platform;
1502 * in case of these are not passed a default is kept for the MAC or GMAC.
1503 */
Giuseppe CAVALLARO0f1f88a2012-04-18 19:48:21 +00001504static int stmmac_init_dma_engine(struct stmmac_priv *priv)
1505{
1506 int pbl = DEFAULT_DMA_PBL, fixed_burst = 0, burst_len = 0;
Giuseppe CAVALLAROb9cde0a2012-05-13 22:18:42 +00001507 int mixed_burst = 0;
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001508 int atds = 0;
Giuseppe CAVALLARO0f1f88a2012-04-18 19:48:21 +00001509
Giuseppe CAVALLARO0f1f88a2012-04-18 19:48:21 +00001510 if (priv->plat->dma_cfg) {
1511 pbl = priv->plat->dma_cfg->pbl;
1512 fixed_burst = priv->plat->dma_cfg->fixed_burst;
Giuseppe CAVALLAROb9cde0a2012-05-13 22:18:42 +00001513 mixed_burst = priv->plat->dma_cfg->mixed_burst;
Giuseppe CAVALLARO0f1f88a2012-04-18 19:48:21 +00001514 burst_len = priv->plat->dma_cfg->burst_len;
1515 }
1516
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001517 if (priv->extend_desc && (priv->mode == STMMAC_RING_MODE))
1518 atds = 1;
1519
Giuseppe CAVALLAROb9cde0a2012-05-13 22:18:42 +00001520 return priv->hw->dma->init(priv->ioaddr, pbl, fixed_burst, mixed_burst,
Giuseppe CAVALLARO0f1f88a2012-04-18 19:48:21 +00001521 burst_len, priv->dma_tx_phy,
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001522 priv->dma_rx_phy, atds);
Giuseppe CAVALLARO0f1f88a2012-04-18 19:48:21 +00001523}
1524
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001525/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001526 * stmmac_tx_timer: mitigation sw timer for tx.
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001527 * @data: data pointer
1528 * Description:
1529 * This is the timer handler to directly invoke the stmmac_tx_clean.
1530 */
1531static void stmmac_tx_timer(unsigned long data)
1532{
1533 struct stmmac_priv *priv = (struct stmmac_priv *)data;
1534
1535 stmmac_tx_clean(priv);
1536}
1537
1538/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001539 * stmmac_init_tx_coalesce: init tx mitigation options.
1540 * @priv: driver private structure
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001541 * Description:
1542 * This inits the transmit coalesce parameters: i.e. timer rate,
1543 * timer handler and default threshold used for enabling the
1544 * interrupt on completion bit.
1545 */
1546static void stmmac_init_tx_coalesce(struct stmmac_priv *priv)
1547{
1548 priv->tx_coal_frames = STMMAC_TX_FRAMES;
1549 priv->tx_coal_timer = STMMAC_COAL_TX_TIMER;
1550 init_timer(&priv->txtimer);
1551 priv->txtimer.expires = STMMAC_COAL_TIMER(priv->tx_coal_timer);
1552 priv->txtimer.data = (unsigned long)priv;
1553 priv->txtimer.function = stmmac_tx_timer;
1554 add_timer(&priv->txtimer);
1555}
1556
1557/**
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001558 * stmmac_open - open entry point of the driver
1559 * @dev : pointer to the device structure.
1560 * Description:
1561 * This function is the open entry point of the driver.
1562 * Return value:
1563 * 0 on success and an appropriate (-)ve integer as defined in errno.h
1564 * file on failure.
1565 */
1566static int stmmac_open(struct net_device *dev)
1567{
1568 struct stmmac_priv *priv = netdev_priv(dev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001569 int ret;
1570
Stefan Roesea6308442012-09-21 01:06:29 +00001571 clk_prepare_enable(priv->stmmac_clk);
Francesco Virlinzi4bfcbd72012-04-18 19:48:20 +00001572
1573 stmmac_check_ether_addr(priv);
1574
Byungho An4d8f0822013-04-07 17:56:16 +00001575 if (priv->pcs != STMMAC_PCS_RGMII && priv->pcs != STMMAC_PCS_TBI &&
1576 priv->pcs != STMMAC_PCS_RTBI) {
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +00001577 ret = stmmac_init_phy(dev);
1578 if (ret) {
1579 pr_err("%s: Cannot attach to PHY (error: %d)\n",
1580 __func__, ret);
1581 goto open_error;
1582 }
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001583 }
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001584
1585 /* Create and initialize the TX/RX descriptors chains. */
1586 priv->dma_tx_size = STMMAC_ALIGN(dma_txsize);
1587 priv->dma_rx_size = STMMAC_ALIGN(dma_rxsize);
1588 priv->dma_buf_sz = STMMAC_ALIGN(buf_sz);
1589 init_dma_desc_rings(dev);
1590
1591 /* DMA initialization and SW reset */
Giuseppe CAVALLARO0f1f88a2012-04-18 19:48:21 +00001592 ret = stmmac_init_dma_engine(priv);
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001593 if (ret < 0) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001594 pr_err("%s: DMA initialization failed\n", __func__);
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001595 goto open_error;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001596 }
1597
1598 /* Copy the MAC addr into the HW */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001599 priv->hw->mac->set_umac_addr(priv->ioaddr, dev->dev_addr, 0);
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00001600
Giuseppe CAVALLAROca5f12c2010-01-06 23:07:15 +00001601 /* If required, perform hw setup of the bus. */
Giuseppe CAVALLARO9dfeb4d2010-11-24 02:37:58 +00001602 if (priv->plat->bus_setup)
1603 priv->plat->bus_setup(priv->ioaddr);
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00001604
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001605 /* Initialize the MAC Core */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001606 priv->hw->mac->core_init(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001607
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001608 /* Request the IRQ lines */
1609 ret = request_irq(dev->irq, stmmac_interrupt,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001610 IRQF_SHARED, dev->name, dev);
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001611 if (unlikely(ret < 0)) {
1612 pr_err("%s: ERROR: allocating the IRQ %d (error: %d)\n",
1613 __func__, dev->irq, ret);
1614 goto open_error;
1615 }
1616
Francesco Virlinzi7a13f8f2012-02-15 00:10:38 +00001617 /* Request the Wake IRQ in case of another line is used for WoL */
1618 if (priv->wol_irq != dev->irq) {
1619 ret = request_irq(priv->wol_irq, stmmac_interrupt,
1620 IRQF_SHARED, dev->name, dev);
1621 if (unlikely(ret < 0)) {
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001622 pr_err("%s: ERROR: allocating the WoL IRQ %d (%d)\n",
1623 __func__, priv->wol_irq, ret);
Francesco Virlinzi7a13f8f2012-02-15 00:10:38 +00001624 goto open_error_wolirq;
1625 }
1626 }
1627
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00001628 /* Request the IRQ lines */
1629 if (priv->lpi_irq != -ENXIO) {
1630 ret = request_irq(priv->lpi_irq, stmmac_interrupt, IRQF_SHARED,
1631 dev->name, dev);
1632 if (unlikely(ret < 0)) {
1633 pr_err("%s: ERROR: allocating the LPI IRQ %d (%d)\n",
1634 __func__, priv->lpi_irq, ret);
1635 goto open_error_lpiirq;
1636 }
1637 }
1638
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001639 /* Enable the MAC Rx/Tx */
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001640 stmmac_set_mac(priv->ioaddr, true);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001641
1642 /* Set the HW DMA mode and the COE */
1643 stmmac_dma_operation_mode(priv);
1644
1645 /* Extra statistics */
1646 memset(&priv->xstats, 0, sizeof(struct stmmac_extra_stats));
1647 priv->xstats.threshold = tc;
1648
Giuseppe CAVALLARO4f795b22011-11-18 05:00:20 +00001649 stmmac_mmc_setup(priv);
Giuseppe CAVALLARO1c901a42011-09-01 21:51:38 +00001650
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +00001651 ret = stmmac_init_ptp(priv);
1652 if (ret)
1653 pr_warn("%s: failed PTP initialisation\n", __func__);
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00001654
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001655#ifdef CONFIG_STMMAC_DEBUG_FS
1656 ret = stmmac_init_fs(dev);
1657 if (ret < 0)
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001658 pr_warn("%s: failed debugFS registration\n", __func__);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001659#endif
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001660 /* Start the ball rolling... */
1661 DBG(probe, DEBUG, "%s: DMA RX/TX processes started...\n", dev->name);
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001662 priv->hw->dma->start_tx(priv->ioaddr);
1663 priv->hw->dma->start_rx(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001664
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001665 /* Dump DMA/MAC registers */
1666 if (netif_msg_hw(priv)) {
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001667 priv->hw->mac->dump_regs(priv->ioaddr);
1668 priv->hw->dma->dump_regs(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001669 }
1670
1671 if (priv->phydev)
1672 phy_start(priv->phydev);
1673
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00001674 priv->tx_lpi_timer = STMMAC_DEFAULT_TWT_LS_TIMER;
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +00001675
1676 /* Using PCS we cannot dial with the phy registers at this stage
1677 * so we do not support extra feature like EEE.
1678 */
Byungho An4d8f0822013-04-07 17:56:16 +00001679 if (priv->pcs != STMMAC_PCS_RGMII && priv->pcs != STMMAC_PCS_TBI &&
1680 priv->pcs != STMMAC_PCS_RTBI)
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +00001681 priv->eee_enabled = stmmac_eee_init(priv);
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00001682
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001683 stmmac_init_tx_coalesce(priv);
1684
Giuseppe CAVALLARO62a2ab92012-11-25 23:10:43 +00001685 if ((priv->use_riwt) && (priv->hw->dma->rx_watchdog)) {
1686 priv->rx_riwt = MAX_DMA_RIWT;
1687 priv->hw->dma->rx_watchdog(priv->ioaddr, MAX_DMA_RIWT);
1688 }
1689
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +00001690 if (priv->pcs && priv->hw->mac->ctrl_ane)
1691 priv->hw->mac->ctrl_ane(priv->ioaddr, 0);
1692
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001693 napi_enable(&priv->napi);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001694 netif_start_queue(dev);
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001695
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001696 return 0;
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001697
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00001698open_error_lpiirq:
1699 if (priv->wol_irq != dev->irq)
1700 free_irq(priv->wol_irq, dev);
1701
Francesco Virlinzi7a13f8f2012-02-15 00:10:38 +00001702open_error_wolirq:
1703 free_irq(dev->irq, dev);
1704
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001705open_error:
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001706 if (priv->phydev)
1707 phy_disconnect(priv->phydev);
1708
Stefan Roesea6308442012-09-21 01:06:29 +00001709 clk_disable_unprepare(priv->stmmac_clk);
Francesco Virlinzi4bfcbd72012-04-18 19:48:20 +00001710
Giuseppe CAVALLAROf66ffe22011-04-10 23:16:45 +00001711 return ret;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001712}
1713
1714/**
1715 * stmmac_release - close entry point of the driver
1716 * @dev : device pointer.
1717 * Description:
1718 * This is the stop entry point of the driver.
1719 */
1720static int stmmac_release(struct net_device *dev)
1721{
1722 struct stmmac_priv *priv = netdev_priv(dev);
1723
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00001724 if (priv->eee_enabled)
1725 del_timer_sync(&priv->eee_ctrl_timer);
1726
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001727 /* Stop and disconnect the PHY */
1728 if (priv->phydev) {
1729 phy_stop(priv->phydev);
1730 phy_disconnect(priv->phydev);
1731 priv->phydev = NULL;
1732 }
1733
1734 netif_stop_queue(dev);
1735
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001736 napi_disable(&priv->napi);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001737
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001738 del_timer_sync(&priv->txtimer);
1739
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001740 /* Free the IRQ lines */
1741 free_irq(dev->irq, dev);
Francesco Virlinzi7a13f8f2012-02-15 00:10:38 +00001742 if (priv->wol_irq != dev->irq)
1743 free_irq(priv->wol_irq, dev);
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00001744 if (priv->lpi_irq != -ENXIO)
1745 free_irq(priv->lpi_irq, dev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001746
1747 /* Stop TX/RX DMA and clear the descriptors */
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00001748 priv->hw->dma->stop_tx(priv->ioaddr);
1749 priv->hw->dma->stop_rx(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001750
1751 /* Release and free the Rx/Tx resources */
1752 free_dma_desc_resources(priv);
1753
avisconti19449bf2010-10-25 18:58:14 +00001754 /* Disable the MAC Rx/Tx */
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001755 stmmac_set_mac(priv->ioaddr, false);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001756
1757 netif_carrier_off(dev);
1758
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001759#ifdef CONFIG_STMMAC_DEBUG_FS
1760 stmmac_exit_fs();
1761#endif
Stefan Roesea6308442012-09-21 01:06:29 +00001762 clk_disable_unprepare(priv->stmmac_clk);
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00001763
Rayagond Kokatanur92ba6882013-03-26 04:43:11 +00001764 stmmac_release_ptp(priv);
1765
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001766 return 0;
1767}
1768
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001769/**
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001770 * stmmac_xmit: Tx entry point of the driver
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001771 * @skb : the socket buffer
1772 * @dev : device pointer
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001773 * Description : this is the tx entry point of the driver.
1774 * It programs the chain or the ring and supports oversized frames
1775 * and SG feature.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001776 */
1777static netdev_tx_t stmmac_xmit(struct sk_buff *skb, struct net_device *dev)
1778{
1779 struct stmmac_priv *priv = netdev_priv(dev);
1780 unsigned int txsize = priv->dma_tx_size;
1781 unsigned int entry;
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001782 int i, csum_insertion = 0, is_jumbo = 0;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001783 int nfrags = skb_shinfo(skb)->nr_frags;
1784 struct dma_desc *desc, *first;
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001785 unsigned int nopaged_len = skb_headlen(skb);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001786
1787 if (unlikely(stmmac_tx_avail(priv) < nfrags + 1)) {
1788 if (!netif_queue_stopped(dev)) {
1789 netif_stop_queue(dev);
1790 /* This is a hard error, log it. */
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001791 pr_err("%s: Tx Ring full when queue awake\n", __func__);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001792 }
1793 return NETDEV_TX_BUSY;
1794 }
1795
Giuseppe CAVALLAROa9097a92011-10-18 00:01:19 +00001796 spin_lock(&priv->tx_lock);
1797
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00001798 if (priv->tx_path_in_lpi_mode)
1799 stmmac_disable_eee_mode(priv);
1800
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001801 entry = priv->cur_tx % txsize;
1802
1803#ifdef STMMAC_XMIT_DEBUG
1804 if ((skb->len > ETH_FRAME_LEN) || nfrags)
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001805 pr_debug("%s: [entry %d]: skb addr %p len: %d nopagedlen: %d\n"
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001806 "\tn_frags: %d - ip_summed: %d - %s gso\n"
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001807 "\ttx_count_frames %d\n", __func__, entry,
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001808 skb, skb->len, nopaged_len, nfrags, skb->ip_summed,
1809 !skb_is_gso(skb) ? "isn't" : "is",
1810 priv->tx_count_frames);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001811#endif
1812
Michał Mirosław5e982f32011-04-09 02:46:55 +00001813 csum_insertion = (skb->ip_summed == CHECKSUM_PARTIAL);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001814
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001815 if (priv->extend_desc)
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001816 desc = (struct dma_desc *)(priv->dma_etx + entry);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001817 else
1818 desc = priv->dma_tx + entry;
1819
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001820 first = desc;
1821
1822#ifdef STMMAC_XMIT_DEBUG
1823 if ((nfrags > 0) || (skb->len > ETH_FRAME_LEN))
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001824 pr_debug("\tskb len: %d, nopaged_len: %d,\n"
1825 "\t\tn_frags: %d, ip_summed: %d\n",
1826 skb->len, nopaged_len, nfrags, skb->ip_summed);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001827#endif
1828 priv->tx_skbuff[entry] = skb;
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001829
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001830 /* To program the descriptors according to the size of the frame */
1831 if (priv->mode == STMMAC_RING_MODE) {
1832 is_jumbo = priv->hw->ring->is_jumbo_frm(skb->len,
1833 priv->plat->enh_desc);
1834 if (unlikely(is_jumbo))
1835 entry = priv->hw->ring->jumbo_frm(priv, skb,
1836 csum_insertion);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001837 } else {
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001838 is_jumbo = priv->hw->chain->is_jumbo_frm(skb->len,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001839 priv->plat->enh_desc);
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001840 if (unlikely(is_jumbo))
1841 entry = priv->hw->chain->jumbo_frm(priv, skb,
1842 csum_insertion);
1843 }
1844 if (likely(!is_jumbo)) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001845 desc->des2 = dma_map_single(priv->device, skb->data,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001846 nopaged_len, DMA_TO_DEVICE);
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001847 priv->tx_skbuff_dma[entry] = desc->des2;
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +00001848 priv->hw->desc->prepare_tx_desc(desc, 1, nopaged_len,
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001849 csum_insertion, priv->mode);
1850 } else
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001851 desc = first;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001852
1853 for (i = 0; i < nfrags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001854 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1855 int len = skb_frag_size(frag);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001856
1857 entry = (++priv->cur_tx) % txsize;
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001858 if (priv->extend_desc)
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001859 desc = (struct dma_desc *)(priv->dma_etx + entry);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001860 else
1861 desc = priv->dma_tx + entry;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001862
1863 TX_DBG("\t[entry %d] segment len: %d\n", entry, len);
Ian Campbellf7223802011-09-21 21:53:20 +00001864 desc->des2 = skb_frag_dma_map(priv->device, frag, 0, len,
1865 DMA_TO_DEVICE);
Rayagond Kokatanurcf32dee2013-03-26 04:43:09 +00001866 priv->tx_skbuff_dma[entry] = desc->des2;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001867 priv->tx_skbuff[entry] = NULL;
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00001868 priv->hw->desc->prepare_tx_desc(desc, 0, len, csum_insertion,
1869 priv->mode);
Shiraz Hashimeb0dc4b2011-07-17 20:54:08 +00001870 wmb();
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +00001871 priv->hw->desc->set_tx_owner(desc);
Deepak Sikri8e839892012-07-08 21:14:45 +00001872 wmb();
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001873 }
1874
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001875 /* Finalize the latest segment. */
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +00001876 priv->hw->desc->close_tx_desc(desc);
Giuseppe CAVALLARO73cfe262009-11-22 22:59:56 +00001877
Shiraz Hashimeb0dc4b2011-07-17 20:54:08 +00001878 wmb();
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00001879 /* According to the coalesce parameter the IC bit for the latest
1880 * segment could be reset and the timer re-started to invoke the
1881 * stmmac_tx function. This approach takes care about the fragments.
1882 */
1883 priv->tx_count_frames += nfrags + 1;
1884 if (priv->tx_coal_frames > priv->tx_count_frames) {
1885 priv->hw->desc->clear_tx_ic(desc);
1886 priv->xstats.tx_reset_ic_bit++;
1887 TX_DBG("\t[entry %d]: tx_count_frames %d\n", entry,
1888 priv->tx_count_frames);
1889 mod_timer(&priv->txtimer,
1890 STMMAC_COAL_TIMER(priv->tx_coal_timer));
1891 } else
1892 priv->tx_count_frames = 0;
Shiraz Hashimeb0dc4b2011-07-17 20:54:08 +00001893
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001894 /* To avoid raise condition */
Giuseppe CAVALLAROdb98a0b2010-01-06 23:07:17 +00001895 priv->hw->desc->set_tx_owner(first);
Deepak Sikri8e839892012-07-08 21:14:45 +00001896 wmb();
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001897
1898 priv->cur_tx++;
1899
1900#ifdef STMMAC_XMIT_DEBUG
1901 if (netif_msg_pktdata(priv)) {
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001902 pr_info("%s: curr %d dirty=%d entry=%d, first=%p, nfrags=%d"
1903 __func__, (priv->cur_tx % txsize),
1904 (priv->dirty_tx % txsize), entry, first, nfrags);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001905 if (priv->extend_desc)
1906 stmmac_display_ring((void *)priv->dma_etx, txsize, 1);
1907 else
1908 stmmac_display_ring((void *)priv->dma_tx, txsize, 0);
1909
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001910 pr_info(">>> frame to be transmitted: ");
1911 print_pkt(skb->data, skb->len);
1912 }
1913#endif
1914 if (unlikely(stmmac_tx_avail(priv) <= (MAX_SKB_FRAGS + 1))) {
1915 TX_DBG("%s: stop transmitted packets\n", __func__);
1916 netif_stop_queue(dev);
1917 }
1918
1919 dev->stats.tx_bytes += skb->len;
1920
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00001921 if (unlikely((skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) &&
1922 priv->hwts_tx_en)) {
1923 /* declare that device is doing timestamping */
1924 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1925 priv->hw->desc->enable_tx_timestamp(first);
1926 }
1927
1928 if (!priv->hwts_tx_en)
1929 skb_tx_timestamp(skb);
Richard Cochran3e82ce12011-06-12 02:19:06 +00001930
Richard Cochran52f64fa2011-06-19 03:31:43 +00001931 priv->hw->dma->enable_dma_transmission(priv->ioaddr);
1932
Giuseppe CAVALLAROa9097a92011-10-18 00:01:19 +00001933 spin_unlock(&priv->tx_lock);
1934
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001935 return NETDEV_TX_OK;
1936}
1937
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001938/**
1939 * stmmac_rx_refill: refill used skb preallocated buffers
1940 * @priv: driver private structure
1941 * Description : this is to reallocate the skb for the reception process
1942 * that is based on zero-copy.
1943 */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001944static inline void stmmac_rx_refill(struct stmmac_priv *priv)
1945{
1946 unsigned int rxsize = priv->dma_rx_size;
1947 int bfsize = priv->dma_buf_sz;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001948
1949 for (; priv->cur_rx - priv->dirty_rx > 0; priv->dirty_rx++) {
1950 unsigned int entry = priv->dirty_rx % rxsize;
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001951 struct dma_desc *p;
1952
1953 if (priv->extend_desc)
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001954 p = (struct dma_desc *)(priv->dma_erx + entry);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001955 else
1956 p = priv->dma_rx + entry;
1957
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001958 if (likely(priv->rx_skbuff[entry] == NULL)) {
1959 struct sk_buff *skb;
1960
Eric Dumazetacb600d2012-10-05 06:23:55 +00001961 skb = netdev_alloc_skb_ip_align(priv->dev, bfsize);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001962
1963 if (unlikely(skb == NULL))
1964 break;
1965
1966 priv->rx_skbuff[entry] = skb;
1967 priv->rx_skbuff_dma[entry] =
1968 dma_map_single(priv->device, skb->data, bfsize,
1969 DMA_FROM_DEVICE);
1970
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001971 p->des2 = priv->rx_skbuff_dma[entry];
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001972
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00001973 priv->hw->ring->refill_desc3(priv, p);
Giuseppe CAVALLARO286a8372011-10-18 00:01:24 +00001974
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001975 RX_DBG(KERN_INFO "\trefill entry #%d\n", entry);
1976 }
Shiraz Hashimeb0dc4b2011-07-17 20:54:08 +00001977 wmb();
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00001978 priv->hw->desc->set_rx_owner(p);
Deepak Sikri8e839892012-07-08 21:14:45 +00001979 wmb();
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001980 }
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001981}
1982
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00001983/**
1984 * stmmac_rx_refill: refill used skb preallocated buffers
1985 * @priv: driver private structure
1986 * @limit: napi bugget.
1987 * Description : this the function called by the napi poll method.
1988 * It gets all the frames inside the ring.
1989 */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001990static int stmmac_rx(struct stmmac_priv *priv, int limit)
1991{
1992 unsigned int rxsize = priv->dma_rx_size;
1993 unsigned int entry = priv->cur_rx % rxsize;
1994 unsigned int next_entry;
1995 unsigned int count = 0;
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00001996 int coe = priv->plat->rx_coe;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07001997
1998#ifdef STMMAC_RX_DEBUG
1999 if (netif_msg_hw(priv)) {
2000 pr_debug(">>> stmmac_rx: descriptor ring:\n");
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002001 if (priv->extend_desc)
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002002 stmmac_display_ring((void *)priv->dma_erx, rxsize, 1);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002003 else
2004 stmmac_display_ring((void *)priv->dma_rx, rxsize, 0);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002005 }
2006#endif
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002007 while (count < limit) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002008 int status;
Giuseppe CAVALLARO9401bb52013-04-08 02:10:03 +00002009 struct dma_desc *p;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002010
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002011 if (priv->extend_desc)
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002012 p = (struct dma_desc *)(priv->dma_erx + entry);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002013 else
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002014 p = priv->dma_rx + entry;
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002015
2016 if (priv->hw->desc->get_rx_owner(p))
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002017 break;
2018
2019 count++;
2020
2021 next_entry = (++priv->cur_rx) % rxsize;
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002022 if (priv->extend_desc)
Giuseppe CAVALLARO9401bb52013-04-08 02:10:03 +00002023 prefetch(priv->dma_erx + next_entry);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002024 else
Giuseppe CAVALLARO9401bb52013-04-08 02:10:03 +00002025 prefetch(priv->dma_rx + next_entry);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002026
2027 /* read the status of the incoming frame */
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002028 status = priv->hw->desc->rx_status(&priv->dev->stats,
2029 &priv->xstats, p);
2030 if ((priv->extend_desc) && (priv->hw->desc->rx_extended_status))
2031 priv->hw->desc->rx_extended_status(&priv->dev->stats,
2032 &priv->xstats,
2033 priv->dma_erx +
2034 entry);
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00002035 if (unlikely(status == discard_frame)) {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002036 priv->dev->stats.rx_errors++;
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00002037 if (priv->hwts_rx_en && !priv->extend_desc) {
2038 /* DESC2 & DESC3 will be overwitten by device
2039 * with timestamp value, hence reinitialize
2040 * them in stmmac_rx_refill() function so that
2041 * device can reuse it.
2042 */
2043 priv->rx_skbuff[entry] = NULL;
2044 dma_unmap_single(priv->device,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002045 priv->rx_skbuff_dma[entry],
2046 priv->dma_buf_sz,
2047 DMA_FROM_DEVICE);
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00002048 }
2049 } else {
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002050 struct sk_buff *skb;
Giuseppe CAVALLARO3eeb2992010-07-27 00:09:47 +00002051 int frame_len;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002052
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002053 frame_len = priv->hw->desc->get_rx_frame_len(p, coe);
2054
Giuseppe CAVALLARO3eeb2992010-07-27 00:09:47 +00002055 /* ACS is set; GMAC core strips PAD/FCS for IEEE 802.3
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002056 * Type frames (LLC/LLC-SNAP)
2057 */
Giuseppe CAVALLARO3eeb2992010-07-27 00:09:47 +00002058 if (unlikely(status != llc_snap))
2059 frame_len -= ETH_FCS_LEN;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002060#ifdef STMMAC_RX_DEBUG
2061 if (frame_len > ETH_FRAME_LEN)
2062 pr_debug("\tRX frame size %d, COE status: %d\n",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002063 frame_len, status);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002064
2065 if (netif_msg_hw(priv))
2066 pr_debug("\tdesc: %p [entry %d] buff=0x%x\n",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002067 p, entry, p->des2);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002068#endif
2069 skb = priv->rx_skbuff[entry];
2070 if (unlikely(!skb)) {
2071 pr_err("%s: Inconsistent Rx descriptor chain\n",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002072 priv->dev->name);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002073 priv->dev->stats.rx_dropped++;
2074 break;
2075 }
2076 prefetch(skb->data - NET_IP_ALIGN);
2077 priv->rx_skbuff[entry] = NULL;
2078
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00002079 stmmac_get_rx_hwtstamp(priv, entry, skb);
2080
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002081 skb_put(skb, frame_len);
2082 dma_unmap_single(priv->device,
2083 priv->rx_skbuff_dma[entry],
2084 priv->dma_buf_sz, DMA_FROM_DEVICE);
2085#ifdef STMMAC_RX_DEBUG
2086 if (netif_msg_pktdata(priv)) {
2087 pr_info(" frame received (%dbytes)", frame_len);
2088 print_pkt(skb->data, frame_len);
2089 }
2090#endif
2091 skb->protocol = eth_type_trans(skb, priv->dev);
2092
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002093 if (unlikely(!coe))
Eric Dumazetbc8acf22010-09-02 13:07:41 -07002094 skb_checksum_none_assert(skb);
Giuseppe CAVALLARO62a2ab92012-11-25 23:10:43 +00002095 else
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002096 skb->ip_summed = CHECKSUM_UNNECESSARY;
Giuseppe CAVALLARO62a2ab92012-11-25 23:10:43 +00002097
2098 napi_gro_receive(&priv->napi, skb);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002099
2100 priv->dev->stats.rx_packets++;
2101 priv->dev->stats.rx_bytes += frame_len;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002102 }
2103 entry = next_entry;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002104 }
2105
2106 stmmac_rx_refill(priv);
2107
2108 priv->xstats.rx_pkt_n += count;
2109
2110 return count;
2111}
2112
2113/**
2114 * stmmac_poll - stmmac poll method (NAPI)
2115 * @napi : pointer to the napi structure.
2116 * @budget : maximum number of packets that the current CPU can receive from
2117 * all interfaces.
2118 * Description :
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00002119 * To look at the incoming frames and clear the tx resources.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002120 */
2121static int stmmac_poll(struct napi_struct *napi, int budget)
2122{
2123 struct stmmac_priv *priv = container_of(napi, struct stmmac_priv, napi);
2124 int work_done = 0;
2125
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00002126 priv->xstats.napi_poll++;
2127 stmmac_tx_clean(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002128
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00002129 work_done = stmmac_rx(priv, budget);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002130 if (work_done < budget) {
2131 napi_complete(napi);
Giuseppe CAVALLARO9125cdd2012-11-25 23:10:42 +00002132 stmmac_enable_dma_irq(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002133 }
2134 return work_done;
2135}
2136
2137/**
2138 * stmmac_tx_timeout
2139 * @dev : Pointer to net device structure
2140 * Description: this function is called when a packet transmission fails to
Giuseppe CAVALLARO7284a3f2012-11-25 23:10:41 +00002141 * complete within a reasonable time. The driver will mark the error in the
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002142 * netdev structure and arrange for the device to be reset to a sane state
2143 * in order to transmit a new packet.
2144 */
2145static void stmmac_tx_timeout(struct net_device *dev)
2146{
2147 struct stmmac_priv *priv = netdev_priv(dev);
2148
2149 /* Clear Tx resources and restart transmitting again */
2150 stmmac_tx_err(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002151}
2152
2153/* Configuration changes (passed on by ifconfig) */
2154static int stmmac_config(struct net_device *dev, struct ifmap *map)
2155{
2156 if (dev->flags & IFF_UP) /* can't act on a running interface */
2157 return -EBUSY;
2158
2159 /* Don't allow changing the I/O address */
2160 if (map->base_addr != dev->base_addr) {
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002161 pr_warn("%s: can't change I/O address\n", dev->name);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002162 return -EOPNOTSUPP;
2163 }
2164
2165 /* Don't allow changing the IRQ */
2166 if (map->irq != dev->irq) {
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002167 pr_warn("%s: not change IRQ number %d\n", dev->name, dev->irq);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002168 return -EOPNOTSUPP;
2169 }
2170
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002171 return 0;
2172}
2173
2174/**
Jiri Pirko01789342011-08-16 06:29:00 +00002175 * stmmac_set_rx_mode - entry point for multicast addressing
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002176 * @dev : pointer to the device structure
2177 * Description:
2178 * This function is a driver entry point which gets called by the kernel
2179 * whenever multicast addresses must be enabled/disabled.
2180 * Return value:
2181 * void.
2182 */
Jiri Pirko01789342011-08-16 06:29:00 +00002183static void stmmac_set_rx_mode(struct net_device *dev)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002184{
2185 struct stmmac_priv *priv = netdev_priv(dev);
2186
2187 spin_lock(&priv->lock);
Giuseppe CAVALLAROcffb13f2012-05-13 22:18:41 +00002188 priv->hw->mac->set_filter(dev, priv->synopsys_id);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002189 spin_unlock(&priv->lock);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002190}
2191
2192/**
2193 * stmmac_change_mtu - entry point to change MTU size for the device.
2194 * @dev : device pointer.
2195 * @new_mtu : the new MTU size for the device.
2196 * Description: the Maximum Transfer Unit (MTU) is used by the network layer
2197 * to drive packet transmission. Ethernet has an MTU of 1500 octets
2198 * (ETH_DATA_LEN). This value can be changed with ifconfig.
2199 * Return value:
2200 * 0 on success and an appropriate (-)ve integer as defined in errno.h
2201 * file on failure.
2202 */
2203static int stmmac_change_mtu(struct net_device *dev, int new_mtu)
2204{
2205 struct stmmac_priv *priv = netdev_priv(dev);
2206 int max_mtu;
2207
2208 if (netif_running(dev)) {
2209 pr_err("%s: must be stopped to change its MTU\n", dev->name);
2210 return -EBUSY;
2211 }
2212
Giuseppe CAVALLARO48febf72011-10-18 00:01:21 +00002213 if (priv->plat->enh_desc)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002214 max_mtu = JUMBO_LEN;
2215 else
Giuseppe CAVALLARO45db81e2011-10-18 01:39:55 +00002216 max_mtu = SKB_MAX_HEAD(NET_SKB_PAD + NET_IP_ALIGN);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002217
2218 if ((new_mtu < 46) || (new_mtu > max_mtu)) {
2219 pr_err("%s: invalid MTU, max MTU is: %d\n", dev->name, max_mtu);
2220 return -EINVAL;
2221 }
2222
Michał Mirosław5e982f32011-04-09 02:46:55 +00002223 dev->mtu = new_mtu;
2224 netdev_update_features(dev);
2225
2226 return 0;
2227}
2228
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002229static netdev_features_t stmmac_fix_features(struct net_device *dev,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002230 netdev_features_t features)
Michał Mirosław5e982f32011-04-09 02:46:55 +00002231{
2232 struct stmmac_priv *priv = netdev_priv(dev);
2233
Deepak SIKRI38912bd2012-04-04 04:33:21 +00002234 if (priv->plat->rx_coe == STMMAC_RX_COE_NONE)
Michał Mirosław5e982f32011-04-09 02:46:55 +00002235 features &= ~NETIF_F_RXCSUM;
Deepak SIKRI38912bd2012-04-04 04:33:21 +00002236 else if (priv->plat->rx_coe == STMMAC_RX_COE_TYPE1)
2237 features &= ~NETIF_F_IPV6_CSUM;
Michał Mirosław5e982f32011-04-09 02:46:55 +00002238 if (!priv->plat->tx_coe)
2239 features &= ~NETIF_F_ALL_CSUM;
2240
Giuseppe CAVALLAROebbb2932010-09-17 03:23:40 +00002241 /* Some GMAC devices have a bugged Jumbo frame support that
2242 * needs to have the Tx COE disabled for oversized frames
2243 * (due to limited buffer sizes). In this case we disable
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002244 * the TX csum insertionin the TDES and not use SF.
2245 */
Michał Mirosław5e982f32011-04-09 02:46:55 +00002246 if (priv->plat->bugged_jumbo && (dev->mtu > ETH_DATA_LEN))
2247 features &= ~NETIF_F_ALL_CSUM;
Giuseppe CAVALLAROebbb2932010-09-17 03:23:40 +00002248
Michał Mirosław5e982f32011-04-09 02:46:55 +00002249 return features;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002250}
2251
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00002252/**
2253 * stmmac_interrupt - main ISR
2254 * @irq: interrupt number.
2255 * @dev_id: to pass the net device pointer.
2256 * Description: this is the main driver interrupt service routine.
2257 * It calls the DMA ISR and also the core ISR to manage PMT, MMC, LPI
2258 * interrupts.
2259 */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002260static irqreturn_t stmmac_interrupt(int irq, void *dev_id)
2261{
2262 struct net_device *dev = (struct net_device *)dev_id;
2263 struct stmmac_priv *priv = netdev_priv(dev);
2264
2265 if (unlikely(!dev)) {
2266 pr_err("%s: invalid dev pointer\n", __func__);
2267 return IRQ_NONE;
2268 }
2269
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00002270 /* To handle GMAC own interrupts */
2271 if (priv->plat->has_gmac) {
2272 int status = priv->hw->mac->host_irq_status((void __iomem *)
Giuseppe CAVALLARO0982a0f2013-03-26 04:43:07 +00002273 dev->base_addr,
2274 &priv->xstats);
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00002275 if (unlikely(status)) {
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00002276 /* For LPI we need to save the tx status */
Giuseppe CAVALLARO0982a0f2013-03-26 04:43:07 +00002277 if (status & CORE_IRQ_TX_PATH_IN_LPI_MODE)
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00002278 priv->tx_path_in_lpi_mode = true;
Giuseppe CAVALLARO0982a0f2013-03-26 04:43:07 +00002279 if (status & CORE_IRQ_TX_PATH_EXIT_LPI_MODE)
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00002280 priv->tx_path_in_lpi_mode = false;
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00002281 }
2282 }
2283
2284 /* To handle DMA interrupts */
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +00002285 stmmac_dma_interrupt(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002286
2287 return IRQ_HANDLED;
2288}
2289
2290#ifdef CONFIG_NET_POLL_CONTROLLER
2291/* Polling receive - used by NETCONSOLE and other diagnostic tools
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002292 * to allow network I/O with interrupts disabled.
2293 */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002294static void stmmac_poll_controller(struct net_device *dev)
2295{
2296 disable_irq(dev->irq);
2297 stmmac_interrupt(dev->irq, dev);
2298 enable_irq(dev->irq);
2299}
2300#endif
2301
2302/**
2303 * stmmac_ioctl - Entry point for the Ioctl
2304 * @dev: Device pointer.
2305 * @rq: An IOCTL specefic structure, that can contain a pointer to
2306 * a proprietary structure used to pass information to the driver.
2307 * @cmd: IOCTL command
2308 * Description:
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00002309 * Currently it supports the phy_mii_ioctl(...) and HW time stamping.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002310 */
2311static int stmmac_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2312{
2313 struct stmmac_priv *priv = netdev_priv(dev);
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00002314 int ret = -EOPNOTSUPP;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002315
2316 if (!netif_running(dev))
2317 return -EINVAL;
2318
Rayagond Kokatanur891434b2013-03-26 04:43:10 +00002319 switch (cmd) {
2320 case SIOCGMIIPHY:
2321 case SIOCGMIIREG:
2322 case SIOCSMIIREG:
2323 if (!priv->phydev)
2324 return -EINVAL;
2325 ret = phy_mii_ioctl(priv->phydev, rq, cmd);
2326 break;
2327 case SIOCSHWTSTAMP:
2328 ret = stmmac_hwtstamp_ioctl(dev, rq);
2329 break;
2330 default:
2331 break;
2332 }
Richard Cochran28b04112010-07-17 08:48:55 +00002333
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002334 return ret;
2335}
2336
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002337#ifdef CONFIG_STMMAC_DEBUG_FS
2338static struct dentry *stmmac_fs_dir;
2339static struct dentry *stmmac_rings_status;
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00002340static struct dentry *stmmac_dma_cap;
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002341
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002342static void sysfs_display_ring(void *head, int size, int extend_desc,
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002343 struct seq_file *seq)
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002344{
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002345 int i;
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002346 struct dma_extended_desc *ep = (struct dma_extended_desc *)head;
2347 struct dma_desc *p = (struct dma_desc *)head;
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002348
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002349 for (i = 0; i < size; i++) {
2350 u64 x;
2351 if (extend_desc) {
2352 x = *(u64 *) ep;
2353 seq_printf(seq, "%d [0x%x]: 0x%x 0x%x 0x%x 0x%x\n",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002354 i, (unsigned int)virt_to_phys(ep),
2355 (unsigned int)x, (unsigned int)(x >> 32),
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002356 ep->basic.des2, ep->basic.des3);
2357 ep++;
2358 } else {
2359 x = *(u64 *) p;
2360 seq_printf(seq, "%d [0x%x]: 0x%x 0x%x 0x%x 0x%x\n",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002361 i, (unsigned int)virt_to_phys(ep),
2362 (unsigned int)x, (unsigned int)(x >> 32),
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002363 p->des2, p->des3);
2364 p++;
2365 }
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002366 seq_printf(seq, "\n");
2367 }
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002368}
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002369
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002370static int stmmac_sysfs_ring_read(struct seq_file *seq, void *v)
2371{
2372 struct net_device *dev = seq->private;
2373 struct stmmac_priv *priv = netdev_priv(dev);
2374 unsigned int txsize = priv->dma_tx_size;
2375 unsigned int rxsize = priv->dma_rx_size;
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002376
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002377 if (priv->extend_desc) {
2378 seq_printf(seq, "Extended RX descriptor ring:\n");
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002379 sysfs_display_ring((void *)priv->dma_erx, rxsize, 1, seq);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002380 seq_printf(seq, "Extended TX descriptor ring:\n");
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002381 sysfs_display_ring((void *)priv->dma_etx, txsize, 1, seq);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002382 } else {
2383 seq_printf(seq, "RX descriptor ring:\n");
2384 sysfs_display_ring((void *)priv->dma_rx, rxsize, 0, seq);
2385 seq_printf(seq, "TX descriptor ring:\n");
2386 sysfs_display_ring((void *)priv->dma_tx, txsize, 0, seq);
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002387 }
2388
2389 return 0;
2390}
2391
2392static int stmmac_sysfs_ring_open(struct inode *inode, struct file *file)
2393{
2394 return single_open(file, stmmac_sysfs_ring_read, inode->i_private);
2395}
2396
2397static const struct file_operations stmmac_rings_status_fops = {
2398 .owner = THIS_MODULE,
2399 .open = stmmac_sysfs_ring_open,
2400 .read = seq_read,
2401 .llseek = seq_lseek,
Djalal Harouni74863942012-05-20 13:55:30 +00002402 .release = single_release,
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002403};
2404
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00002405static int stmmac_sysfs_dma_cap_read(struct seq_file *seq, void *v)
2406{
2407 struct net_device *dev = seq->private;
2408 struct stmmac_priv *priv = netdev_priv(dev);
2409
Giuseppe CAVALLARO19e30c12011-11-16 21:58:00 +00002410 if (!priv->hw_cap_support) {
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00002411 seq_printf(seq, "DMA HW features not supported\n");
2412 return 0;
2413 }
2414
2415 seq_printf(seq, "==============================\n");
2416 seq_printf(seq, "\tDMA HW features\n");
2417 seq_printf(seq, "==============================\n");
2418
2419 seq_printf(seq, "\t10/100 Mbps %s\n",
2420 (priv->dma_cap.mbps_10_100) ? "Y" : "N");
2421 seq_printf(seq, "\t1000 Mbps %s\n",
2422 (priv->dma_cap.mbps_1000) ? "Y" : "N");
2423 seq_printf(seq, "\tHalf duple %s\n",
2424 (priv->dma_cap.half_duplex) ? "Y" : "N");
2425 seq_printf(seq, "\tHash Filter: %s\n",
2426 (priv->dma_cap.hash_filter) ? "Y" : "N");
2427 seq_printf(seq, "\tMultiple MAC address registers: %s\n",
2428 (priv->dma_cap.multi_addr) ? "Y" : "N");
2429 seq_printf(seq, "\tPCS (TBI/SGMII/RTBI PHY interfatces): %s\n",
2430 (priv->dma_cap.pcs) ? "Y" : "N");
2431 seq_printf(seq, "\tSMA (MDIO) Interface: %s\n",
2432 (priv->dma_cap.sma_mdio) ? "Y" : "N");
2433 seq_printf(seq, "\tPMT Remote wake up: %s\n",
2434 (priv->dma_cap.pmt_remote_wake_up) ? "Y" : "N");
2435 seq_printf(seq, "\tPMT Magic Frame: %s\n",
2436 (priv->dma_cap.pmt_magic_frame) ? "Y" : "N");
2437 seq_printf(seq, "\tRMON module: %s\n",
2438 (priv->dma_cap.rmon) ? "Y" : "N");
2439 seq_printf(seq, "\tIEEE 1588-2002 Time Stamp: %s\n",
2440 (priv->dma_cap.time_stamp) ? "Y" : "N");
2441 seq_printf(seq, "\tIEEE 1588-2008 Advanced Time Stamp:%s\n",
2442 (priv->dma_cap.atime_stamp) ? "Y" : "N");
2443 seq_printf(seq, "\t802.3az - Energy-Efficient Ethernet (EEE) %s\n",
2444 (priv->dma_cap.eee) ? "Y" : "N");
2445 seq_printf(seq, "\tAV features: %s\n", (priv->dma_cap.av) ? "Y" : "N");
2446 seq_printf(seq, "\tChecksum Offload in TX: %s\n",
2447 (priv->dma_cap.tx_coe) ? "Y" : "N");
2448 seq_printf(seq, "\tIP Checksum Offload (type1) in RX: %s\n",
2449 (priv->dma_cap.rx_coe_type1) ? "Y" : "N");
2450 seq_printf(seq, "\tIP Checksum Offload (type2) in RX: %s\n",
2451 (priv->dma_cap.rx_coe_type2) ? "Y" : "N");
2452 seq_printf(seq, "\tRXFIFO > 2048bytes: %s\n",
2453 (priv->dma_cap.rxfifo_over_2048) ? "Y" : "N");
2454 seq_printf(seq, "\tNumber of Additional RX channel: %d\n",
2455 priv->dma_cap.number_rx_channel);
2456 seq_printf(seq, "\tNumber of Additional TX channel: %d\n",
2457 priv->dma_cap.number_tx_channel);
2458 seq_printf(seq, "\tEnhanced descriptors: %s\n",
2459 (priv->dma_cap.enh_desc) ? "Y" : "N");
2460
2461 return 0;
2462}
2463
2464static int stmmac_sysfs_dma_cap_open(struct inode *inode, struct file *file)
2465{
2466 return single_open(file, stmmac_sysfs_dma_cap_read, inode->i_private);
2467}
2468
2469static const struct file_operations stmmac_dma_cap_fops = {
2470 .owner = THIS_MODULE,
2471 .open = stmmac_sysfs_dma_cap_open,
2472 .read = seq_read,
2473 .llseek = seq_lseek,
Djalal Harouni74863942012-05-20 13:55:30 +00002474 .release = single_release,
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00002475};
2476
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002477static int stmmac_init_fs(struct net_device *dev)
2478{
2479 /* Create debugfs entries */
2480 stmmac_fs_dir = debugfs_create_dir(STMMAC_RESOURCE_NAME, NULL);
2481
2482 if (!stmmac_fs_dir || IS_ERR(stmmac_fs_dir)) {
2483 pr_err("ERROR %s, debugfs create directory failed\n",
2484 STMMAC_RESOURCE_NAME);
2485
2486 return -ENOMEM;
2487 }
2488
2489 /* Entry to report DMA RX/TX rings */
2490 stmmac_rings_status = debugfs_create_file("descriptors_status",
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002491 S_IRUGO, stmmac_fs_dir, dev,
2492 &stmmac_rings_status_fops);
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002493
2494 if (!stmmac_rings_status || IS_ERR(stmmac_rings_status)) {
2495 pr_info("ERROR creating stmmac ring debugfs file\n");
2496 debugfs_remove(stmmac_fs_dir);
2497
2498 return -ENOMEM;
2499 }
2500
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00002501 /* Entry to report the DMA HW features */
2502 stmmac_dma_cap = debugfs_create_file("dma_cap", S_IRUGO, stmmac_fs_dir,
2503 dev, &stmmac_dma_cap_fops);
2504
2505 if (!stmmac_dma_cap || IS_ERR(stmmac_dma_cap)) {
2506 pr_info("ERROR creating stmmac MMC debugfs file\n");
2507 debugfs_remove(stmmac_rings_status);
2508 debugfs_remove(stmmac_fs_dir);
2509
2510 return -ENOMEM;
2511 }
2512
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002513 return 0;
2514}
2515
2516static void stmmac_exit_fs(void)
2517{
2518 debugfs_remove(stmmac_rings_status);
Giuseppe CAVALLAROe7434822011-09-01 21:51:41 +00002519 debugfs_remove(stmmac_dma_cap);
Giuseppe CAVALLARO7ac29052011-09-01 21:51:39 +00002520 debugfs_remove(stmmac_fs_dir);
2521}
2522#endif /* CONFIG_STMMAC_DEBUG_FS */
2523
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002524static const struct net_device_ops stmmac_netdev_ops = {
2525 .ndo_open = stmmac_open,
2526 .ndo_start_xmit = stmmac_xmit,
2527 .ndo_stop = stmmac_release,
2528 .ndo_change_mtu = stmmac_change_mtu,
Michał Mirosław5e982f32011-04-09 02:46:55 +00002529 .ndo_fix_features = stmmac_fix_features,
Jiri Pirko01789342011-08-16 06:29:00 +00002530 .ndo_set_rx_mode = stmmac_set_rx_mode,
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002531 .ndo_tx_timeout = stmmac_tx_timeout,
2532 .ndo_do_ioctl = stmmac_ioctl,
2533 .ndo_set_config = stmmac_config,
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002534#ifdef CONFIG_NET_POLL_CONTROLLER
2535 .ndo_poll_controller = stmmac_poll_controller,
2536#endif
2537 .ndo_set_mac_address = eth_mac_addr,
2538};
2539
2540/**
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002541 * stmmac_hw_init - Init the MAC device
Giuseppe CAVALLARO32ceabc2013-04-08 02:10:00 +00002542 * @priv: driver private structure
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002543 * Description: this function detects which MAC device
2544 * (GMAC/MAC10-100) has to attached, checks the HW capability
2545 * (if supported) and sets the driver's features (for example
2546 * to use the ring or chaine mode or support the normal/enh
2547 * descriptor structure).
2548 */
2549static int stmmac_hw_init(struct stmmac_priv *priv)
2550{
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002551 int ret;
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002552 struct mac_device_info *mac;
2553
2554 /* Identify the MAC HW device */
Marc Kleine-Budde03f2eec2012-04-03 22:13:01 +00002555 if (priv->plat->has_gmac) {
2556 priv->dev->priv_flags |= IFF_UNICAST_FLT;
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002557 mac = dwmac1000_setup(priv->ioaddr);
Marc Kleine-Budde03f2eec2012-04-03 22:13:01 +00002558 } else {
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002559 mac = dwmac100_setup(priv->ioaddr);
Marc Kleine-Budde03f2eec2012-04-03 22:13:01 +00002560 }
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002561 if (!mac)
2562 return -ENOMEM;
2563
2564 priv->hw = mac;
2565
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002566 /* Get and dump the chip ID */
Giuseppe CAVALLAROcffb13f2012-05-13 22:18:41 +00002567 priv->synopsys_id = stmmac_get_synopsys_id(priv);
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002568
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002569 /* To use alternate (extended) or normal descriptor structures */
2570 stmmac_selec_desc_mode(priv);
2571
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00002572 /* To use the chained or ring mode */
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002573 if (chain_mode) {
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00002574 priv->hw->chain = &chain_mode_ops;
2575 pr_info(" Chain mode enabled\n");
2576 priv->mode = STMMAC_CHAIN_MODE;
2577 } else {
2578 priv->hw->ring = &ring_mode_ops;
2579 pr_info(" Ring mode enabled\n");
2580 priv->mode = STMMAC_RING_MODE;
2581 }
2582
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002583 /* Get the HW capability (new GMAC newer than 3.50a) */
2584 priv->hw_cap_support = stmmac_get_hw_features(priv);
2585 if (priv->hw_cap_support) {
2586 pr_info(" DMA HW capability register supported");
2587
2588 /* We can override some gmac/dma configuration fields: e.g.
2589 * enh_desc, tx_coe (e.g. that are passed through the
2590 * platform) with the values from the HW capability
2591 * register (if supported).
2592 */
2593 priv->plat->enh_desc = priv->dma_cap.enh_desc;
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002594 priv->plat->pmt = priv->dma_cap.pmt_remote_wake_up;
Deepak SIKRI38912bd2012-04-04 04:33:21 +00002595
2596 priv->plat->tx_coe = priv->dma_cap.tx_coe;
2597
2598 if (priv->dma_cap.rx_coe_type2)
2599 priv->plat->rx_coe = STMMAC_RX_COE_TYPE2;
2600 else if (priv->dma_cap.rx_coe_type1)
2601 priv->plat->rx_coe = STMMAC_RX_COE_TYPE1;
2602
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002603 } else
2604 pr_info(" No HW DMA feature register supported");
2605
Deepak SIKRI38912bd2012-04-04 04:33:21 +00002606 ret = priv->hw->mac->rx_ipc(priv->ioaddr);
2607 if (!ret) {
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002608 pr_warn(" RX IPC Checksum Offload not configured.\n");
Deepak SIKRI38912bd2012-04-04 04:33:21 +00002609 priv->plat->rx_coe = STMMAC_RX_COE_NONE;
2610 }
2611
2612 if (priv->plat->rx_coe)
2613 pr_info(" RX Checksum Offload Engine supported (type %d)\n",
2614 priv->plat->rx_coe);
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002615 if (priv->plat->tx_coe)
2616 pr_info(" TX Checksum insertion supported\n");
2617
2618 if (priv->plat->pmt) {
2619 pr_info(" Wake-Up On Lan supported\n");
2620 device_set_wakeup_capable(priv->device, 1);
2621 }
2622
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002623 return 0;
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002624}
2625
2626/**
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002627 * stmmac_dvr_probe
2628 * @device: device pointer
Giuseppe CAVALLAROff3dd782012-06-04 19:22:55 +00002629 * @plat_dat: platform data pointer
2630 * @addr: iobase memory address
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002631 * Description: this is the main probe function used to
2632 * call the alloc_etherdev, allocate the priv structure.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002633 */
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002634struct stmmac_priv *stmmac_dvr_probe(struct device *device,
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002635 struct plat_stmmacenet_data *plat_dat,
2636 void __iomem *addr)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002637{
2638 int ret = 0;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002639 struct net_device *ndev = NULL;
2640 struct stmmac_priv *priv;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002641
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002642 ndev = alloc_etherdev(sizeof(struct stmmac_priv));
Joe Perches41de8d42012-01-29 13:47:52 +00002643 if (!ndev)
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002644 return NULL;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002645
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002646 SET_NETDEV_DEV(ndev, device);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002647
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002648 priv = netdev_priv(ndev);
2649 priv->device = device;
2650 priv->dev = ndev;
2651
2652 ether_setup(ndev);
2653
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002654 stmmac_set_ethtool_ops(ndev);
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002655 priv->pause = pause;
2656 priv->plat = plat_dat;
2657 priv->ioaddr = addr;
2658 priv->dev->base_addr = (unsigned long)addr;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002659
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002660 /* Verify driver arguments */
2661 stmmac_verify_args();
2662
2663 /* Override with kernel parameters if supplied XXX CRS XXX
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002664 * this needs to have multiple instances
2665 */
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002666 if ((phyaddr >= 0) && (phyaddr <= 31))
2667 priv->plat->phy_addr = phyaddr;
2668
2669 /* Init MAC and get the capabilities */
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002670 ret = stmmac_hw_init(priv);
2671 if (ret)
2672 goto error_free_netdev;
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002673
2674 ndev->netdev_ops = &stmmac_netdev_ops;
2675
2676 ndev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
2677 NETIF_F_RXCSUM;
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002678 ndev->features |= ndev->hw_features | NETIF_F_HIGHDMA;
2679 ndev->watchdog_timeo = msecs_to_jiffies(watchdog);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002680#ifdef STMMAC_VLAN_TAG_USED
2681 /* Both mac100 and gmac support receive VLAN tag detection */
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002682 ndev->features |= NETIF_F_HW_VLAN_RX;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002683#endif
2684 priv->msg_enable = netif_msg_init(debug, default_msg_level);
2685
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002686 if (flow_ctrl)
2687 priv->flow_ctrl = FLOW_AUTO; /* RX/TX pause on */
2688
Giuseppe CAVALLARO62a2ab92012-11-25 23:10:43 +00002689 /* Rx Watchdog is available in the COREs newer than the 3.40.
2690 * In some case, for example on bugged HW this feature
2691 * has to be disable and this can be done by passing the
2692 * riwt_off field from the platform.
2693 */
2694 if ((priv->synopsys_id >= DWMAC_CORE_3_50) && (!priv->plat->riwt_off)) {
2695 priv->use_riwt = 1;
2696 pr_info(" Enable RX Mitigation via HW Watchdog Timer\n");
2697 }
2698
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002699 netif_napi_add(ndev, &priv->napi, stmmac_poll, 64);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002700
Vlad Lunguf8e96162010-11-29 22:52:52 +00002701 spin_lock_init(&priv->lock);
Giuseppe CAVALLAROa9097a92011-10-18 00:01:19 +00002702 spin_lock_init(&priv->tx_lock);
Vlad Lunguf8e96162010-11-29 22:52:52 +00002703
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002704 ret = register_netdev(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002705 if (ret) {
Giuseppe CAVALLAROcf3f0472012-02-15 00:10:39 +00002706 pr_err("%s: ERROR %i registering the device\n", __func__, ret);
Viresh Kumar6a81c262012-07-30 14:39:41 -07002707 goto error_netdev_register;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002708 }
2709
Kelvin Cheungae4d8cf2012-08-18 00:16:23 +00002710 priv->stmmac_clk = clk_get(priv->device, STMMAC_RESOURCE_NAME);
Viresh Kumar6a81c262012-07-30 14:39:41 -07002711 if (IS_ERR(priv->stmmac_clk)) {
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002712 pr_warn("%s: warning: cannot get CSR clock\n", __func__);
Viresh Kumar6a81c262012-07-30 14:39:41 -07002713 goto error_clk_get;
2714 }
Giuseppe CAVALLAROba1377ff2012-04-04 04:33:25 +00002715
Giuseppe CAVALLAROcd7201f2012-04-04 04:33:27 +00002716 /* If a specific clk_csr value is passed from the platform
2717 * this means that the CSR Clock Range selection cannot be
2718 * changed at run-time and it is fixed. Viceversa the driver'll try to
2719 * set the MDC clock dynamically according to the csr actual
2720 * clock input.
2721 */
2722 if (!priv->plat->clk_csr)
2723 stmmac_clk_csr_set(priv);
2724 else
2725 priv->clk_csr = priv->plat->clk_csr;
2726
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +00002727 stmmac_check_pcs_mode(priv);
2728
Byungho An4d8f0822013-04-07 17:56:16 +00002729 if (priv->pcs != STMMAC_PCS_RGMII && priv->pcs != STMMAC_PCS_TBI &&
2730 priv->pcs != STMMAC_PCS_RTBI) {
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +00002731 /* MDIO bus Registration */
2732 ret = stmmac_mdio_register(ndev);
2733 if (ret < 0) {
2734 pr_debug("%s: MDIO bus (id: %d) registration failed",
2735 __func__, priv->plat->bus_id);
2736 goto error_mdio_register;
2737 }
Francesco Virlinzi4bfcbd72012-04-18 19:48:20 +00002738 }
2739
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002740 return priv;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002741
Viresh Kumar6a81c262012-07-30 14:39:41 -07002742error_mdio_register:
2743 clk_put(priv->stmmac_clk);
2744error_clk_get:
Dan Carpenter34a52f32010-12-20 21:34:56 +00002745 unregister_netdev(ndev);
Viresh Kumar6a81c262012-07-30 14:39:41 -07002746error_netdev_register:
2747 netif_napi_del(&priv->napi);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002748error_free_netdev:
Dan Carpenter34a52f32010-12-20 21:34:56 +00002749 free_netdev(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002750
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002751 return NULL;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002752}
2753
2754/**
2755 * stmmac_dvr_remove
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002756 * @ndev: net device pointer
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002757 * Description: this function resets the TX/RX processes, disables the MAC RX/TX
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002758 * changes the link status, releases the DMA descriptor rings.
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002759 */
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002760int stmmac_dvr_remove(struct net_device *ndev)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002761{
Giuseppe CAVALLAROaec7ff22010-01-06 23:07:18 +00002762 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002763
2764 pr_info("%s:\n\tremoving driver", __func__);
2765
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00002766 priv->hw->dma->stop_rx(priv->ioaddr);
2767 priv->hw->dma->stop_tx(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002768
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002769 stmmac_set_mac(priv->ioaddr, false);
Byungho An4d8f0822013-04-07 17:56:16 +00002770 if (priv->pcs != STMMAC_PCS_RGMII && priv->pcs != STMMAC_PCS_TBI &&
2771 priv->pcs != STMMAC_PCS_RTBI)
Giuseppe CAVALLAROe58bb432013-03-26 04:43:08 +00002772 stmmac_mdio_unregister(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002773 netif_carrier_off(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002774 unregister_netdev(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002775 free_netdev(ndev);
2776
2777 return 0;
2778}
2779
2780#ifdef CONFIG_PM
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002781int stmmac_suspend(struct net_device *ndev)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002782{
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002783 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLAROf8c5a872012-05-13 22:18:43 +00002784 unsigned long flags;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002785
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002786 if (!ndev || !netif_running(ndev))
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002787 return 0;
2788
Francesco Virlinzi102463b2011-11-16 21:58:02 +00002789 if (priv->phydev)
2790 phy_stop(priv->phydev);
2791
Giuseppe CAVALLAROf8c5a872012-05-13 22:18:43 +00002792 spin_lock_irqsave(&priv->lock, flags);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002793
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002794 netif_device_detach(ndev);
2795 netif_stop_queue(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002796
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002797 napi_disable(&priv->napi);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002798
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002799 /* Stop TX/RX DMA */
2800 priv->hw->dma->stop_tx(priv->ioaddr);
2801 priv->hw->dma->stop_rx(priv->ioaddr);
Giuseppe CAVALLAROc24602e2013-03-26 04:43:06 +00002802
2803 stmmac_clear_descriptors(priv);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002804
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002805 /* Enable Power down mode by programming the PMT regs */
2806 if (device_may_wakeup(priv->device))
2807 priv->hw->mac->pmt(priv->ioaddr, priv->wolopts);
Giuseppe CAVALLAROba1377ff2012-04-04 04:33:25 +00002808 else {
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002809 stmmac_set_mac(priv->ioaddr, false);
Giuseppe CAVALLAROba1377ff2012-04-04 04:33:25 +00002810 /* Disable clock in case of PWM is off */
Stefan Roesea6308442012-09-21 01:06:29 +00002811 clk_disable_unprepare(priv->stmmac_clk);
Giuseppe CAVALLAROba1377ff2012-04-04 04:33:25 +00002812 }
Giuseppe CAVALLAROf8c5a872012-05-13 22:18:43 +00002813 spin_unlock_irqrestore(&priv->lock, flags);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002814 return 0;
2815}
2816
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002817int stmmac_resume(struct net_device *ndev)
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002818{
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002819 struct stmmac_priv *priv = netdev_priv(ndev);
Giuseppe CAVALLAROf8c5a872012-05-13 22:18:43 +00002820 unsigned long flags;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002821
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002822 if (!netif_running(ndev))
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002823 return 0;
2824
Giuseppe CAVALLAROf8c5a872012-05-13 22:18:43 +00002825 spin_lock_irqsave(&priv->lock, flags);
Giuseppe Cavallaroc4433be2010-09-06 05:02:11 +02002826
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002827 /* Power Down bit, into the PM register, is cleared
2828 * automatically as soon as a magic packet or a Wake-up frame
2829 * is received. Anyway, it's better to manually clear
2830 * this bit because it can generate problems while resuming
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002831 * from another devices (e.g. serial console).
2832 */
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002833 if (device_may_wakeup(priv->device))
Giuseppe Cavallaro543876c2010-09-24 21:27:41 -07002834 priv->hw->mac->pmt(priv->ioaddr, 0);
Giuseppe CAVALLAROba1377ff2012-04-04 04:33:25 +00002835 else
2836 /* enable the clk prevously disabled */
Stefan Roesea6308442012-09-21 01:06:29 +00002837 clk_prepare_enable(priv->stmmac_clk);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002838
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002839 netif_device_attach(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002840
2841 /* Enable the MAC and DMA */
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002842 stmmac_set_mac(priv->ioaddr, true);
Giuseppe CAVALLAROad01b7d2010-08-23 20:40:42 +00002843 priv->hw->dma->start_tx(priv->ioaddr);
2844 priv->hw->dma->start_rx(priv->ioaddr);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002845
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002846 napi_enable(&priv->napi);
2847
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002848 netif_start_queue(ndev);
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002849
Giuseppe CAVALLAROf8c5a872012-05-13 22:18:43 +00002850 spin_unlock_irqrestore(&priv->lock, flags);
Francesco Virlinzi102463b2011-11-16 21:58:02 +00002851
2852 if (priv->phydev)
2853 phy_start(priv->phydev);
2854
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002855 return 0;
2856}
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002857
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002858int stmmac_freeze(struct net_device *ndev)
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002859{
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002860 if (!ndev || !netif_running(ndev))
2861 return 0;
2862
2863 return stmmac_release(ndev);
2864}
2865
Giuseppe CAVALLARObfab27a2011-12-21 03:58:19 +00002866int stmmac_restore(struct net_device *ndev)
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002867{
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002868 if (!ndev || !netif_running(ndev))
2869 return 0;
2870
2871 return stmmac_open(ndev);
2872}
Giuseppe CAVALLARO874bd422010-11-24 02:38:11 +00002873#endif /* CONFIG_PM */
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002874
Giuseppe CAVALLARO33d5e332012-06-07 19:25:07 +00002875/* Driver can be configured w/ and w/ both PCI and Platf drivers
2876 * depending on the configuration selected.
2877 */
Giuseppe CAVALLAROba27ec62012-06-04 19:22:57 +00002878static int __init stmmac_init(void)
2879{
Konstantin Khlebnikov493682b2012-12-14 01:02:51 +00002880 int ret;
Giuseppe CAVALLAROba27ec62012-06-04 19:22:57 +00002881
Konstantin Khlebnikov493682b2012-12-14 01:02:51 +00002882 ret = stmmac_register_platform();
2883 if (ret)
2884 goto err;
2885 ret = stmmac_register_pci();
2886 if (ret)
2887 goto err_pci;
Giuseppe CAVALLARO33d5e332012-06-07 19:25:07 +00002888 return 0;
Konstantin Khlebnikov493682b2012-12-14 01:02:51 +00002889err_pci:
2890 stmmac_unregister_platform();
2891err:
2892 pr_err("stmmac: driver registration failed\n");
2893 return ret;
Giuseppe CAVALLAROba27ec62012-06-04 19:22:57 +00002894}
2895
2896static void __exit stmmac_exit(void)
2897{
Giuseppe CAVALLARO33d5e332012-06-07 19:25:07 +00002898 stmmac_unregister_platform();
2899 stmmac_unregister_pci();
Giuseppe CAVALLAROba27ec62012-06-04 19:22:57 +00002900}
2901
2902module_init(stmmac_init);
2903module_exit(stmmac_exit);
2904
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002905#ifndef MODULE
2906static int __init stmmac_cmdline_opt(char *str)
2907{
2908 char *opt;
2909
2910 if (!str || !*str)
2911 return -EINVAL;
2912 while ((opt = strsep(&str, ",")) != NULL) {
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002913 if (!strncmp(opt, "debug:", 6)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002914 if (kstrtoint(opt + 6, 0, &debug))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002915 goto err;
2916 } else if (!strncmp(opt, "phyaddr:", 8)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002917 if (kstrtoint(opt + 8, 0, &phyaddr))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002918 goto err;
2919 } else if (!strncmp(opt, "dma_txsize:", 11)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002920 if (kstrtoint(opt + 11, 0, &dma_txsize))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002921 goto err;
2922 } else if (!strncmp(opt, "dma_rxsize:", 11)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002923 if (kstrtoint(opt + 11, 0, &dma_rxsize))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002924 goto err;
2925 } else if (!strncmp(opt, "buf_sz:", 7)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002926 if (kstrtoint(opt + 7, 0, &buf_sz))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002927 goto err;
2928 } else if (!strncmp(opt, "tc:", 3)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002929 if (kstrtoint(opt + 3, 0, &tc))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002930 goto err;
2931 } else if (!strncmp(opt, "watchdog:", 9)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002932 if (kstrtoint(opt + 9, 0, &watchdog))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002933 goto err;
2934 } else if (!strncmp(opt, "flow_ctrl:", 10)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002935 if (kstrtoint(opt + 10, 0, &flow_ctrl))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002936 goto err;
2937 } else if (!strncmp(opt, "pause:", 6)) {
Giuseppe CAVALLAROea2ab872012-06-27 21:14:35 +00002938 if (kstrtoint(opt + 6, 0, &pause))
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002939 goto err;
Giuseppe CAVALLARO506f6692013-02-14 23:00:13 +00002940 } else if (!strncmp(opt, "eee_timer:", 10)) {
Giuseppe CAVALLAROd7659552012-06-27 21:14:37 +00002941 if (kstrtoint(opt + 10, 0, &eee_timer))
2942 goto err;
Giuseppe CAVALLARO4a7d6662013-03-26 04:43:05 +00002943 } else if (!strncmp(opt, "chain_mode:", 11)) {
2944 if (kstrtoint(opt + 11, 0, &chain_mode))
2945 goto err;
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002946 }
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002947 }
2948 return 0;
Giuseppe CAVALLAROf3240e22011-07-20 00:05:22 +00002949
2950err:
2951 pr_err("%s: ERROR broken module parameter conversion", __func__);
2952 return -EINVAL;
Giuseppe Cavallaro47dd7a52009-10-14 15:13:45 -07002953}
2954
2955__setup("stmmaceth=", stmmac_cmdline_opt);
Giuseppe CAVALLAROceb694992013-04-08 02:10:01 +00002956#endif /* MODULE */
Giuseppe Cavallaro6fc0d0f2011-12-23 14:21:20 -05002957
2958MODULE_DESCRIPTION("STMMAC 10/100/1000 Ethernet device driver");
2959MODULE_AUTHOR("Giuseppe Cavallaro <peppe.cavallaro@st.com>");
2960MODULE_LICENSE("GPL");