blob: 4f6e5be184dfbcc197317d9a6728f0ad3e258338 [file] [log] [blame]
Alexey Brodkine4f23792013-06-24 09:54:27 +04001/*
2 * Copyright (C) 2004-2013 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Driver for the ARC EMAC 10100 (hardware revision 5)
9 *
10 * Contributors:
11 * Amit Bhor
12 * Sameer Dhavale
13 * Vineet Gupta
14 */
15
Beniamino Galvani775dd682014-05-11 18:11:47 +020016#include <linux/crc32.h>
Alexey Brodkine4f23792013-06-24 09:54:27 +040017#include <linux/etherdevice.h>
18#include <linux/interrupt.h>
19#include <linux/io.h>
20#include <linux/module.h>
21#include <linux/of_address.h>
22#include <linux/of_irq.h>
23#include <linux/of_mdio.h>
24#include <linux/of_net.h>
25#include <linux/of_platform.h>
26
27#include "emac.h"
28
Alexey Brodkine4f23792013-06-24 09:54:27 +040029
30/**
Beniamino Galvani74dd40b2014-09-10 22:50:03 +020031 * arc_emac_tx_avail - Return the number of available slots in the tx ring.
32 * @priv: Pointer to ARC EMAC private data structure.
33 *
34 * returns: the number of slots available for transmission in tx the ring.
35 */
36static inline int arc_emac_tx_avail(struct arc_emac_priv *priv)
37{
38 return (priv->txbd_dirty + TX_BD_NUM - priv->txbd_curr - 1) % TX_BD_NUM;
39}
40
41/**
Alexey Brodkine4f23792013-06-24 09:54:27 +040042 * arc_emac_adjust_link - Adjust the PHY link duplex.
43 * @ndev: Pointer to the net_device structure.
44 *
45 * This function is called to change the duplex setting after auto negotiation
46 * is done by the PHY.
47 */
48static void arc_emac_adjust_link(struct net_device *ndev)
49{
50 struct arc_emac_priv *priv = netdev_priv(ndev);
51 struct phy_device *phy_dev = priv->phy_dev;
52 unsigned int reg, state_changed = 0;
53
54 if (priv->link != phy_dev->link) {
55 priv->link = phy_dev->link;
56 state_changed = 1;
57 }
58
59 if (priv->speed != phy_dev->speed) {
60 priv->speed = phy_dev->speed;
61 state_changed = 1;
Romain Perier6eacf312014-09-08 17:14:47 +000062 if (priv->set_mac_speed)
63 priv->set_mac_speed(priv, priv->speed);
Alexey Brodkine4f23792013-06-24 09:54:27 +040064 }
65
66 if (priv->duplex != phy_dev->duplex) {
67 reg = arc_reg_get(priv, R_CTRL);
68
69 if (DUPLEX_FULL == phy_dev->duplex)
70 reg |= ENFL_MASK;
71 else
72 reg &= ~ENFL_MASK;
73
74 arc_reg_set(priv, R_CTRL, reg);
75 priv->duplex = phy_dev->duplex;
76 state_changed = 1;
77 }
78
79 if (state_changed)
80 phy_print_status(phy_dev);
81}
82
83/**
84 * arc_emac_get_settings - Get PHY settings.
85 * @ndev: Pointer to net_device structure.
86 * @cmd: Pointer to ethtool_cmd structure.
87 *
88 * This implements ethtool command for getting PHY settings. If PHY could
89 * not be found, the function returns -ENODEV. This function calls the
90 * relevant PHY ethtool API to get the PHY settings.
91 * Issue "ethtool ethX" under linux prompt to execute this function.
92 */
93static int arc_emac_get_settings(struct net_device *ndev,
94 struct ethtool_cmd *cmd)
95{
96 struct arc_emac_priv *priv = netdev_priv(ndev);
97
98 return phy_ethtool_gset(priv->phy_dev, cmd);
99}
100
101/**
102 * arc_emac_set_settings - Set PHY settings as passed in the argument.
103 * @ndev: Pointer to net_device structure.
104 * @cmd: Pointer to ethtool_cmd structure.
105 *
106 * This implements ethtool command for setting various PHY settings. If PHY
107 * could not be found, the function returns -ENODEV. This function calls the
108 * relevant PHY ethtool API to set the PHY.
109 * Issue e.g. "ethtool -s ethX speed 1000" under linux prompt to execute this
110 * function.
111 */
112static int arc_emac_set_settings(struct net_device *ndev,
113 struct ethtool_cmd *cmd)
114{
115 struct arc_emac_priv *priv = netdev_priv(ndev);
116
117 if (!capable(CAP_NET_ADMIN))
118 return -EPERM;
119
120 return phy_ethtool_sset(priv->phy_dev, cmd);
121}
122
123/**
124 * arc_emac_get_drvinfo - Get EMAC driver information.
125 * @ndev: Pointer to net_device structure.
126 * @info: Pointer to ethtool_drvinfo structure.
127 *
128 * This implements ethtool command for getting the driver information.
129 * Issue "ethtool -i ethX" under linux prompt to execute this function.
130 */
131static void arc_emac_get_drvinfo(struct net_device *ndev,
132 struct ethtool_drvinfo *info)
133{
Romain Perier23d2d9a2014-08-26 13:14:51 +0000134 struct arc_emac_priv *priv = netdev_priv(ndev);
135
136 strlcpy(info->driver, priv->drv_name, sizeof(info->driver));
137 strlcpy(info->version, priv->drv_version, sizeof(info->version));
Alexey Brodkine4f23792013-06-24 09:54:27 +0400138}
139
140static const struct ethtool_ops arc_emac_ethtool_ops = {
141 .get_settings = arc_emac_get_settings,
142 .set_settings = arc_emac_set_settings,
143 .get_drvinfo = arc_emac_get_drvinfo,
144 .get_link = ethtool_op_get_link,
145};
146
147#define FIRST_OR_LAST_MASK (FIRST_MASK | LAST_MASK)
148
149/**
150 * arc_emac_tx_clean - clears processed by EMAC Tx BDs.
151 * @ndev: Pointer to the network device.
152 */
153static void arc_emac_tx_clean(struct net_device *ndev)
154{
155 struct arc_emac_priv *priv = netdev_priv(ndev);
Tobias Klauserff458f62014-07-09 11:07:37 +0200156 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400157 unsigned int i;
158
159 for (i = 0; i < TX_BD_NUM; i++) {
160 unsigned int *txbd_dirty = &priv->txbd_dirty;
161 struct arc_emac_bd *txbd = &priv->txbd[*txbd_dirty];
162 struct buffer_state *tx_buff = &priv->tx_buff[*txbd_dirty];
163 struct sk_buff *skb = tx_buff->skb;
164 unsigned int info = le32_to_cpu(txbd->info);
165
Alexander Kochetkovc278c252016-02-09 18:20:38 +0300166 if ((info & FOR_EMAC) || !txbd->data || !skb)
Alexey Brodkine4f23792013-06-24 09:54:27 +0400167 break;
168
169 if (unlikely(info & (DROP | DEFR | LTCL | UFLO))) {
170 stats->tx_errors++;
171 stats->tx_dropped++;
172
173 if (info & DEFR)
174 stats->tx_carrier_errors++;
175
176 if (info & LTCL)
177 stats->collisions++;
178
179 if (info & UFLO)
180 stats->tx_fifo_errors++;
181 } else if (likely(info & FIRST_OR_LAST_MASK)) {
182 stats->tx_packets++;
183 stats->tx_bytes += skb->len;
184 }
185
Alexey Brodkina4a11392013-06-26 11:49:26 +0400186 dma_unmap_single(&ndev->dev, dma_unmap_addr(tx_buff, addr),
187 dma_unmap_len(tx_buff, len), DMA_TO_DEVICE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400188
189 /* return the sk_buff to system */
190 dev_kfree_skb_irq(skb);
191
192 txbd->data = 0;
193 txbd->info = 0;
Alexander Kochetkovc278c252016-02-09 18:20:38 +0300194 tx_buff->skb = NULL;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400195
Vineet Gupta27082ee2013-09-04 17:17:15 +0530196 *txbd_dirty = (*txbd_dirty + 1) % TX_BD_NUM;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400197 }
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200198
199 /* Ensure that txbd_dirty is visible to tx() before checking
200 * for queue stopped.
201 */
202 smp_mb();
203
204 if (netif_queue_stopped(ndev) && arc_emac_tx_avail(priv))
205 netif_wake_queue(ndev);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400206}
207
208/**
209 * arc_emac_rx - processing of Rx packets.
210 * @ndev: Pointer to the network device.
211 * @budget: How many BDs to process on 1 call.
212 *
213 * returns: Number of processed BDs
214 *
215 * Iterate through Rx BDs and deliver received packages to upper layer.
216 */
217static int arc_emac_rx(struct net_device *ndev, int budget)
218{
219 struct arc_emac_priv *priv = netdev_priv(ndev);
220 unsigned int work_done;
221
Alexey Brodkin9cff8662013-08-13 17:04:36 +0400222 for (work_done = 0; work_done < budget; work_done++) {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400223 unsigned int *last_rx_bd = &priv->last_rx_bd;
Tobias Klauserff458f62014-07-09 11:07:37 +0200224 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400225 struct buffer_state *rx_buff = &priv->rx_buff[*last_rx_bd];
226 struct arc_emac_bd *rxbd = &priv->rxbd[*last_rx_bd];
Alexey Brodkine4f23792013-06-24 09:54:27 +0400227 unsigned int pktlen, info = le32_to_cpu(rxbd->info);
228 struct sk_buff *skb;
229 dma_addr_t addr;
230
231 if (unlikely((info & OWN_MASK) == FOR_EMAC))
232 break;
233
234 /* Make a note that we saw a packet at this BD.
235 * So next time, driver starts from this + 1
236 */
237 *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
238
239 if (unlikely((info & FIRST_OR_LAST_MASK) !=
240 FIRST_OR_LAST_MASK)) {
241 /* We pre-allocate buffers of MTU size so incoming
242 * packets won't be split/chained.
243 */
244 if (net_ratelimit())
245 netdev_err(ndev, "incomplete packet received\n");
246
247 /* Return ownership to EMAC */
Alexey Brodkina4a11392013-06-26 11:49:26 +0400248 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400249 stats->rx_errors++;
250 stats->rx_length_errors++;
251 continue;
252 }
253
254 pktlen = info & LEN_MASK;
255 stats->rx_packets++;
256 stats->rx_bytes += pktlen;
257 skb = rx_buff->skb;
258 skb_put(skb, pktlen);
259 skb->dev = ndev;
260 skb->protocol = eth_type_trans(skb, ndev);
261
Alexey Brodkina4a11392013-06-26 11:49:26 +0400262 dma_unmap_single(&ndev->dev, dma_unmap_addr(rx_buff, addr),
263 dma_unmap_len(rx_buff, len), DMA_FROM_DEVICE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400264
265 /* Prepare the BD for next cycle */
Alexey Brodkina4a11392013-06-26 11:49:26 +0400266 rx_buff->skb = netdev_alloc_skb_ip_align(ndev,
267 EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400268 if (unlikely(!rx_buff->skb)) {
269 stats->rx_errors++;
270 /* Because receive_skb is below, increment rx_dropped */
271 stats->rx_dropped++;
272 continue;
273 }
274
275 /* receive_skb only if new skb was allocated to avoid holes */
276 netif_receive_skb(skb);
277
278 addr = dma_map_single(&ndev->dev, (void *)rx_buff->skb->data,
Alexey Brodkina4a11392013-06-26 11:49:26 +0400279 EMAC_BUFFER_SIZE, DMA_FROM_DEVICE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400280 if (dma_mapping_error(&ndev->dev, addr)) {
281 if (net_ratelimit())
282 netdev_err(ndev, "cannot dma map\n");
283 dev_kfree_skb(rx_buff->skb);
284 stats->rx_errors++;
285 continue;
286 }
Alexey Brodkina4a11392013-06-26 11:49:26 +0400287 dma_unmap_addr_set(rx_buff, addr, addr);
288 dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400289
Alexey Brodkina4a11392013-06-26 11:49:26 +0400290 rxbd->data = cpu_to_le32(addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400291
292 /* Make sure pointer to data buffer is set */
293 wmb();
294
295 /* Return ownership to EMAC */
Alexey Brodkina4a11392013-06-26 11:49:26 +0400296 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400297 }
298
299 return work_done;
300}
301
302/**
303 * arc_emac_poll - NAPI poll handler.
304 * @napi: Pointer to napi_struct structure.
305 * @budget: How many BDs to process on 1 call.
306 *
307 * returns: Number of processed BDs
308 */
309static int arc_emac_poll(struct napi_struct *napi, int budget)
310{
311 struct net_device *ndev = napi->dev;
312 struct arc_emac_priv *priv = netdev_priv(ndev);
313 unsigned int work_done;
314
315 arc_emac_tx_clean(ndev);
316
317 work_done = arc_emac_rx(ndev, budget);
318 if (work_done < budget) {
319 napi_complete(napi);
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200320 arc_reg_or(priv, R_ENABLE, RXINT_MASK | TXINT_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400321 }
322
323 return work_done;
324}
325
326/**
327 * arc_emac_intr - Global interrupt handler for EMAC.
328 * @irq: irq number.
329 * @dev_instance: device instance.
330 *
331 * returns: IRQ_HANDLED for all cases.
332 *
333 * ARC EMAC has only 1 interrupt line, and depending on bits raised in
334 * STATUS register we may tell what is a reason for interrupt to fire.
335 */
336static irqreturn_t arc_emac_intr(int irq, void *dev_instance)
337{
338 struct net_device *ndev = dev_instance;
339 struct arc_emac_priv *priv = netdev_priv(ndev);
Tobias Klauserff458f62014-07-09 11:07:37 +0200340 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400341 unsigned int status;
342
343 status = arc_reg_get(priv, R_STATUS);
344 status &= ~MDIO_MASK;
345
346 /* Reset all flags except "MDIO complete" */
347 arc_reg_set(priv, R_STATUS, status);
348
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200349 if (status & (RXINT_MASK | TXINT_MASK)) {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400350 if (likely(napi_schedule_prep(&priv->napi))) {
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200351 arc_reg_clr(priv, R_ENABLE, RXINT_MASK | TXINT_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400352 __napi_schedule(&priv->napi);
353 }
354 }
355
356 if (status & ERR_MASK) {
357 /* MSER/RXCR/RXFR/RXFL interrupt fires on corresponding
358 * 8-bit error counter overrun.
359 */
360
361 if (status & MSER_MASK) {
362 stats->rx_missed_errors += 0x100;
363 stats->rx_errors += 0x100;
364 }
365
366 if (status & RXCR_MASK) {
367 stats->rx_crc_errors += 0x100;
368 stats->rx_errors += 0x100;
369 }
370
371 if (status & RXFR_MASK) {
372 stats->rx_frame_errors += 0x100;
373 stats->rx_errors += 0x100;
374 }
375
376 if (status & RXFL_MASK) {
377 stats->rx_over_errors += 0x100;
378 stats->rx_errors += 0x100;
379 }
380 }
381
382 return IRQ_HANDLED;
383}
384
Beniamino Galvani5a45e572014-05-11 18:11:48 +0200385#ifdef CONFIG_NET_POLL_CONTROLLER
386static void arc_emac_poll_controller(struct net_device *dev)
387{
388 disable_irq(dev->irq);
389 arc_emac_intr(dev->irq, dev);
390 enable_irq(dev->irq);
391}
392#endif
393
Alexey Brodkine4f23792013-06-24 09:54:27 +0400394/**
395 * arc_emac_open - Open the network device.
396 * @ndev: Pointer to the network device.
397 *
398 * returns: 0, on success or non-zero error value on failure.
399 *
400 * This function sets the MAC address, requests and enables an IRQ
401 * for the EMAC device and starts the Tx queue.
402 * It also connects to the phy device.
403 */
404static int arc_emac_open(struct net_device *ndev)
405{
406 struct arc_emac_priv *priv = netdev_priv(ndev);
407 struct phy_device *phy_dev = priv->phy_dev;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400408 int i;
409
410 phy_dev->autoneg = AUTONEG_ENABLE;
411 phy_dev->speed = 0;
412 phy_dev->duplex = 0;
Florian Fainellib0ac9562013-12-05 14:52:15 -0800413 phy_dev->advertising &= phy_dev->supported;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400414
Alexey Brodkina4a11392013-06-26 11:49:26 +0400415 priv->last_rx_bd = 0;
416
Alexey Brodkine4f23792013-06-24 09:54:27 +0400417 /* Allocate and set buffers for Rx BD's */
Alexey Brodkine4f23792013-06-24 09:54:27 +0400418 for (i = 0; i < RX_BD_NUM; i++) {
Alexey Brodkina4a11392013-06-26 11:49:26 +0400419 dma_addr_t addr;
420 unsigned int *last_rx_bd = &priv->last_rx_bd;
421 struct arc_emac_bd *rxbd = &priv->rxbd[*last_rx_bd];
422 struct buffer_state *rx_buff = &priv->rx_buff[*last_rx_bd];
423
424 rx_buff->skb = netdev_alloc_skb_ip_align(ndev,
425 EMAC_BUFFER_SIZE);
426 if (unlikely(!rx_buff->skb))
Alexey Brodkine4f23792013-06-24 09:54:27 +0400427 return -ENOMEM;
428
Alexey Brodkina4a11392013-06-26 11:49:26 +0400429 addr = dma_map_single(&ndev->dev, (void *)rx_buff->skb->data,
430 EMAC_BUFFER_SIZE, DMA_FROM_DEVICE);
431 if (dma_mapping_error(&ndev->dev, addr)) {
432 netdev_err(ndev, "cannot dma map\n");
433 dev_kfree_skb(rx_buff->skb);
434 return -ENOMEM;
435 }
436 dma_unmap_addr_set(rx_buff, addr, addr);
437 dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
438
439 rxbd->data = cpu_to_le32(addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400440
441 /* Make sure pointer to data buffer is set */
442 wmb();
443
Alexey Brodkina4a11392013-06-26 11:49:26 +0400444 /* Return ownership to EMAC */
445 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400446
Alexey Brodkina4a11392013-06-26 11:49:26 +0400447 *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
448 }
Alexey Brodkine4f23792013-06-24 09:54:27 +0400449
Alexander Kochetkov99f93a152016-02-09 18:20:39 +0300450 priv->txbd_curr = 0;
451 priv->txbd_dirty = 0;
452
Alexey Brodkine4f23792013-06-24 09:54:27 +0400453 /* Clean Tx BD's */
454 memset(priv->txbd, 0, TX_RING_SZ);
455
456 /* Initialize logical address filter */
457 arc_reg_set(priv, R_LAFL, 0);
458 arc_reg_set(priv, R_LAFH, 0);
459
460 /* Set BD ring pointers for device side */
461 arc_reg_set(priv, R_RX_RING, (unsigned int)priv->rxbd_dma);
462 arc_reg_set(priv, R_TX_RING, (unsigned int)priv->txbd_dma);
463
464 /* Enable interrupts */
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200465 arc_reg_set(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400466
467 /* Set CONTROL */
468 arc_reg_set(priv, R_CTRL,
469 (RX_BD_NUM << 24) | /* RX BD table length */
470 (TX_BD_NUM << 16) | /* TX BD table length */
471 TXRN_MASK | RXRN_MASK);
472
473 napi_enable(&priv->napi);
474
475 /* Enable EMAC */
476 arc_reg_or(priv, R_CTRL, EN_MASK);
477
478 phy_start_aneg(priv->phy_dev);
479
480 netif_start_queue(ndev);
481
482 return 0;
483}
484
485/**
Beniamino Galvani775dd682014-05-11 18:11:47 +0200486 * arc_emac_set_rx_mode - Change the receive filtering mode.
487 * @ndev: Pointer to the network device.
488 *
489 * This function enables/disables promiscuous or all-multicast mode
490 * and updates the multicast filtering list of the network device.
491 */
492static void arc_emac_set_rx_mode(struct net_device *ndev)
493{
494 struct arc_emac_priv *priv = netdev_priv(ndev);
495
496 if (ndev->flags & IFF_PROMISC) {
497 arc_reg_or(priv, R_CTRL, PROM_MASK);
498 } else {
499 arc_reg_clr(priv, R_CTRL, PROM_MASK);
500
501 if (ndev->flags & IFF_ALLMULTI) {
502 arc_reg_set(priv, R_LAFL, ~0);
503 arc_reg_set(priv, R_LAFH, ~0);
504 } else {
505 struct netdev_hw_addr *ha;
506 unsigned int filter[2] = { 0, 0 };
507 int bit;
508
509 netdev_for_each_mc_addr(ha, ndev) {
510 bit = ether_crc_le(ETH_ALEN, ha->addr) >> 26;
511 filter[bit >> 5] |= 1 << (bit & 31);
512 }
513
514 arc_reg_set(priv, R_LAFL, filter[0]);
515 arc_reg_set(priv, R_LAFH, filter[1]);
516 }
517 }
518}
519
520/**
Alexey Brodkine4f23792013-06-24 09:54:27 +0400521 * arc_emac_stop - Close the network device.
522 * @ndev: Pointer to the network device.
523 *
524 * This function stops the Tx queue, disables interrupts and frees the IRQ for
525 * the EMAC device.
526 * It also disconnects the PHY device associated with the EMAC device.
527 */
528static int arc_emac_stop(struct net_device *ndev)
529{
530 struct arc_emac_priv *priv = netdev_priv(ndev);
531
532 napi_disable(&priv->napi);
533 netif_stop_queue(ndev);
534
535 /* Disable interrupts */
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200536 arc_reg_clr(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400537
538 /* Disable EMAC */
539 arc_reg_clr(priv, R_CTRL, EN_MASK);
540
541 return 0;
542}
543
544/**
545 * arc_emac_stats - Get system network statistics.
546 * @ndev: Pointer to net_device structure.
547 *
548 * Returns the address of the device statistics structure.
549 * Statistics are updated in interrupt handler.
550 */
551static struct net_device_stats *arc_emac_stats(struct net_device *ndev)
552{
553 struct arc_emac_priv *priv = netdev_priv(ndev);
Tobias Klauserff458f62014-07-09 11:07:37 +0200554 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400555 unsigned long miss, rxerr;
556 u8 rxcrc, rxfram, rxoflow;
557
558 rxerr = arc_reg_get(priv, R_RXERR);
559 miss = arc_reg_get(priv, R_MISS);
560
561 rxcrc = rxerr;
562 rxfram = rxerr >> 8;
563 rxoflow = rxerr >> 16;
564
565 stats->rx_errors += miss;
566 stats->rx_errors += rxcrc + rxfram + rxoflow;
567
568 stats->rx_over_errors += rxoflow;
569 stats->rx_frame_errors += rxfram;
570 stats->rx_crc_errors += rxcrc;
571 stats->rx_missed_errors += miss;
572
573 return stats;
574}
575
576/**
577 * arc_emac_tx - Starts the data transmission.
578 * @skb: sk_buff pointer that contains data to be Transmitted.
579 * @ndev: Pointer to net_device structure.
580 *
581 * returns: NETDEV_TX_OK, on success
582 * NETDEV_TX_BUSY, if any of the descriptors are not free.
583 *
584 * This function is invoked from upper layers to initiate transmission.
585 */
586static int arc_emac_tx(struct sk_buff *skb, struct net_device *ndev)
587{
588 struct arc_emac_priv *priv = netdev_priv(ndev);
589 unsigned int len, *txbd_curr = &priv->txbd_curr;
Tobias Klauserff458f62014-07-09 11:07:37 +0200590 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400591 __le32 *info = &priv->txbd[*txbd_curr].info;
592 dma_addr_t addr;
593
594 if (skb_padto(skb, ETH_ZLEN))
595 return NETDEV_TX_OK;
596
597 len = max_t(unsigned int, ETH_ZLEN, skb->len);
598
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200599 if (unlikely(!arc_emac_tx_avail(priv))) {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400600 netif_stop_queue(ndev);
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200601 netdev_err(ndev, "BUG! Tx Ring full when queue awake!\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400602 return NETDEV_TX_BUSY;
603 }
604
605 addr = dma_map_single(&ndev->dev, (void *)skb->data, len,
606 DMA_TO_DEVICE);
607
608 if (unlikely(dma_mapping_error(&ndev->dev, addr))) {
609 stats->tx_dropped++;
610 stats->tx_errors++;
611 dev_kfree_skb(skb);
612 return NETDEV_TX_OK;
613 }
Alexey Brodkina4a11392013-06-26 11:49:26 +0400614 dma_unmap_addr_set(&priv->tx_buff[*txbd_curr], addr, addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400615 dma_unmap_len_set(&priv->tx_buff[*txbd_curr], len, len);
616
Alexey Brodkina4a11392013-06-26 11:49:26 +0400617 priv->txbd[*txbd_curr].data = cpu_to_le32(addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400618
619 /* Make sure pointer to data buffer is set */
620 wmb();
621
Eric Dumazet37ec2742013-12-19 18:10:40 -0800622 skb_tx_timestamp(skb);
623
Alexey Brodkine4f23792013-06-24 09:54:27 +0400624 *info = cpu_to_le32(FOR_EMAC | FIRST_OR_LAST_MASK | len);
625
Alexander Kochetkovc278c252016-02-09 18:20:38 +0300626 /* Make sure info word is set */
627 wmb();
628
629 priv->tx_buff[*txbd_curr].skb = skb;
630
Alexey Brodkine4f23792013-06-24 09:54:27 +0400631 /* Increment index to point to the next BD */
632 *txbd_curr = (*txbd_curr + 1) % TX_BD_NUM;
633
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200634 /* Ensure that tx_clean() sees the new txbd_curr before
635 * checking the queue status. This prevents an unneeded wake
636 * of the queue in tx_clean().
637 */
638 smp_mb();
Alexey Brodkine4f23792013-06-24 09:54:27 +0400639
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200640 if (!arc_emac_tx_avail(priv)) {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400641 netif_stop_queue(ndev);
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200642 /* Refresh tx_dirty */
643 smp_mb();
644 if (arc_emac_tx_avail(priv))
645 netif_start_queue(ndev);
646 }
Alexey Brodkine4f23792013-06-24 09:54:27 +0400647
648 arc_reg_set(priv, R_STATUS, TXPL_MASK);
649
Alexey Brodkine4f23792013-06-24 09:54:27 +0400650 return NETDEV_TX_OK;
651}
652
Max Schwarz235a2512014-04-18 02:17:32 +0200653static void arc_emac_set_address_internal(struct net_device *ndev)
654{
655 struct arc_emac_priv *priv = netdev_priv(ndev);
656 unsigned int addr_low, addr_hi;
657
658 addr_low = le32_to_cpu(*(__le32 *) &ndev->dev_addr[0]);
659 addr_hi = le16_to_cpu(*(__le16 *) &ndev->dev_addr[4]);
660
661 arc_reg_set(priv, R_ADDRL, addr_low);
662 arc_reg_set(priv, R_ADDRH, addr_hi);
663}
664
Alexey Brodkine4f23792013-06-24 09:54:27 +0400665/**
666 * arc_emac_set_address - Set the MAC address for this device.
667 * @ndev: Pointer to net_device structure.
668 * @p: 6 byte Address to be written as MAC address.
669 *
670 * This function copies the HW address from the sockaddr structure to the
671 * net_device structure and updates the address in HW.
672 *
673 * returns: -EBUSY if the net device is busy or 0 if the address is set
674 * successfully.
675 */
676static int arc_emac_set_address(struct net_device *ndev, void *p)
677{
Alexey Brodkine4f23792013-06-24 09:54:27 +0400678 struct sockaddr *addr = p;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400679
680 if (netif_running(ndev))
681 return -EBUSY;
682
683 if (!is_valid_ether_addr(addr->sa_data))
684 return -EADDRNOTAVAIL;
685
686 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
687
Max Schwarz235a2512014-04-18 02:17:32 +0200688 arc_emac_set_address_internal(ndev);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400689
690 return 0;
691}
692
693static const struct net_device_ops arc_emac_netdev_ops = {
694 .ndo_open = arc_emac_open,
695 .ndo_stop = arc_emac_stop,
696 .ndo_start_xmit = arc_emac_tx,
697 .ndo_set_mac_address = arc_emac_set_address,
698 .ndo_get_stats = arc_emac_stats,
Beniamino Galvani775dd682014-05-11 18:11:47 +0200699 .ndo_set_rx_mode = arc_emac_set_rx_mode,
Beniamino Galvani5a45e572014-05-11 18:11:48 +0200700#ifdef CONFIG_NET_POLL_CONTROLLER
701 .ndo_poll_controller = arc_emac_poll_controller,
702#endif
Alexey Brodkine4f23792013-06-24 09:54:27 +0400703};
704
Romain Perier23d2d9a2014-08-26 13:14:51 +0000705int arc_emac_probe(struct net_device *ndev, int interface)
Alexey Brodkine4f23792013-06-24 09:54:27 +0400706{
Romain Perier23d2d9a2014-08-26 13:14:51 +0000707 struct device *dev = ndev->dev.parent;
Thierry Redingf7578492013-09-18 15:24:44 +0200708 struct resource res_regs;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400709 struct device_node *phy_node;
710 struct arc_emac_priv *priv;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400711 const char *mac_addr;
Thierry Redingf7578492013-09-18 15:24:44 +0200712 unsigned int id, clock_frequency, irq;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400713 int err;
714
Alexey Brodkine4f23792013-06-24 09:54:27 +0400715
716 /* Get PHY from device tree */
Romain Perierf15f44e2014-08-26 13:14:49 +0000717 phy_node = of_parse_phandle(dev->of_node, "phy", 0);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400718 if (!phy_node) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000719 dev_err(dev, "failed to retrieve phy description from device tree\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400720 return -ENODEV;
721 }
722
723 /* Get EMAC registers base address from device tree */
Romain Perierf15f44e2014-08-26 13:14:49 +0000724 err = of_address_to_resource(dev->of_node, 0, &res_regs);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400725 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000726 dev_err(dev, "failed to retrieve registers base from device tree\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400727 return -ENODEV;
728 }
729
Alexey Brodkine4f23792013-06-24 09:54:27 +0400730 /* Get IRQ from device tree */
Romain Perierf15f44e2014-08-26 13:14:49 +0000731 irq = irq_of_parse_and_map(dev->of_node, 0);
Thierry Redingf7578492013-09-18 15:24:44 +0200732 if (!irq) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000733 dev_err(dev, "failed to retrieve <irq> value from device tree\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400734 return -ENODEV;
735 }
736
Alexey Brodkine4f23792013-06-24 09:54:27 +0400737
738 ndev->netdev_ops = &arc_emac_netdev_ops;
739 ndev->ethtool_ops = &arc_emac_ethtool_ops;
740 ndev->watchdog_timeo = TX_TIMEOUT;
741 /* FIXME :: no multicast support yet */
742 ndev->flags &= ~IFF_MULTICAST;
743
744 priv = netdev_priv(ndev);
Romain Perierf15f44e2014-08-26 13:14:49 +0000745 priv->dev = dev;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400746
Romain Perierf15f44e2014-08-26 13:14:49 +0000747 priv->regs = devm_ioremap_resource(dev, &res_regs);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400748 if (IS_ERR(priv->regs)) {
Romain Perier23d2d9a2014-08-26 13:14:51 +0000749 return PTR_ERR(priv->regs);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400750 }
Romain Perierf15f44e2014-08-26 13:14:49 +0000751 dev_dbg(dev, "Registers base address is 0x%p\n", priv->regs);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400752
Romain Perier23d2d9a2014-08-26 13:14:51 +0000753 if (priv->clk) {
Heiko Stübner88154c92014-04-25 10:06:13 +0200754 err = clk_prepare_enable(priv->clk);
755 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000756 dev_err(dev, "failed to enable clock\n");
Romain Perier23d2d9a2014-08-26 13:14:51 +0000757 return err;
Heiko Stübner88154c92014-04-25 10:06:13 +0200758 }
759
760 clock_frequency = clk_get_rate(priv->clk);
Romain Perier23d2d9a2014-08-26 13:14:51 +0000761 } else {
762 /* Get CPU clock frequency from device tree */
763 if (of_property_read_u32(dev->of_node, "clock-frequency",
764 &clock_frequency)) {
765 dev_err(dev, "failed to retrieve <clock-frequency> from device tree\n");
766 return -EINVAL;
767 }
Heiko Stübner88154c92014-04-25 10:06:13 +0200768 }
769
Alexey Brodkine4f23792013-06-24 09:54:27 +0400770 id = arc_reg_get(priv, R_ID);
771
772 /* Check for EMAC revision 5 or 7, magic number */
773 if (!(id == 0x0005fd02 || id == 0x0007fd02)) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000774 dev_err(dev, "ARC EMAC not detected, id=0x%x\n", id);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400775 err = -ENODEV;
Heiko Stübner88154c92014-04-25 10:06:13 +0200776 goto out_clken;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400777 }
Romain Perierf15f44e2014-08-26 13:14:49 +0000778 dev_info(dev, "ARC EMAC detected with id: 0x%x\n", id);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400779
780 /* Set poll rate so that it polls every 1 ms */
781 arc_reg_set(priv, R_POLLRATE, clock_frequency / 1000000);
782
Thierry Redingf7578492013-09-18 15:24:44 +0200783 ndev->irq = irq;
Romain Perierf15f44e2014-08-26 13:14:49 +0000784 dev_info(dev, "IRQ is %d\n", ndev->irq);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400785
786 /* Register interrupt handler for device */
Romain Perierf15f44e2014-08-26 13:14:49 +0000787 err = devm_request_irq(dev, ndev->irq, arc_emac_intr, 0,
Alexey Brodkine4f23792013-06-24 09:54:27 +0400788 ndev->name, ndev);
789 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000790 dev_err(dev, "could not allocate IRQ\n");
Heiko Stübner88154c92014-04-25 10:06:13 +0200791 goto out_clken;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400792 }
793
794 /* Get MAC address from device tree */
Romain Perierf15f44e2014-08-26 13:14:49 +0000795 mac_addr = of_get_mac_address(dev->of_node);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400796
Luka Perkov99470812013-10-30 00:11:00 +0100797 if (mac_addr)
Alexey Brodkine4f23792013-06-24 09:54:27 +0400798 memcpy(ndev->dev_addr, mac_addr, ETH_ALEN);
Luka Perkov99470812013-10-30 00:11:00 +0100799 else
800 eth_hw_addr_random(ndev);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400801
Max Schwarz235a2512014-04-18 02:17:32 +0200802 arc_emac_set_address_internal(ndev);
Romain Perierf15f44e2014-08-26 13:14:49 +0000803 dev_info(dev, "MAC address is now %pM\n", ndev->dev_addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400804
805 /* Do 1 allocation instead of 2 separate ones for Rx and Tx BD rings */
Romain Perierf15f44e2014-08-26 13:14:49 +0000806 priv->rxbd = dmam_alloc_coherent(dev, RX_RING_SZ + TX_RING_SZ,
Alexey Brodkine4f23792013-06-24 09:54:27 +0400807 &priv->rxbd_dma, GFP_KERNEL);
808
809 if (!priv->rxbd) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000810 dev_err(dev, "failed to allocate data buffers\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400811 err = -ENOMEM;
Heiko Stübner88154c92014-04-25 10:06:13 +0200812 goto out_clken;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400813 }
814
815 priv->txbd = priv->rxbd + RX_BD_NUM;
816
817 priv->txbd_dma = priv->rxbd_dma + RX_RING_SZ;
Romain Perierf15f44e2014-08-26 13:14:49 +0000818 dev_dbg(dev, "EMAC Device addr: Rx Ring [0x%x], Tx Ring[%x]\n",
Alexey Brodkine4f23792013-06-24 09:54:27 +0400819 (unsigned int)priv->rxbd_dma, (unsigned int)priv->txbd_dma);
820
Romain Perier93e91b32014-08-26 13:14:50 +0000821 err = arc_mdio_probe(priv);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400822 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000823 dev_err(dev, "failed to probe MII bus\n");
Heiko Stübner88154c92014-04-25 10:06:13 +0200824 goto out_clken;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400825 }
826
827 priv->phy_dev = of_phy_connect(ndev, phy_node, arc_emac_adjust_link, 0,
Romain Perier23d2d9a2014-08-26 13:14:51 +0000828 interface);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400829 if (!priv->phy_dev) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000830 dev_err(dev, "of_phy_connect() failed\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400831 err = -ENODEV;
Heiko Stübner796bec12014-04-25 10:03:29 +0200832 goto out_mdio;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400833 }
834
Romain Perierf15f44e2014-08-26 13:14:49 +0000835 dev_info(dev, "connected to %s phy with id 0x%x\n",
Alexey Brodkine4f23792013-06-24 09:54:27 +0400836 priv->phy_dev->drv->name, priv->phy_dev->phy_id);
837
838 netif_napi_add(ndev, &priv->napi, arc_emac_poll, ARC_EMAC_NAPI_WEIGHT);
839
840 err = register_netdev(ndev);
841 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000842 dev_err(dev, "failed to register network device\n");
Heiko Stübner796bec12014-04-25 10:03:29 +0200843 goto out_netif_api;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400844 }
845
846 return 0;
847
Heiko Stübner796bec12014-04-25 10:03:29 +0200848out_netif_api:
849 netif_napi_del(&priv->napi);
850 phy_disconnect(priv->phy_dev);
851 priv->phy_dev = NULL;
852out_mdio:
853 arc_mdio_remove(priv);
Heiko Stübner88154c92014-04-25 10:06:13 +0200854out_clken:
Romain Perier23d2d9a2014-08-26 13:14:51 +0000855 if (priv->clk)
Heiko Stübner88154c92014-04-25 10:06:13 +0200856 clk_disable_unprepare(priv->clk);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400857 return err;
858}
Romain Perier23d2d9a2014-08-26 13:14:51 +0000859EXPORT_SYMBOL_GPL(arc_emac_probe);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400860
Romain Perier23d2d9a2014-08-26 13:14:51 +0000861int arc_emac_remove(struct net_device *ndev)
Alexey Brodkine4f23792013-06-24 09:54:27 +0400862{
Alexey Brodkine4f23792013-06-24 09:54:27 +0400863 struct arc_emac_priv *priv = netdev_priv(ndev);
864
865 phy_disconnect(priv->phy_dev);
866 priv->phy_dev = NULL;
867 arc_mdio_remove(priv);
868 unregister_netdev(ndev);
869 netif_napi_del(&priv->napi);
Heiko Stübner88154c92014-04-25 10:06:13 +0200870
871 if (!IS_ERR(priv->clk)) {
872 clk_disable_unprepare(priv->clk);
Heiko Stübner88154c92014-04-25 10:06:13 +0200873 }
874
Alexey Brodkine4f23792013-06-24 09:54:27 +0400875
876 return 0;
877}
Romain Perier23d2d9a2014-08-26 13:14:51 +0000878EXPORT_SYMBOL_GPL(arc_emac_remove);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400879
880MODULE_AUTHOR("Alexey Brodkin <abrodkin@synopsys.com>");
881MODULE_DESCRIPTION("ARC EMAC driver");
882MODULE_LICENSE("GPL");