blob: 13a1d99b29c6242796736202681f6611e652ffef [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
Alexander Kochetkov78aa0972017-12-19 14:03:57 +030029static void arc_emac_restart(struct net_device *ndev);
30
Alexey Brodkine4f23792013-06-24 09:54:27 +040031/**
Beniamino Galvani74dd40b2014-09-10 22:50:03 +020032 * arc_emac_tx_avail - Return the number of available slots in the tx ring.
33 * @priv: Pointer to ARC EMAC private data structure.
34 *
35 * returns: the number of slots available for transmission in tx the ring.
36 */
37static inline int arc_emac_tx_avail(struct arc_emac_priv *priv)
38{
39 return (priv->txbd_dirty + TX_BD_NUM - priv->txbd_curr - 1) % TX_BD_NUM;
40}
41
42/**
Alexey Brodkine4f23792013-06-24 09:54:27 +040043 * arc_emac_adjust_link - Adjust the PHY link duplex.
44 * @ndev: Pointer to the net_device structure.
45 *
46 * This function is called to change the duplex setting after auto negotiation
47 * is done by the PHY.
48 */
49static void arc_emac_adjust_link(struct net_device *ndev)
50{
51 struct arc_emac_priv *priv = netdev_priv(ndev);
Philippe Reynes01dea532016-07-02 20:06:51 +020052 struct phy_device *phy_dev = ndev->phydev;
Alexey Brodkine4f23792013-06-24 09:54:27 +040053 unsigned int reg, state_changed = 0;
54
55 if (priv->link != phy_dev->link) {
56 priv->link = phy_dev->link;
57 state_changed = 1;
58 }
59
60 if (priv->speed != phy_dev->speed) {
61 priv->speed = phy_dev->speed;
62 state_changed = 1;
Romain Perier6eacf312014-09-08 17:14:47 +000063 if (priv->set_mac_speed)
64 priv->set_mac_speed(priv, priv->speed);
Alexey Brodkine4f23792013-06-24 09:54:27 +040065 }
66
67 if (priv->duplex != phy_dev->duplex) {
68 reg = arc_reg_get(priv, R_CTRL);
69
Caesar Wang663713e2016-03-14 16:01:55 +080070 if (phy_dev->duplex == DUPLEX_FULL)
Alexey Brodkine4f23792013-06-24 09:54:27 +040071 reg |= ENFL_MASK;
72 else
73 reg &= ~ENFL_MASK;
74
75 arc_reg_set(priv, R_CTRL, reg);
76 priv->duplex = phy_dev->duplex;
77 state_changed = 1;
78 }
79
80 if (state_changed)
81 phy_print_status(phy_dev);
82}
83
84/**
Alexey Brodkine4f23792013-06-24 09:54:27 +040085 * arc_emac_get_drvinfo - Get EMAC driver information.
86 * @ndev: Pointer to net_device structure.
87 * @info: Pointer to ethtool_drvinfo structure.
88 *
89 * This implements ethtool command for getting the driver information.
90 * Issue "ethtool -i ethX" under linux prompt to execute this function.
91 */
92static void arc_emac_get_drvinfo(struct net_device *ndev,
93 struct ethtool_drvinfo *info)
94{
Romain Perier23d2d9a2014-08-26 13:14:51 +000095 struct arc_emac_priv *priv = netdev_priv(ndev);
96
97 strlcpy(info->driver, priv->drv_name, sizeof(info->driver));
98 strlcpy(info->version, priv->drv_version, sizeof(info->version));
Alexey Brodkine4f23792013-06-24 09:54:27 +040099}
100
101static const struct ethtool_ops arc_emac_ethtool_ops = {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400102 .get_drvinfo = arc_emac_get_drvinfo,
103 .get_link = ethtool_op_get_link,
Philippe Reynes4694e6e2016-07-02 20:06:52 +0200104 .get_link_ksettings = phy_ethtool_get_link_ksettings,
105 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Alexey Brodkine4f23792013-06-24 09:54:27 +0400106};
107
108#define FIRST_OR_LAST_MASK (FIRST_MASK | LAST_MASK)
109
110/**
111 * arc_emac_tx_clean - clears processed by EMAC Tx BDs.
112 * @ndev: Pointer to the network device.
113 */
114static void arc_emac_tx_clean(struct net_device *ndev)
115{
116 struct arc_emac_priv *priv = netdev_priv(ndev);
Tobias Klauserff458f62014-07-09 11:07:37 +0200117 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400118 unsigned int i;
119
120 for (i = 0; i < TX_BD_NUM; i++) {
121 unsigned int *txbd_dirty = &priv->txbd_dirty;
122 struct arc_emac_bd *txbd = &priv->txbd[*txbd_dirty];
123 struct buffer_state *tx_buff = &priv->tx_buff[*txbd_dirty];
124 struct sk_buff *skb = tx_buff->skb;
125 unsigned int info = le32_to_cpu(txbd->info);
126
Alexander Kochetkovc278c252016-02-09 18:20:38 +0300127 if ((info & FOR_EMAC) || !txbd->data || !skb)
Alexey Brodkine4f23792013-06-24 09:54:27 +0400128 break;
129
130 if (unlikely(info & (DROP | DEFR | LTCL | UFLO))) {
131 stats->tx_errors++;
132 stats->tx_dropped++;
133
134 if (info & DEFR)
135 stats->tx_carrier_errors++;
136
137 if (info & LTCL)
138 stats->collisions++;
139
140 if (info & UFLO)
141 stats->tx_fifo_errors++;
142 } else if (likely(info & FIRST_OR_LAST_MASK)) {
143 stats->tx_packets++;
144 stats->tx_bytes += skb->len;
145 }
146
Alexey Brodkina4a11392013-06-26 11:49:26 +0400147 dma_unmap_single(&ndev->dev, dma_unmap_addr(tx_buff, addr),
148 dma_unmap_len(tx_buff, len), DMA_TO_DEVICE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400149
150 /* return the sk_buff to system */
Yang Wei67633e72019-02-14 22:53:30 +0800151 dev_consume_skb_irq(skb);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400152
153 txbd->data = 0;
154 txbd->info = 0;
Alexander Kochetkovc278c252016-02-09 18:20:38 +0300155 tx_buff->skb = NULL;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400156
Vineet Gupta27082ee2013-09-04 17:17:15 +0530157 *txbd_dirty = (*txbd_dirty + 1) % TX_BD_NUM;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400158 }
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200159
160 /* Ensure that txbd_dirty is visible to tx() before checking
161 * for queue stopped.
162 */
163 smp_mb();
164
165 if (netif_queue_stopped(ndev) && arc_emac_tx_avail(priv))
166 netif_wake_queue(ndev);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400167}
168
169/**
170 * arc_emac_rx - processing of Rx packets.
171 * @ndev: Pointer to the network device.
172 * @budget: How many BDs to process on 1 call.
173 *
174 * returns: Number of processed BDs
175 *
176 * Iterate through Rx BDs and deliver received packages to upper layer.
177 */
178static int arc_emac_rx(struct net_device *ndev, int budget)
179{
180 struct arc_emac_priv *priv = netdev_priv(ndev);
181 unsigned int work_done;
182
Alexey Brodkin9cff8662013-08-13 17:04:36 +0400183 for (work_done = 0; work_done < budget; work_done++) {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400184 unsigned int *last_rx_bd = &priv->last_rx_bd;
Tobias Klauserff458f62014-07-09 11:07:37 +0200185 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400186 struct buffer_state *rx_buff = &priv->rx_buff[*last_rx_bd];
187 struct arc_emac_bd *rxbd = &priv->rxbd[*last_rx_bd];
Alexey Brodkine4f23792013-06-24 09:54:27 +0400188 unsigned int pktlen, info = le32_to_cpu(rxbd->info);
189 struct sk_buff *skb;
190 dma_addr_t addr;
191
192 if (unlikely((info & OWN_MASK) == FOR_EMAC))
193 break;
194
195 /* Make a note that we saw a packet at this BD.
196 * So next time, driver starts from this + 1
197 */
198 *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
199
200 if (unlikely((info & FIRST_OR_LAST_MASK) !=
201 FIRST_OR_LAST_MASK)) {
202 /* We pre-allocate buffers of MTU size so incoming
203 * packets won't be split/chained.
204 */
205 if (net_ratelimit())
206 netdev_err(ndev, "incomplete packet received\n");
207
208 /* Return ownership to EMAC */
Alexey Brodkina4a11392013-06-26 11:49:26 +0400209 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400210 stats->rx_errors++;
211 stats->rx_length_errors++;
212 continue;
213 }
214
Alexander Kochetkove6888222017-12-15 20:20:06 +0300215 /* Prepare the BD for next cycle. netif_receive_skb()
216 * only if new skb was allocated and mapped to avoid holes
217 * in the RX fifo.
218 */
219 skb = netdev_alloc_skb_ip_align(ndev, EMAC_BUFFER_SIZE);
220 if (unlikely(!skb)) {
221 if (net_ratelimit())
222 netdev_err(ndev, "cannot allocate skb\n");
223 /* Return ownership to EMAC */
224 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400225 stats->rx_errors++;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400226 stats->rx_dropped++;
227 continue;
228 }
229
Alexander Kochetkove6888222017-12-15 20:20:06 +0300230 addr = dma_map_single(&ndev->dev, (void *)skb->data,
Alexey Brodkina4a11392013-06-26 11:49:26 +0400231 EMAC_BUFFER_SIZE, DMA_FROM_DEVICE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400232 if (dma_mapping_error(&ndev->dev, addr)) {
233 if (net_ratelimit())
Alexander Kochetkove6888222017-12-15 20:20:06 +0300234 netdev_err(ndev, "cannot map dma buffer\n");
235 dev_kfree_skb(skb);
236 /* Return ownership to EMAC */
237 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400238 stats->rx_errors++;
Alexander Kochetkove6888222017-12-15 20:20:06 +0300239 stats->rx_dropped++;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400240 continue;
241 }
Alexander Kochetkove6888222017-12-15 20:20:06 +0300242
243 /* unmap previosly mapped skb */
244 dma_unmap_single(&ndev->dev, dma_unmap_addr(rx_buff, addr),
245 dma_unmap_len(rx_buff, len), DMA_FROM_DEVICE);
246
247 pktlen = info & LEN_MASK;
248 stats->rx_packets++;
249 stats->rx_bytes += pktlen;
250 skb_put(rx_buff->skb, pktlen);
251 rx_buff->skb->dev = ndev;
252 rx_buff->skb->protocol = eth_type_trans(rx_buff->skb, ndev);
253
254 netif_receive_skb(rx_buff->skb);
255
256 rx_buff->skb = skb;
Alexey Brodkina4a11392013-06-26 11:49:26 +0400257 dma_unmap_addr_set(rx_buff, addr, addr);
258 dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400259
Alexey Brodkina4a11392013-06-26 11:49:26 +0400260 rxbd->data = cpu_to_le32(addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400261
262 /* Make sure pointer to data buffer is set */
263 wmb();
264
265 /* Return ownership to EMAC */
Alexey Brodkina4a11392013-06-26 11:49:26 +0400266 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400267 }
268
269 return work_done;
270}
271
272/**
Alexander Kochetkov78aa0972017-12-19 14:03:57 +0300273 * arc_emac_rx_miss_handle - handle R_MISS register
274 * @ndev: Pointer to the net_device structure.
275 */
276static void arc_emac_rx_miss_handle(struct net_device *ndev)
277{
278 struct arc_emac_priv *priv = netdev_priv(ndev);
279 struct net_device_stats *stats = &ndev->stats;
280 unsigned int miss;
281
282 miss = arc_reg_get(priv, R_MISS);
283 if (miss) {
284 stats->rx_errors += miss;
285 stats->rx_missed_errors += miss;
286 priv->rx_missed_errors += miss;
287 }
288}
289
290/**
291 * arc_emac_rx_stall_check - check RX stall
292 * @ndev: Pointer to the net_device structure.
293 * @budget: How many BDs requested to process on 1 call.
294 * @work_done: How many BDs processed
295 *
296 * Under certain conditions EMAC stop reception of incoming packets and
297 * continuously increment R_MISS register instead of saving data into
298 * provided buffer. This function detect that condition and restart
299 * EMAC.
300 */
301static void arc_emac_rx_stall_check(struct net_device *ndev,
302 int budget, unsigned int work_done)
303{
304 struct arc_emac_priv *priv = netdev_priv(ndev);
305 struct arc_emac_bd *rxbd;
306
307 if (work_done)
308 priv->rx_missed_errors = 0;
309
310 if (priv->rx_missed_errors && budget) {
311 rxbd = &priv->rxbd[priv->last_rx_bd];
312 if (le32_to_cpu(rxbd->info) & FOR_EMAC) {
313 arc_emac_restart(ndev);
314 priv->rx_missed_errors = 0;
315 }
316 }
317}
318
319/**
Alexey Brodkine4f23792013-06-24 09:54:27 +0400320 * arc_emac_poll - NAPI poll handler.
321 * @napi: Pointer to napi_struct structure.
322 * @budget: How many BDs to process on 1 call.
323 *
324 * returns: Number of processed BDs
325 */
326static int arc_emac_poll(struct napi_struct *napi, int budget)
327{
328 struct net_device *ndev = napi->dev;
329 struct arc_emac_priv *priv = netdev_priv(ndev);
330 unsigned int work_done;
331
332 arc_emac_tx_clean(ndev);
Alexander Kochetkov78aa0972017-12-19 14:03:57 +0300333 arc_emac_rx_miss_handle(ndev);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400334
335 work_done = arc_emac_rx(ndev, budget);
336 if (work_done < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -0800337 napi_complete_done(napi, work_done);
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200338 arc_reg_or(priv, R_ENABLE, RXINT_MASK | TXINT_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400339 }
340
Alexander Kochetkov78aa0972017-12-19 14:03:57 +0300341 arc_emac_rx_stall_check(ndev, budget, work_done);
342
Alexey Brodkine4f23792013-06-24 09:54:27 +0400343 return work_done;
344}
345
346/**
347 * arc_emac_intr - Global interrupt handler for EMAC.
348 * @irq: irq number.
349 * @dev_instance: device instance.
350 *
351 * returns: IRQ_HANDLED for all cases.
352 *
353 * ARC EMAC has only 1 interrupt line, and depending on bits raised in
354 * STATUS register we may tell what is a reason for interrupt to fire.
355 */
356static irqreturn_t arc_emac_intr(int irq, void *dev_instance)
357{
358 struct net_device *ndev = dev_instance;
359 struct arc_emac_priv *priv = netdev_priv(ndev);
Tobias Klauserff458f62014-07-09 11:07:37 +0200360 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400361 unsigned int status;
362
363 status = arc_reg_get(priv, R_STATUS);
364 status &= ~MDIO_MASK;
365
366 /* Reset all flags except "MDIO complete" */
367 arc_reg_set(priv, R_STATUS, status);
368
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200369 if (status & (RXINT_MASK | TXINT_MASK)) {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400370 if (likely(napi_schedule_prep(&priv->napi))) {
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200371 arc_reg_clr(priv, R_ENABLE, RXINT_MASK | TXINT_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400372 __napi_schedule(&priv->napi);
373 }
374 }
375
376 if (status & ERR_MASK) {
377 /* MSER/RXCR/RXFR/RXFL interrupt fires on corresponding
378 * 8-bit error counter overrun.
379 */
380
381 if (status & MSER_MASK) {
382 stats->rx_missed_errors += 0x100;
383 stats->rx_errors += 0x100;
Alexander Kochetkov78aa0972017-12-19 14:03:57 +0300384 priv->rx_missed_errors += 0x100;
385 napi_schedule(&priv->napi);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400386 }
387
388 if (status & RXCR_MASK) {
389 stats->rx_crc_errors += 0x100;
390 stats->rx_errors += 0x100;
391 }
392
393 if (status & RXFR_MASK) {
394 stats->rx_frame_errors += 0x100;
395 stats->rx_errors += 0x100;
396 }
397
398 if (status & RXFL_MASK) {
399 stats->rx_over_errors += 0x100;
400 stats->rx_errors += 0x100;
401 }
402 }
403
404 return IRQ_HANDLED;
405}
406
Beniamino Galvani5a45e572014-05-11 18:11:48 +0200407#ifdef CONFIG_NET_POLL_CONTROLLER
408static void arc_emac_poll_controller(struct net_device *dev)
409{
410 disable_irq(dev->irq);
411 arc_emac_intr(dev->irq, dev);
412 enable_irq(dev->irq);
413}
414#endif
415
Alexey Brodkine4f23792013-06-24 09:54:27 +0400416/**
417 * arc_emac_open - Open the network device.
418 * @ndev: Pointer to the network device.
419 *
420 * returns: 0, on success or non-zero error value on failure.
421 *
422 * This function sets the MAC address, requests and enables an IRQ
423 * for the EMAC device and starts the Tx queue.
424 * It also connects to the phy device.
425 */
426static int arc_emac_open(struct net_device *ndev)
427{
428 struct arc_emac_priv *priv = netdev_priv(ndev);
Philippe Reynes01dea532016-07-02 20:06:51 +0200429 struct phy_device *phy_dev = ndev->phydev;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400430 int i;
431
432 phy_dev->autoneg = AUTONEG_ENABLE;
433 phy_dev->speed = 0;
434 phy_dev->duplex = 0;
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100435 linkmode_and(phy_dev->advertising, phy_dev->advertising,
436 phy_dev->supported);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400437
Alexey Brodkina4a11392013-06-26 11:49:26 +0400438 priv->last_rx_bd = 0;
439
Alexey Brodkine4f23792013-06-24 09:54:27 +0400440 /* Allocate and set buffers for Rx BD's */
Alexey Brodkine4f23792013-06-24 09:54:27 +0400441 for (i = 0; i < RX_BD_NUM; i++) {
Alexey Brodkina4a11392013-06-26 11:49:26 +0400442 dma_addr_t addr;
443 unsigned int *last_rx_bd = &priv->last_rx_bd;
444 struct arc_emac_bd *rxbd = &priv->rxbd[*last_rx_bd];
445 struct buffer_state *rx_buff = &priv->rx_buff[*last_rx_bd];
446
447 rx_buff->skb = netdev_alloc_skb_ip_align(ndev,
448 EMAC_BUFFER_SIZE);
449 if (unlikely(!rx_buff->skb))
Alexey Brodkine4f23792013-06-24 09:54:27 +0400450 return -ENOMEM;
451
Alexey Brodkina4a11392013-06-26 11:49:26 +0400452 addr = dma_map_single(&ndev->dev, (void *)rx_buff->skb->data,
453 EMAC_BUFFER_SIZE, DMA_FROM_DEVICE);
454 if (dma_mapping_error(&ndev->dev, addr)) {
455 netdev_err(ndev, "cannot dma map\n");
456 dev_kfree_skb(rx_buff->skb);
457 return -ENOMEM;
458 }
459 dma_unmap_addr_set(rx_buff, addr, addr);
460 dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
461
462 rxbd->data = cpu_to_le32(addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400463
464 /* Make sure pointer to data buffer is set */
465 wmb();
466
Alexey Brodkina4a11392013-06-26 11:49:26 +0400467 /* Return ownership to EMAC */
468 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400469
Alexey Brodkina4a11392013-06-26 11:49:26 +0400470 *last_rx_bd = (*last_rx_bd + 1) % RX_BD_NUM;
471 }
Alexey Brodkine4f23792013-06-24 09:54:27 +0400472
Alexander Kochetkov99f93a152016-02-09 18:20:39 +0300473 priv->txbd_curr = 0;
474 priv->txbd_dirty = 0;
475
Alexey Brodkine4f23792013-06-24 09:54:27 +0400476 /* Clean Tx BD's */
477 memset(priv->txbd, 0, TX_RING_SZ);
478
479 /* Initialize logical address filter */
480 arc_reg_set(priv, R_LAFL, 0);
481 arc_reg_set(priv, R_LAFH, 0);
482
483 /* Set BD ring pointers for device side */
484 arc_reg_set(priv, R_RX_RING, (unsigned int)priv->rxbd_dma);
485 arc_reg_set(priv, R_TX_RING, (unsigned int)priv->txbd_dma);
486
487 /* Enable interrupts */
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200488 arc_reg_set(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400489
490 /* Set CONTROL */
491 arc_reg_set(priv, R_CTRL,
Caesar Wang663713e2016-03-14 16:01:55 +0800492 (RX_BD_NUM << 24) | /* RX BD table length */
493 (TX_BD_NUM << 16) | /* TX BD table length */
494 TXRN_MASK | RXRN_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400495
496 napi_enable(&priv->napi);
497
498 /* Enable EMAC */
499 arc_reg_or(priv, R_CTRL, EN_MASK);
500
Alexander Kochetkovb18b7452017-04-20 16:29:34 +0300501 phy_start(ndev->phydev);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400502
503 netif_start_queue(ndev);
504
505 return 0;
506}
507
508/**
Beniamino Galvani775dd682014-05-11 18:11:47 +0200509 * arc_emac_set_rx_mode - Change the receive filtering mode.
510 * @ndev: Pointer to the network device.
511 *
512 * This function enables/disables promiscuous or all-multicast mode
513 * and updates the multicast filtering list of the network device.
514 */
515static void arc_emac_set_rx_mode(struct net_device *ndev)
516{
517 struct arc_emac_priv *priv = netdev_priv(ndev);
518
519 if (ndev->flags & IFF_PROMISC) {
520 arc_reg_or(priv, R_CTRL, PROM_MASK);
521 } else {
522 arc_reg_clr(priv, R_CTRL, PROM_MASK);
523
524 if (ndev->flags & IFF_ALLMULTI) {
525 arc_reg_set(priv, R_LAFL, ~0);
526 arc_reg_set(priv, R_LAFH, ~0);
Alexander Kochetkovd0e3f652016-11-14 16:32:53 +0300527 } else if (ndev->flags & IFF_MULTICAST) {
Beniamino Galvani775dd682014-05-11 18:11:47 +0200528 struct netdev_hw_addr *ha;
529 unsigned int filter[2] = { 0, 0 };
530 int bit;
531
532 netdev_for_each_mc_addr(ha, ndev) {
533 bit = ether_crc_le(ETH_ALEN, ha->addr) >> 26;
534 filter[bit >> 5] |= 1 << (bit & 31);
535 }
536
537 arc_reg_set(priv, R_LAFL, filter[0]);
538 arc_reg_set(priv, R_LAFH, filter[1]);
Alexander Kochetkovd0e3f652016-11-14 16:32:53 +0300539 } else {
540 arc_reg_set(priv, R_LAFL, 0);
541 arc_reg_set(priv, R_LAFH, 0);
Beniamino Galvani775dd682014-05-11 18:11:47 +0200542 }
543 }
544}
545
546/**
Alexander Kochetkovb530b162016-02-09 18:20:40 +0300547 * arc_free_tx_queue - free skb from tx queue
548 * @ndev: Pointer to the network device.
549 *
550 * This function must be called while EMAC disable
551 */
552static void arc_free_tx_queue(struct net_device *ndev)
553{
554 struct arc_emac_priv *priv = netdev_priv(ndev);
555 unsigned int i;
556
557 for (i = 0; i < TX_BD_NUM; i++) {
558 struct arc_emac_bd *txbd = &priv->txbd[i];
559 struct buffer_state *tx_buff = &priv->tx_buff[i];
560
561 if (tx_buff->skb) {
Caesar Wang663713e2016-03-14 16:01:55 +0800562 dma_unmap_single(&ndev->dev,
563 dma_unmap_addr(tx_buff, addr),
564 dma_unmap_len(tx_buff, len),
565 DMA_TO_DEVICE);
Alexander Kochetkovb530b162016-02-09 18:20:40 +0300566
567 /* return the sk_buff to system */
568 dev_kfree_skb_irq(tx_buff->skb);
569 }
570
571 txbd->info = 0;
572 txbd->data = 0;
573 tx_buff->skb = NULL;
574 }
575}
576
577/**
578 * arc_free_rx_queue - free skb from rx queue
579 * @ndev: Pointer to the network device.
580 *
581 * This function must be called while EMAC disable
582 */
583static void arc_free_rx_queue(struct net_device *ndev)
584{
585 struct arc_emac_priv *priv = netdev_priv(ndev);
586 unsigned int i;
587
588 for (i = 0; i < RX_BD_NUM; i++) {
589 struct arc_emac_bd *rxbd = &priv->rxbd[i];
590 struct buffer_state *rx_buff = &priv->rx_buff[i];
591
592 if (rx_buff->skb) {
Caesar Wang663713e2016-03-14 16:01:55 +0800593 dma_unmap_single(&ndev->dev,
594 dma_unmap_addr(rx_buff, addr),
595 dma_unmap_len(rx_buff, len),
596 DMA_FROM_DEVICE);
Alexander Kochetkovb530b162016-02-09 18:20:40 +0300597
598 /* return the sk_buff to system */
599 dev_kfree_skb_irq(rx_buff->skb);
600 }
601
602 rxbd->info = 0;
603 rxbd->data = 0;
604 rx_buff->skb = NULL;
605 }
606}
607
608/**
Alexey Brodkine4f23792013-06-24 09:54:27 +0400609 * arc_emac_stop - Close the network device.
610 * @ndev: Pointer to the network device.
611 *
612 * This function stops the Tx queue, disables interrupts and frees the IRQ for
613 * the EMAC device.
614 * It also disconnects the PHY device associated with the EMAC device.
615 */
616static int arc_emac_stop(struct net_device *ndev)
617{
618 struct arc_emac_priv *priv = netdev_priv(ndev);
619
620 napi_disable(&priv->napi);
621 netif_stop_queue(ndev);
622
Alexander Kochetkovb18b7452017-04-20 16:29:34 +0300623 phy_stop(ndev->phydev);
624
Alexey Brodkine4f23792013-06-24 09:54:27 +0400625 /* Disable interrupts */
Beniamino Galvani7ce76792014-09-10 22:50:02 +0200626 arc_reg_clr(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400627
628 /* Disable EMAC */
629 arc_reg_clr(priv, R_CTRL, EN_MASK);
630
Alexander Kochetkovb530b162016-02-09 18:20:40 +0300631 /* Return the sk_buff to system */
632 arc_free_tx_queue(ndev);
633 arc_free_rx_queue(ndev);
634
Alexey Brodkine4f23792013-06-24 09:54:27 +0400635 return 0;
636}
637
638/**
639 * arc_emac_stats - Get system network statistics.
640 * @ndev: Pointer to net_device structure.
641 *
642 * Returns the address of the device statistics structure.
643 * Statistics are updated in interrupt handler.
644 */
645static struct net_device_stats *arc_emac_stats(struct net_device *ndev)
646{
647 struct arc_emac_priv *priv = netdev_priv(ndev);
Tobias Klauserff458f62014-07-09 11:07:37 +0200648 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400649 unsigned long miss, rxerr;
650 u8 rxcrc, rxfram, rxoflow;
651
652 rxerr = arc_reg_get(priv, R_RXERR);
653 miss = arc_reg_get(priv, R_MISS);
654
655 rxcrc = rxerr;
656 rxfram = rxerr >> 8;
657 rxoflow = rxerr >> 16;
658
659 stats->rx_errors += miss;
660 stats->rx_errors += rxcrc + rxfram + rxoflow;
661
662 stats->rx_over_errors += rxoflow;
663 stats->rx_frame_errors += rxfram;
664 stats->rx_crc_errors += rxcrc;
665 stats->rx_missed_errors += miss;
666
667 return stats;
668}
669
670/**
671 * arc_emac_tx - Starts the data transmission.
672 * @skb: sk_buff pointer that contains data to be Transmitted.
673 * @ndev: Pointer to net_device structure.
674 *
675 * returns: NETDEV_TX_OK, on success
676 * NETDEV_TX_BUSY, if any of the descriptors are not free.
677 *
678 * This function is invoked from upper layers to initiate transmission.
679 */
680static int arc_emac_tx(struct sk_buff *skb, struct net_device *ndev)
681{
682 struct arc_emac_priv *priv = netdev_priv(ndev);
683 unsigned int len, *txbd_curr = &priv->txbd_curr;
Tobias Klauserff458f62014-07-09 11:07:37 +0200684 struct net_device_stats *stats = &ndev->stats;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400685 __le32 *info = &priv->txbd[*txbd_curr].info;
686 dma_addr_t addr;
687
688 if (skb_padto(skb, ETH_ZLEN))
689 return NETDEV_TX_OK;
690
691 len = max_t(unsigned int, ETH_ZLEN, skb->len);
692
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200693 if (unlikely(!arc_emac_tx_avail(priv))) {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400694 netif_stop_queue(ndev);
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200695 netdev_err(ndev, "BUG! Tx Ring full when queue awake!\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400696 return NETDEV_TX_BUSY;
697 }
698
699 addr = dma_map_single(&ndev->dev, (void *)skb->data, len,
700 DMA_TO_DEVICE);
701
702 if (unlikely(dma_mapping_error(&ndev->dev, addr))) {
703 stats->tx_dropped++;
704 stats->tx_errors++;
Wei Yongjun0f6e8762016-10-19 13:47:52 +0000705 dev_kfree_skb_any(skb);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400706 return NETDEV_TX_OK;
707 }
Alexey Brodkina4a11392013-06-26 11:49:26 +0400708 dma_unmap_addr_set(&priv->tx_buff[*txbd_curr], addr, addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400709 dma_unmap_len_set(&priv->tx_buff[*txbd_curr], len, len);
710
Alexey Brodkina4a11392013-06-26 11:49:26 +0400711 priv->txbd[*txbd_curr].data = cpu_to_le32(addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400712
713 /* Make sure pointer to data buffer is set */
714 wmb();
715
Eric Dumazet37ec2742013-12-19 18:10:40 -0800716 skb_tx_timestamp(skb);
717
Alexey Brodkine4f23792013-06-24 09:54:27 +0400718 *info = cpu_to_le32(FOR_EMAC | FIRST_OR_LAST_MASK | len);
719
Alexander Kochetkovc278c252016-02-09 18:20:38 +0300720 /* Make sure info word is set */
721 wmb();
722
723 priv->tx_buff[*txbd_curr].skb = skb;
724
Alexey Brodkine4f23792013-06-24 09:54:27 +0400725 /* Increment index to point to the next BD */
726 *txbd_curr = (*txbd_curr + 1) % TX_BD_NUM;
727
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200728 /* Ensure that tx_clean() sees the new txbd_curr before
729 * checking the queue status. This prevents an unneeded wake
730 * of the queue in tx_clean().
731 */
732 smp_mb();
Alexey Brodkine4f23792013-06-24 09:54:27 +0400733
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200734 if (!arc_emac_tx_avail(priv)) {
Alexey Brodkine4f23792013-06-24 09:54:27 +0400735 netif_stop_queue(ndev);
Beniamino Galvani74dd40b2014-09-10 22:50:03 +0200736 /* Refresh tx_dirty */
737 smp_mb();
738 if (arc_emac_tx_avail(priv))
739 netif_start_queue(ndev);
740 }
Alexey Brodkine4f23792013-06-24 09:54:27 +0400741
742 arc_reg_set(priv, R_STATUS, TXPL_MASK);
743
Alexey Brodkine4f23792013-06-24 09:54:27 +0400744 return NETDEV_TX_OK;
745}
746
Max Schwarz235a2512014-04-18 02:17:32 +0200747static void arc_emac_set_address_internal(struct net_device *ndev)
748{
749 struct arc_emac_priv *priv = netdev_priv(ndev);
750 unsigned int addr_low, addr_hi;
751
Caesar Wang663713e2016-03-14 16:01:55 +0800752 addr_low = le32_to_cpu(*(__le32 *)&ndev->dev_addr[0]);
753 addr_hi = le16_to_cpu(*(__le16 *)&ndev->dev_addr[4]);
Max Schwarz235a2512014-04-18 02:17:32 +0200754
755 arc_reg_set(priv, R_ADDRL, addr_low);
756 arc_reg_set(priv, R_ADDRH, addr_hi);
757}
758
Alexey Brodkine4f23792013-06-24 09:54:27 +0400759/**
760 * arc_emac_set_address - Set the MAC address for this device.
761 * @ndev: Pointer to net_device structure.
762 * @p: 6 byte Address to be written as MAC address.
763 *
764 * This function copies the HW address from the sockaddr structure to the
765 * net_device structure and updates the address in HW.
766 *
767 * returns: -EBUSY if the net device is busy or 0 if the address is set
768 * successfully.
769 */
770static int arc_emac_set_address(struct net_device *ndev, void *p)
771{
Alexey Brodkine4f23792013-06-24 09:54:27 +0400772 struct sockaddr *addr = p;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400773
774 if (netif_running(ndev))
775 return -EBUSY;
776
777 if (!is_valid_ether_addr(addr->sa_data))
778 return -EADDRNOTAVAIL;
779
780 memcpy(ndev->dev_addr, addr->sa_data, ndev->addr_len);
781
Max Schwarz235a2512014-04-18 02:17:32 +0200782 arc_emac_set_address_internal(ndev);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400783
784 return 0;
785}
786
Romain Periere11e8722017-08-03 09:49:03 +0200787static int arc_emac_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
788{
789 if (!netif_running(dev))
790 return -EINVAL;
791
792 if (!dev->phydev)
793 return -ENODEV;
794
795 return phy_mii_ioctl(dev->phydev, rq, cmd);
796}
797
798
Alexander Kochetkov78aa0972017-12-19 14:03:57 +0300799/**
800 * arc_emac_restart - Restart EMAC
801 * @ndev: Pointer to net_device structure.
802 *
803 * This function do hardware reset of EMAC in order to restore
804 * network packets reception.
805 */
806static void arc_emac_restart(struct net_device *ndev)
807{
808 struct arc_emac_priv *priv = netdev_priv(ndev);
809 struct net_device_stats *stats = &ndev->stats;
810 int i;
811
812 if (net_ratelimit())
813 netdev_warn(ndev, "restarting stalled EMAC\n");
814
815 netif_stop_queue(ndev);
816
817 /* Disable interrupts */
818 arc_reg_clr(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
819
820 /* Disable EMAC */
821 arc_reg_clr(priv, R_CTRL, EN_MASK);
822
823 /* Return the sk_buff to system */
824 arc_free_tx_queue(ndev);
825
826 /* Clean Tx BD's */
827 priv->txbd_curr = 0;
828 priv->txbd_dirty = 0;
829 memset(priv->txbd, 0, TX_RING_SZ);
830
831 for (i = 0; i < RX_BD_NUM; i++) {
832 struct arc_emac_bd *rxbd = &priv->rxbd[i];
833 unsigned int info = le32_to_cpu(rxbd->info);
834
835 if (!(info & FOR_EMAC)) {
836 stats->rx_errors++;
837 stats->rx_dropped++;
838 }
839 /* Return ownership to EMAC */
840 rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
841 }
842 priv->last_rx_bd = 0;
843
844 /* Make sure info is visible to EMAC before enable */
845 wmb();
846
847 /* Enable interrupts */
848 arc_reg_set(priv, R_ENABLE, RXINT_MASK | TXINT_MASK | ERR_MASK);
849
850 /* Enable EMAC */
851 arc_reg_or(priv, R_CTRL, EN_MASK);
852
853 netif_start_queue(ndev);
854}
855
Alexey Brodkine4f23792013-06-24 09:54:27 +0400856static const struct net_device_ops arc_emac_netdev_ops = {
857 .ndo_open = arc_emac_open,
858 .ndo_stop = arc_emac_stop,
859 .ndo_start_xmit = arc_emac_tx,
860 .ndo_set_mac_address = arc_emac_set_address,
861 .ndo_get_stats = arc_emac_stats,
Beniamino Galvani775dd682014-05-11 18:11:47 +0200862 .ndo_set_rx_mode = arc_emac_set_rx_mode,
Romain Periere11e8722017-08-03 09:49:03 +0200863 .ndo_do_ioctl = arc_emac_ioctl,
Beniamino Galvani5a45e572014-05-11 18:11:48 +0200864#ifdef CONFIG_NET_POLL_CONTROLLER
865 .ndo_poll_controller = arc_emac_poll_controller,
866#endif
Alexey Brodkine4f23792013-06-24 09:54:27 +0400867};
868
Romain Perier23d2d9a2014-08-26 13:14:51 +0000869int arc_emac_probe(struct net_device *ndev, int interface)
Alexey Brodkine4f23792013-06-24 09:54:27 +0400870{
Romain Perier23d2d9a2014-08-26 13:14:51 +0000871 struct device *dev = ndev->dev.parent;
Thierry Redingf7578492013-09-18 15:24:44 +0200872 struct resource res_regs;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400873 struct device_node *phy_node;
Philippe Reynes01dea532016-07-02 20:06:51 +0200874 struct phy_device *phydev = NULL;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400875 struct arc_emac_priv *priv;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400876 const char *mac_addr;
Thierry Redingf7578492013-09-18 15:24:44 +0200877 unsigned int id, clock_frequency, irq;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400878 int err;
879
Alexey Brodkine4f23792013-06-24 09:54:27 +0400880 /* Get PHY from device tree */
Romain Perierf15f44e2014-08-26 13:14:49 +0000881 phy_node = of_parse_phandle(dev->of_node, "phy", 0);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400882 if (!phy_node) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000883 dev_err(dev, "failed to retrieve phy description from device tree\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400884 return -ENODEV;
885 }
886
887 /* Get EMAC registers base address from device tree */
Romain Perierf15f44e2014-08-26 13:14:49 +0000888 err = of_address_to_resource(dev->of_node, 0, &res_regs);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400889 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000890 dev_err(dev, "failed to retrieve registers base from device tree\n");
Peter Chena94efbd2016-08-01 15:02:31 +0800891 err = -ENODEV;
892 goto out_put_node;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400893 }
894
Alexey Brodkine4f23792013-06-24 09:54:27 +0400895 /* Get IRQ from device tree */
Romain Perierf15f44e2014-08-26 13:14:49 +0000896 irq = irq_of_parse_and_map(dev->of_node, 0);
Thierry Redingf7578492013-09-18 15:24:44 +0200897 if (!irq) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000898 dev_err(dev, "failed to retrieve <irq> value from device tree\n");
Peter Chena94efbd2016-08-01 15:02:31 +0800899 err = -ENODEV;
900 goto out_put_node;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400901 }
902
Alexey Brodkine4f23792013-06-24 09:54:27 +0400903 ndev->netdev_ops = &arc_emac_netdev_ops;
904 ndev->ethtool_ops = &arc_emac_ethtool_ops;
905 ndev->watchdog_timeo = TX_TIMEOUT;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400906
907 priv = netdev_priv(ndev);
Romain Perierf15f44e2014-08-26 13:14:49 +0000908 priv->dev = dev;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400909
Romain Perierf15f44e2014-08-26 13:14:49 +0000910 priv->regs = devm_ioremap_resource(dev, &res_regs);
Wei Yongjun54447f12016-08-03 10:58:35 +0000911 if (IS_ERR(priv->regs)) {
912 err = PTR_ERR(priv->regs);
913 goto out_put_node;
914 }
Caesar Wang663713e2016-03-14 16:01:55 +0800915
Romain Perierf15f44e2014-08-26 13:14:49 +0000916 dev_dbg(dev, "Registers base address is 0x%p\n", priv->regs);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400917
Romain Perier23d2d9a2014-08-26 13:14:51 +0000918 if (priv->clk) {
Heiko Stübner88154c92014-04-25 10:06:13 +0200919 err = clk_prepare_enable(priv->clk);
920 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000921 dev_err(dev, "failed to enable clock\n");
Peter Chena94efbd2016-08-01 15:02:31 +0800922 goto out_put_node;
Heiko Stübner88154c92014-04-25 10:06:13 +0200923 }
924
925 clock_frequency = clk_get_rate(priv->clk);
Romain Perier23d2d9a2014-08-26 13:14:51 +0000926 } else {
927 /* Get CPU clock frequency from device tree */
928 if (of_property_read_u32(dev->of_node, "clock-frequency",
929 &clock_frequency)) {
930 dev_err(dev, "failed to retrieve <clock-frequency> from device tree\n");
Peter Chena94efbd2016-08-01 15:02:31 +0800931 err = -EINVAL;
932 goto out_put_node;
Romain Perier23d2d9a2014-08-26 13:14:51 +0000933 }
Heiko Stübner88154c92014-04-25 10:06:13 +0200934 }
935
Alexey Brodkine4f23792013-06-24 09:54:27 +0400936 id = arc_reg_get(priv, R_ID);
937
938 /* Check for EMAC revision 5 or 7, magic number */
939 if (!(id == 0x0005fd02 || id == 0x0007fd02)) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000940 dev_err(dev, "ARC EMAC not detected, id=0x%x\n", id);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400941 err = -ENODEV;
Heiko Stübner88154c92014-04-25 10:06:13 +0200942 goto out_clken;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400943 }
Romain Perierf15f44e2014-08-26 13:14:49 +0000944 dev_info(dev, "ARC EMAC detected with id: 0x%x\n", id);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400945
946 /* Set poll rate so that it polls every 1 ms */
947 arc_reg_set(priv, R_POLLRATE, clock_frequency / 1000000);
948
Thierry Redingf7578492013-09-18 15:24:44 +0200949 ndev->irq = irq;
Romain Perierf15f44e2014-08-26 13:14:49 +0000950 dev_info(dev, "IRQ is %d\n", ndev->irq);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400951
952 /* Register interrupt handler for device */
Romain Perierf15f44e2014-08-26 13:14:49 +0000953 err = devm_request_irq(dev, ndev->irq, arc_emac_intr, 0,
Alexey Brodkine4f23792013-06-24 09:54:27 +0400954 ndev->name, ndev);
955 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000956 dev_err(dev, "could not allocate IRQ\n");
Heiko Stübner88154c92014-04-25 10:06:13 +0200957 goto out_clken;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400958 }
959
960 /* Get MAC address from device tree */
Romain Perierf15f44e2014-08-26 13:14:49 +0000961 mac_addr = of_get_mac_address(dev->of_node);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400962
Petr Štetiara51645f2019-05-06 23:27:04 +0200963 if (!IS_ERR(mac_addr))
Petr Štetiar2d2924a2019-05-10 11:35:17 +0200964 ether_addr_copy(ndev->dev_addr, mac_addr);
Luka Perkov99470812013-10-30 00:11:00 +0100965 else
966 eth_hw_addr_random(ndev);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400967
Max Schwarz235a2512014-04-18 02:17:32 +0200968 arc_emac_set_address_internal(ndev);
Romain Perierf15f44e2014-08-26 13:14:49 +0000969 dev_info(dev, "MAC address is now %pM\n", ndev->dev_addr);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400970
971 /* Do 1 allocation instead of 2 separate ones for Rx and Tx BD rings */
Romain Perierf15f44e2014-08-26 13:14:49 +0000972 priv->rxbd = dmam_alloc_coherent(dev, RX_RING_SZ + TX_RING_SZ,
Alexey Brodkine4f23792013-06-24 09:54:27 +0400973 &priv->rxbd_dma, GFP_KERNEL);
974
975 if (!priv->rxbd) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000976 dev_err(dev, "failed to allocate data buffers\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400977 err = -ENOMEM;
Heiko Stübner88154c92014-04-25 10:06:13 +0200978 goto out_clken;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400979 }
980
981 priv->txbd = priv->rxbd + RX_BD_NUM;
982
983 priv->txbd_dma = priv->rxbd_dma + RX_RING_SZ;
Romain Perierf15f44e2014-08-26 13:14:49 +0000984 dev_dbg(dev, "EMAC Device addr: Rx Ring [0x%x], Tx Ring[%x]\n",
Alexey Brodkine4f23792013-06-24 09:54:27 +0400985 (unsigned int)priv->rxbd_dma, (unsigned int)priv->txbd_dma);
986
Romain Perier93e91b32014-08-26 13:14:50 +0000987 err = arc_mdio_probe(priv);
Alexey Brodkine4f23792013-06-24 09:54:27 +0400988 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000989 dev_err(dev, "failed to probe MII bus\n");
Heiko Stübner88154c92014-04-25 10:06:13 +0200990 goto out_clken;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400991 }
992
Philippe Reynes01dea532016-07-02 20:06:51 +0200993 phydev = of_phy_connect(ndev, phy_node, arc_emac_adjust_link, 0,
994 interface);
995 if (!phydev) {
Romain Perierf15f44e2014-08-26 13:14:49 +0000996 dev_err(dev, "of_phy_connect() failed\n");
Alexey Brodkine4f23792013-06-24 09:54:27 +0400997 err = -ENODEV;
Heiko Stübner796bec12014-04-25 10:03:29 +0200998 goto out_mdio;
Alexey Brodkine4f23792013-06-24 09:54:27 +0400999 }
1000
Romain Perierf15f44e2014-08-26 13:14:49 +00001001 dev_info(dev, "connected to %s phy with id 0x%x\n",
Philippe Reynes01dea532016-07-02 20:06:51 +02001002 phydev->drv->name, phydev->phy_id);
Alexey Brodkine4f23792013-06-24 09:54:27 +04001003
1004 netif_napi_add(ndev, &priv->napi, arc_emac_poll, ARC_EMAC_NAPI_WEIGHT);
1005
1006 err = register_netdev(ndev);
1007 if (err) {
Romain Perierf15f44e2014-08-26 13:14:49 +00001008 dev_err(dev, "failed to register network device\n");
Heiko Stübner796bec12014-04-25 10:03:29 +02001009 goto out_netif_api;
Alexey Brodkine4f23792013-06-24 09:54:27 +04001010 }
1011
Peter Chena94efbd2016-08-01 15:02:31 +08001012 of_node_put(phy_node);
Alexey Brodkine4f23792013-06-24 09:54:27 +04001013 return 0;
1014
Heiko Stübner796bec12014-04-25 10:03:29 +02001015out_netif_api:
1016 netif_napi_del(&priv->napi);
Philippe Reynes01dea532016-07-02 20:06:51 +02001017 phy_disconnect(phydev);
Heiko Stübner796bec12014-04-25 10:03:29 +02001018out_mdio:
1019 arc_mdio_remove(priv);
Heiko Stübner88154c92014-04-25 10:06:13 +02001020out_clken:
Romain Perier23d2d9a2014-08-26 13:14:51 +00001021 if (priv->clk)
Heiko Stübner88154c92014-04-25 10:06:13 +02001022 clk_disable_unprepare(priv->clk);
Peter Chena94efbd2016-08-01 15:02:31 +08001023out_put_node:
1024 of_node_put(phy_node);
1025
Alexey Brodkine4f23792013-06-24 09:54:27 +04001026 return err;
1027}
Romain Perier23d2d9a2014-08-26 13:14:51 +00001028EXPORT_SYMBOL_GPL(arc_emac_probe);
Alexey Brodkine4f23792013-06-24 09:54:27 +04001029
Romain Perier23d2d9a2014-08-26 13:14:51 +00001030int arc_emac_remove(struct net_device *ndev)
Alexey Brodkine4f23792013-06-24 09:54:27 +04001031{
Alexey Brodkine4f23792013-06-24 09:54:27 +04001032 struct arc_emac_priv *priv = netdev_priv(ndev);
1033
Philippe Reynes01dea532016-07-02 20:06:51 +02001034 phy_disconnect(ndev->phydev);
Alexey Brodkine4f23792013-06-24 09:54:27 +04001035 arc_mdio_remove(priv);
1036 unregister_netdev(ndev);
1037 netif_napi_del(&priv->napi);
Heiko Stübner88154c92014-04-25 10:06:13 +02001038
Caesar Wang663713e2016-03-14 16:01:55 +08001039 if (!IS_ERR(priv->clk))
Heiko Stübner88154c92014-04-25 10:06:13 +02001040 clk_disable_unprepare(priv->clk);
Alexey Brodkine4f23792013-06-24 09:54:27 +04001041
1042 return 0;
1043}
Romain Perier23d2d9a2014-08-26 13:14:51 +00001044EXPORT_SYMBOL_GPL(arc_emac_remove);
Alexey Brodkine4f23792013-06-24 09:54:27 +04001045
1046MODULE_AUTHOR("Alexey Brodkin <abrodkin@synopsys.com>");
1047MODULE_DESCRIPTION("ARC EMAC driver");
1048MODULE_LICENSE("GPL");