1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Altera Triple-Speed Ethernet MAC driver
3 * Copyright (C) 2008-2014 Altera Corporation. All rights reserved
4 *
5 * Contributors:
6 * Dalon Westergreen
7 * Thomas Chou
8 * Ian Abbott
9 * Yuriy Kozlov
10 * Tobias Klauser
11 * Andriy Smolskyy
12 * Roman Bulgakov
13 * Dmytro Mytarchuk
14 * Matthew Gerlach
15 *
16 * Original driver contributed by SLS.
17 * Major updates contributed by GlobalLogic
18 */
19
20 #include <linux/atomic.h>
21 #include <linux/delay.h>
22 #include <linux/etherdevice.h>
23 #include <linux/if_vlan.h>
24 #include <linux/init.h>
25 #include <linux/interrupt.h>
26 #include <linux/io.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/mii.h>
30 #include <linux/mdio/mdio-regmap.h>
31 #include <linux/netdevice.h>
32 #include <linux/of.h>
33 #include <linux/of_mdio.h>
34 #include <linux/of_net.h>
35 #include <linux/pcs-lynx.h>
36 #include <linux/phy.h>
37 #include <linux/platform_device.h>
38 #include <linux/property.h>
39 #include <linux/regmap.h>
40 #include <linux/skbuff.h>
41 #include <asm/cacheflush.h>
42
43 #include "altera_utils.h"
44 #include "altera_tse.h"
45 #include "altera_sgdma.h"
46 #include "altera_msgdma.h"
47
48 static atomic_t instance_count = ATOMIC_INIT(~0);
49 /* Module parameters */
50 static int debug = -1;
51 module_param(debug, int, 0644);
52 MODULE_PARM_DESC(debug, "Message Level (-1: default, 0: no output, 16: all)");
53
54 static const u32 default_msg_level = (NETIF_MSG_DRV | NETIF_MSG_PROBE |
55 NETIF_MSG_LINK | NETIF_MSG_IFUP |
56 NETIF_MSG_IFDOWN);
57
58 #define RX_DESCRIPTORS 64
59 static int dma_rx_num = RX_DESCRIPTORS;
60 module_param(dma_rx_num, int, 0644);
61 MODULE_PARM_DESC(dma_rx_num, "Number of descriptors in the RX list");
62
63 #define TX_DESCRIPTORS 64
64 static int dma_tx_num = TX_DESCRIPTORS;
65 module_param(dma_tx_num, int, 0644);
66 MODULE_PARM_DESC(dma_tx_num, "Number of descriptors in the TX list");
67
68
69 #define POLL_PHY (-1)
70
71 /* Make sure DMA buffer size is larger than the max frame size
72 * plus some alignment offset and a VLAN header. If the max frame size is
73 * 1518, a VLAN header would be additional 4 bytes and additional
74 * headroom for alignment is 2 bytes, 2048 is just fine.
75 */
76 #define ALTERA_RXDMABUFFER_SIZE 2048
77
78 /* Allow network stack to resume queuing packets after we've
79 * finished transmitting at least 1/4 of the packets in the queue.
80 */
81 #define TSE_TX_THRESH(x) (x->tx_ring_size / 4)
82
83 #define TXQUEUESTOP_THRESHHOLD 2
84
tse_tx_avail(struct altera_tse_private * priv)85 static inline u32 tse_tx_avail(struct altera_tse_private *priv)
86 {
87 return priv->tx_cons + priv->tx_ring_size - priv->tx_prod - 1;
88 }
89
90 /* MDIO specific functions
91 */
altera_tse_mdio_read(struct mii_bus * bus,int mii_id,int regnum)92 static int altera_tse_mdio_read(struct mii_bus *bus, int mii_id, int regnum)
93 {
94 struct net_device *ndev = bus->priv;
95 struct altera_tse_private *priv = netdev_priv(ndev);
96
97 /* set MDIO address */
98 csrwr32((mii_id & 0x1f), priv->mac_dev,
99 tse_csroffs(mdio_phy1_addr));
100
101 /* get the data */
102 return csrrd32(priv->mac_dev,
103 tse_csroffs(mdio_phy1) + regnum * 4) & 0xffff;
104 }
105
altera_tse_mdio_write(struct mii_bus * bus,int mii_id,int regnum,u16 value)106 static int altera_tse_mdio_write(struct mii_bus *bus, int mii_id, int regnum,
107 u16 value)
108 {
109 struct net_device *ndev = bus->priv;
110 struct altera_tse_private *priv = netdev_priv(ndev);
111
112 /* set MDIO address */
113 csrwr32((mii_id & 0x1f), priv->mac_dev,
114 tse_csroffs(mdio_phy1_addr));
115
116 /* write the data */
117 csrwr32(value, priv->mac_dev, tse_csroffs(mdio_phy1) + regnum * 4);
118 return 0;
119 }
120
altera_tse_mdio_create(struct net_device * dev,unsigned int id)121 static int altera_tse_mdio_create(struct net_device *dev, unsigned int id)
122 {
123 struct altera_tse_private *priv = netdev_priv(dev);
124 struct device_node *mdio_node = NULL;
125 struct device_node *child_node = NULL;
126 struct mii_bus *mdio = NULL;
127 int ret;
128
129 for_each_child_of_node(priv->device->of_node, child_node) {
130 if (of_device_is_compatible(child_node, "altr,tse-mdio")) {
131 mdio_node = child_node;
132 break;
133 }
134 }
135
136 if (mdio_node) {
137 netdev_dbg(dev, "FOUND MDIO subnode\n");
138 } else {
139 netdev_dbg(dev, "NO MDIO subnode\n");
140 return 0;
141 }
142
143 mdio = mdiobus_alloc();
144 if (mdio == NULL) {
145 netdev_err(dev, "Error allocating MDIO bus\n");
146 ret = -ENOMEM;
147 goto put_node;
148 }
149
150 mdio->name = ALTERA_TSE_RESOURCE_NAME;
151 mdio->read = &altera_tse_mdio_read;
152 mdio->write = &altera_tse_mdio_write;
153 snprintf(mdio->id, MII_BUS_ID_SIZE, "%s-%u", mdio->name, id);
154
155 mdio->priv = dev;
156 mdio->parent = priv->device;
157
158 ret = of_mdiobus_register(mdio, mdio_node);
159 if (ret != 0) {
160 netdev_err(dev, "Cannot register MDIO bus %s\n",
161 mdio->id);
162 goto out_free_mdio;
163 }
164 of_node_put(mdio_node);
165
166 if (netif_msg_drv(priv))
167 netdev_info(dev, "MDIO bus %s: created\n", mdio->id);
168
169 priv->mdio = mdio;
170 return 0;
171 out_free_mdio:
172 mdiobus_free(mdio);
173 mdio = NULL;
174 put_node:
175 of_node_put(mdio_node);
176 return ret;
177 }
178
altera_tse_mdio_destroy(struct net_device * dev)179 static void altera_tse_mdio_destroy(struct net_device *dev)
180 {
181 struct altera_tse_private *priv = netdev_priv(dev);
182
183 if (priv->mdio == NULL)
184 return;
185
186 if (netif_msg_drv(priv))
187 netdev_info(dev, "MDIO bus %s: removed\n",
188 priv->mdio->id);
189
190 mdiobus_unregister(priv->mdio);
191 mdiobus_free(priv->mdio);
192 priv->mdio = NULL;
193 }
194
tse_init_rx_buffer(struct altera_tse_private * priv,struct tse_buffer * rxbuffer,int len)195 static int tse_init_rx_buffer(struct altera_tse_private *priv,
196 struct tse_buffer *rxbuffer, int len)
197 {
198 rxbuffer->skb = netdev_alloc_skb_ip_align(priv->dev, len);
199 if (!rxbuffer->skb)
200 return -ENOMEM;
201
202 rxbuffer->dma_addr = dma_map_single(priv->device, rxbuffer->skb->data,
203 len,
204 DMA_FROM_DEVICE);
205
206 if (dma_mapping_error(priv->device, rxbuffer->dma_addr)) {
207 netdev_err(priv->dev, "%s: DMA mapping error\n", __func__);
208 dev_kfree_skb_any(rxbuffer->skb);
209 return -EINVAL;
210 }
211 rxbuffer->dma_addr &= (dma_addr_t)~3;
212 rxbuffer->len = len;
213 return 0;
214 }
215
tse_free_rx_buffer(struct altera_tse_private * priv,struct tse_buffer * rxbuffer)216 static void tse_free_rx_buffer(struct altera_tse_private *priv,
217 struct tse_buffer *rxbuffer)
218 {
219 dma_addr_t dma_addr = rxbuffer->dma_addr;
220 struct sk_buff *skb = rxbuffer->skb;
221
222 if (skb != NULL) {
223 if (dma_addr)
224 dma_unmap_single(priv->device, dma_addr,
225 rxbuffer->len,
226 DMA_FROM_DEVICE);
227 dev_kfree_skb_any(skb);
228 rxbuffer->skb = NULL;
229 rxbuffer->dma_addr = 0;
230 }
231 }
232
233 /* Unmap and free Tx buffer resources
234 */
tse_free_tx_buffer(struct altera_tse_private * priv,struct tse_buffer * buffer)235 static void tse_free_tx_buffer(struct altera_tse_private *priv,
236 struct tse_buffer *buffer)
237 {
238 if (buffer->dma_addr) {
239 if (buffer->mapped_as_page)
240 dma_unmap_page(priv->device, buffer->dma_addr,
241 buffer->len, DMA_TO_DEVICE);
242 else
243 dma_unmap_single(priv->device, buffer->dma_addr,
244 buffer->len, DMA_TO_DEVICE);
245 buffer->dma_addr = 0;
246 }
247 if (buffer->skb) {
248 dev_kfree_skb_any(buffer->skb);
249 buffer->skb = NULL;
250 }
251 }
252
alloc_init_skbufs(struct altera_tse_private * priv)253 static int alloc_init_skbufs(struct altera_tse_private *priv)
254 {
255 unsigned int rx_descs = priv->rx_ring_size;
256 unsigned int tx_descs = priv->tx_ring_size;
257 int ret = -ENOMEM;
258 int i;
259
260 /* Create Rx ring buffer */
261 priv->rx_ring = kzalloc_objs(struct tse_buffer, rx_descs);
262 if (!priv->rx_ring)
263 goto err_rx_ring;
264
265 /* Create Tx ring buffer */
266 priv->tx_ring = kzalloc_objs(struct tse_buffer, tx_descs);
267 if (!priv->tx_ring)
268 goto err_tx_ring;
269
270 priv->tx_cons = 0;
271 priv->tx_prod = 0;
272
273 /* Init Rx ring */
274 for (i = 0; i < rx_descs; i++) {
275 ret = tse_init_rx_buffer(priv, &priv->rx_ring[i],
276 priv->rx_dma_buf_sz);
277 if (ret)
278 goto err_init_rx_buffers;
279 }
280
281 priv->rx_cons = 0;
282 priv->rx_prod = 0;
283
284 return 0;
285 err_init_rx_buffers:
286 while (--i >= 0)
287 tse_free_rx_buffer(priv, &priv->rx_ring[i]);
288 kfree(priv->tx_ring);
289 err_tx_ring:
290 kfree(priv->rx_ring);
291 err_rx_ring:
292 return ret;
293 }
294
free_skbufs(struct net_device * dev)295 static void free_skbufs(struct net_device *dev)
296 {
297 struct altera_tse_private *priv = netdev_priv(dev);
298 unsigned int rx_descs = priv->rx_ring_size;
299 unsigned int tx_descs = priv->tx_ring_size;
300 int i;
301
302 /* Release the DMA TX/RX socket buffers */
303 for (i = 0; i < rx_descs; i++)
304 tse_free_rx_buffer(priv, &priv->rx_ring[i]);
305 for (i = 0; i < tx_descs; i++)
306 tse_free_tx_buffer(priv, &priv->tx_ring[i]);
307
308
309 kfree(priv->tx_ring);
310 }
311
312 /* Reallocate the skb for the reception process
313 */
tse_rx_refill(struct altera_tse_private * priv)314 static inline void tse_rx_refill(struct altera_tse_private *priv)
315 {
316 unsigned int rxsize = priv->rx_ring_size;
317 unsigned int entry;
318 int ret;
319
320 for (; priv->rx_cons - priv->rx_prod > 0;
321 priv->rx_prod++) {
322 entry = priv->rx_prod % rxsize;
323 if (likely(priv->rx_ring[entry].skb == NULL)) {
324 ret = tse_init_rx_buffer(priv, &priv->rx_ring[entry],
325 priv->rx_dma_buf_sz);
326 if (unlikely(ret != 0))
327 break;
328 priv->dmaops->add_rx_desc(priv, &priv->rx_ring[entry]);
329 }
330 }
331 }
332
333 /* Pull out the VLAN tag and fix up the packet
334 */
tse_rx_vlan(struct net_device * dev,struct sk_buff * skb)335 static inline void tse_rx_vlan(struct net_device *dev, struct sk_buff *skb)
336 {
337 struct ethhdr *eth_hdr;
338 u16 vid;
339
340 if ((dev->features & NETIF_F_HW_VLAN_CTAG_RX) &&
341 !__vlan_get_tag(skb, &vid)) {
342 eth_hdr = (struct ethhdr *)skb->data;
343 memmove(skb->data + VLAN_HLEN, eth_hdr, ETH_ALEN * 2);
344 skb_pull(skb, VLAN_HLEN);
345 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vid);
346 }
347 }
348
349 /* Receive a packet: retrieve and pass over to upper levels
350 */
tse_rx(struct altera_tse_private * priv,int limit)351 static int tse_rx(struct altera_tse_private *priv, int limit)
352 {
353 unsigned int entry = priv->rx_cons % priv->rx_ring_size;
354 unsigned int next_entry;
355 unsigned int count = 0;
356 struct sk_buff *skb;
357 u32 rxstatus;
358 u16 pktlength;
359 u16 pktstatus;
360
361 /* Check for count < limit first as get_rx_status is changing
362 * the response-fifo so we must process the next packet
363 * after calling get_rx_status if a response is pending.
364 * (reading the last byte of the response pops the value from the fifo.)
365 */
366 while ((count < limit) &&
367 ((rxstatus = priv->dmaops->get_rx_status(priv)) != 0)) {
368 pktstatus = rxstatus >> 16;
369 pktlength = rxstatus & 0xffff;
370
371 if ((pktstatus & 0xFF) || (pktlength == 0))
372 netdev_err(priv->dev,
373 "RCV pktstatus %08X pktlength %08X\n",
374 pktstatus, pktlength);
375
376 /* DMA transfer from TSE starts with 2 additional bytes for
377 * IP payload alignment. Status returned by get_rx_status()
378 * contains DMA transfer length. Packet is 2 bytes shorter.
379 */
380 pktlength -= 2;
381
382 count++;
383 next_entry = (++priv->rx_cons) % priv->rx_ring_size;
384
385 skb = priv->rx_ring[entry].skb;
386 if (unlikely(!skb)) {
387 netdev_err(priv->dev,
388 "%s: Inconsistent Rx descriptor chain\n",
389 __func__);
390 priv->dev->stats.rx_dropped++;
391 break;
392 }
393 priv->rx_ring[entry].skb = NULL;
394
395 skb_put(skb, pktlength);
396
397 dma_unmap_single(priv->device, priv->rx_ring[entry].dma_addr,
398 priv->rx_ring[entry].len, DMA_FROM_DEVICE);
399
400 if (netif_msg_pktdata(priv)) {
401 netdev_info(priv->dev, "frame received %d bytes\n",
402 pktlength);
403 print_hex_dump(KERN_ERR, "data: ", DUMP_PREFIX_OFFSET,
404 16, 1, skb->data, pktlength, true);
405 }
406
407 tse_rx_vlan(priv->dev, skb);
408
409 skb->protocol = eth_type_trans(skb, priv->dev);
410 skb_checksum_none_assert(skb);
411
412 napi_gro_receive(&priv->napi, skb);
413
414 priv->dev->stats.rx_packets++;
415 priv->dev->stats.rx_bytes += pktlength;
416
417 entry = next_entry;
418
419 tse_rx_refill(priv);
420 }
421
422 return count;
423 }
424
425 /* Reclaim resources after transmission completes
426 */
tse_tx_complete(struct altera_tse_private * priv)427 static int tse_tx_complete(struct altera_tse_private *priv)
428 {
429 unsigned int txsize = priv->tx_ring_size;
430 struct tse_buffer *tx_buff;
431 unsigned int entry;
432 int txcomplete = 0;
433 u32 ready;
434
435 spin_lock(&priv->tx_lock);
436
437 ready = priv->dmaops->tx_completions(priv);
438
439 /* Free sent buffers */
440 while (ready && (priv->tx_cons != priv->tx_prod)) {
441 entry = priv->tx_cons % txsize;
442 tx_buff = &priv->tx_ring[entry];
443
444 if (netif_msg_tx_done(priv))
445 netdev_dbg(priv->dev, "%s: curr %d, dirty %d\n",
446 __func__, priv->tx_prod, priv->tx_cons);
447
448 if (likely(tx_buff->skb))
449 priv->dev->stats.tx_packets++;
450
451 tse_free_tx_buffer(priv, tx_buff);
452 priv->tx_cons++;
453
454 txcomplete++;
455 ready--;
456 }
457
458 if (unlikely(netif_queue_stopped(priv->dev) &&
459 tse_tx_avail(priv) > TSE_TX_THRESH(priv))) {
460 if (netif_queue_stopped(priv->dev) &&
461 tse_tx_avail(priv) > TSE_TX_THRESH(priv)) {
462 if (netif_msg_tx_done(priv))
463 netdev_dbg(priv->dev, "%s: restart transmit\n",
464 __func__);
465 netif_wake_queue(priv->dev);
466 }
467 }
468
469 spin_unlock(&priv->tx_lock);
470 return txcomplete;
471 }
472
473 /* NAPI polling function
474 */
tse_poll(struct napi_struct * napi,int budget)475 static int tse_poll(struct napi_struct *napi, int budget)
476 {
477 struct altera_tse_private *priv =
478 container_of(napi, struct altera_tse_private, napi);
479 unsigned long int flags;
480 int rxcomplete = 0;
481
482 tse_tx_complete(priv);
483
484 rxcomplete = tse_rx(priv, budget);
485
486 if (rxcomplete < budget) {
487
488 napi_complete_done(napi, rxcomplete);
489
490 netdev_dbg(priv->dev,
491 "NAPI Complete, did %d packets with budget %d\n",
492 rxcomplete, budget);
493
494 spin_lock_irqsave(&priv->rxdma_irq_lock, flags);
495 priv->dmaops->enable_rxirq(priv);
496 priv->dmaops->enable_txirq(priv);
497 spin_unlock_irqrestore(&priv->rxdma_irq_lock, flags);
498 }
499 return rxcomplete;
500 }
501
502 /* DMA TX & RX FIFO interrupt routing
503 */
altera_isr(int irq,void * dev_id)504 static irqreturn_t altera_isr(int irq, void *dev_id)
505 {
506 struct net_device *dev = dev_id;
507 struct altera_tse_private *priv;
508
509 if (unlikely(!dev)) {
510 pr_err("%s: invalid dev pointer\n", __func__);
511 return IRQ_NONE;
512 }
513 priv = netdev_priv(dev);
514
515 spin_lock(&priv->rxdma_irq_lock);
516 /* reset IRQs */
517 priv->dmaops->clear_rxirq(priv);
518 priv->dmaops->clear_txirq(priv);
519 spin_unlock(&priv->rxdma_irq_lock);
520
521 if (likely(napi_schedule_prep(&priv->napi))) {
522 spin_lock(&priv->rxdma_irq_lock);
523 priv->dmaops->disable_rxirq(priv);
524 priv->dmaops->disable_txirq(priv);
525 spin_unlock(&priv->rxdma_irq_lock);
526 __napi_schedule(&priv->napi);
527 }
528
529
530 return IRQ_HANDLED;
531 }
532
533 /* Transmit a packet (called by the kernel). Dispatches
534 * either the SGDMA method for transmitting or the
535 * MSGDMA method, assumes no scatter/gather support,
536 * implying an assumption that there's only one
537 * physically contiguous fragment starting at
538 * skb->data, for length of skb_headlen(skb).
539 */
tse_start_xmit(struct sk_buff * skb,struct net_device * dev)540 static netdev_tx_t tse_start_xmit(struct sk_buff *skb, struct net_device *dev)
541 {
542 struct altera_tse_private *priv = netdev_priv(dev);
543 unsigned int nopaged_len = skb_headlen(skb);
544 unsigned int txsize = priv->tx_ring_size;
545 int nfrags = skb_shinfo(skb)->nr_frags;
546 struct tse_buffer *buffer = NULL;
547 netdev_tx_t ret = NETDEV_TX_OK;
548 dma_addr_t dma_addr;
549 unsigned int entry;
550
551 spin_lock_bh(&priv->tx_lock);
552
553 if (unlikely(tse_tx_avail(priv) < nfrags + 1)) {
554 if (!netif_queue_stopped(dev)) {
555 netif_stop_queue(dev);
556 /* This is a hard error, log it. */
557 netdev_err(priv->dev,
558 "%s: Tx list full when queue awake\n",
559 __func__);
560 }
561 ret = NETDEV_TX_BUSY;
562 goto out;
563 }
564
565 /* Map the first skb fragment */
566 entry = priv->tx_prod % txsize;
567 buffer = &priv->tx_ring[entry];
568
569 dma_addr = dma_map_single(priv->device, skb->data, nopaged_len,
570 DMA_TO_DEVICE);
571 if (dma_mapping_error(priv->device, dma_addr)) {
572 netdev_err(priv->dev, "%s: DMA mapping error\n", __func__);
573 dev_kfree_skb_any(skb);
574 ret = NETDEV_TX_OK;
575 goto out;
576 }
577
578 buffer->skb = skb;
579 buffer->dma_addr = dma_addr;
580 buffer->len = nopaged_len;
581
582 priv->dmaops->tx_buffer(priv, buffer);
583
584 skb_tx_timestamp(skb);
585
586 priv->tx_prod++;
587 dev->stats.tx_bytes += skb->len;
588
589 if (unlikely(tse_tx_avail(priv) <= TXQUEUESTOP_THRESHHOLD)) {
590 if (netif_msg_hw(priv))
591 netdev_dbg(priv->dev, "%s: stop transmitted packets\n",
592 __func__);
593 netif_stop_queue(dev);
594 }
595
596 out:
597 spin_unlock_bh(&priv->tx_lock);
598
599 return ret;
600 }
601
altera_tse_phy_get_addr_mdio_create(struct net_device * dev)602 static int altera_tse_phy_get_addr_mdio_create(struct net_device *dev)
603 {
604 struct altera_tse_private *priv = netdev_priv(dev);
605 struct device_node *np = priv->device->of_node;
606 int ret;
607
608 ret = of_get_phy_mode(np, &priv->phy_iface);
609
610 /* Avoid get phy addr and create mdio if no phy is present */
611 if (ret)
612 return 0;
613
614 /* try to get PHY address from device tree, use PHY autodetection if
615 * no valid address is given
616 */
617
618 if (of_property_read_u32(priv->device->of_node, "phy-addr",
619 &priv->phy_addr)) {
620 priv->phy_addr = POLL_PHY;
621 }
622
623 if (!((priv->phy_addr == POLL_PHY) ||
624 ((priv->phy_addr >= 0) && (priv->phy_addr < PHY_MAX_ADDR)))) {
625 netdev_err(dev, "invalid phy-addr specified %d\n",
626 priv->phy_addr);
627 return -ENODEV;
628 }
629
630 /* Create/attach to MDIO bus */
631 ret = altera_tse_mdio_create(dev,
632 atomic_add_return(1, &instance_count));
633
634 if (ret)
635 return -ENODEV;
636
637 return 0;
638 }
639
tse_update_mac_addr(struct altera_tse_private * priv,const u8 * addr)640 static void tse_update_mac_addr(struct altera_tse_private *priv, const u8 *addr)
641 {
642 u32 msb;
643 u32 lsb;
644
645 msb = (addr[3] << 24) | (addr[2] << 16) | (addr[1] << 8) | addr[0];
646 lsb = ((addr[5] << 8) | addr[4]) & 0xffff;
647
648 /* Set primary MAC address */
649 csrwr32(msb, priv->mac_dev, tse_csroffs(mac_addr_0));
650 csrwr32(lsb, priv->mac_dev, tse_csroffs(mac_addr_1));
651 }
652
653 /* MAC software reset.
654 * When reset is triggered, the MAC function completes the current
655 * transmission or reception, and subsequently disables the transmit and
656 * receive logic, flushes the receive FIFO buffer, and resets the statistics
657 * counters.
658 */
reset_mac(struct altera_tse_private * priv)659 static int reset_mac(struct altera_tse_private *priv)
660 {
661 int counter;
662 u32 dat;
663
664 dat = csrrd32(priv->mac_dev, tse_csroffs(command_config));
665 dat &= ~(MAC_CMDCFG_TX_ENA | MAC_CMDCFG_RX_ENA);
666 dat |= MAC_CMDCFG_SW_RESET | MAC_CMDCFG_CNT_RESET;
667 csrwr32(dat, priv->mac_dev, tse_csroffs(command_config));
668
669 counter = 0;
670 while (counter++ < ALTERA_TSE_SW_RESET_WATCHDOG_CNTR) {
671 if (tse_bit_is_clear(priv->mac_dev, tse_csroffs(command_config),
672 MAC_CMDCFG_SW_RESET))
673 break;
674 udelay(1);
675 }
676
677 if (counter >= ALTERA_TSE_SW_RESET_WATCHDOG_CNTR) {
678 dat = csrrd32(priv->mac_dev, tse_csroffs(command_config));
679 dat &= ~MAC_CMDCFG_SW_RESET;
680 csrwr32(dat, priv->mac_dev, tse_csroffs(command_config));
681 return -1;
682 }
683 return 0;
684 }
685
686 /* Initialize MAC core registers
687 */
init_mac(struct altera_tse_private * priv)688 static int init_mac(struct altera_tse_private *priv)
689 {
690 unsigned int cmd = 0;
691 u32 frm_length;
692
693 /* Setup Rx FIFO */
694 csrwr32(priv->rx_fifo_depth - ALTERA_TSE_RX_SECTION_EMPTY,
695 priv->mac_dev, tse_csroffs(rx_section_empty));
696
697 csrwr32(ALTERA_TSE_RX_SECTION_FULL, priv->mac_dev,
698 tse_csroffs(rx_section_full));
699
700 csrwr32(ALTERA_TSE_RX_ALMOST_EMPTY, priv->mac_dev,
701 tse_csroffs(rx_almost_empty));
702
703 csrwr32(ALTERA_TSE_RX_ALMOST_FULL, priv->mac_dev,
704 tse_csroffs(rx_almost_full));
705
706 /* Setup Tx FIFO */
707 csrwr32(priv->tx_fifo_depth - ALTERA_TSE_TX_SECTION_EMPTY,
708 priv->mac_dev, tse_csroffs(tx_section_empty));
709
710 csrwr32(ALTERA_TSE_TX_SECTION_FULL, priv->mac_dev,
711 tse_csroffs(tx_section_full));
712
713 csrwr32(ALTERA_TSE_TX_ALMOST_EMPTY, priv->mac_dev,
714 tse_csroffs(tx_almost_empty));
715
716 csrwr32(ALTERA_TSE_TX_ALMOST_FULL, priv->mac_dev,
717 tse_csroffs(tx_almost_full));
718
719 /* MAC Address Configuration */
720 tse_update_mac_addr(priv, priv->dev->dev_addr);
721
722 /* MAC Function Configuration */
723 frm_length = ETH_HLEN + priv->dev->mtu + ETH_FCS_LEN;
724 csrwr32(frm_length, priv->mac_dev, tse_csroffs(frm_length));
725
726 csrwr32(ALTERA_TSE_TX_IPG_LENGTH, priv->mac_dev,
727 tse_csroffs(tx_ipg_length));
728
729 /* Disable RX/TX shift 16 for alignment of all received frames on 16-bit
730 * start address
731 */
732 tse_set_bit(priv->mac_dev, tse_csroffs(rx_cmd_stat),
733 ALTERA_TSE_RX_CMD_STAT_RX_SHIFT16);
734
735 tse_clear_bit(priv->mac_dev, tse_csroffs(tx_cmd_stat),
736 ALTERA_TSE_TX_CMD_STAT_TX_SHIFT16 |
737 ALTERA_TSE_TX_CMD_STAT_OMIT_CRC);
738
739 /* Set the MAC options */
740 cmd = csrrd32(priv->mac_dev, tse_csroffs(command_config));
741 cmd &= ~MAC_CMDCFG_PAD_EN; /* No padding Removal on Receive */
742 cmd &= ~MAC_CMDCFG_CRC_FWD; /* CRC Removal */
743 cmd |= MAC_CMDCFG_RX_ERR_DISC; /* Automatically discard frames
744 * with CRC errors
745 */
746 cmd |= MAC_CMDCFG_CNTL_FRM_ENA;
747 cmd &= ~MAC_CMDCFG_TX_ENA;
748 cmd &= ~MAC_CMDCFG_RX_ENA;
749
750 /* Default speed and duplex setting, full/100 */
751 cmd &= ~MAC_CMDCFG_HD_ENA;
752 cmd &= ~MAC_CMDCFG_ETH_SPEED;
753 cmd &= ~MAC_CMDCFG_ENA_10;
754
755 csrwr32(cmd, priv->mac_dev, tse_csroffs(command_config));
756
757 csrwr32(ALTERA_TSE_PAUSE_QUANTA, priv->mac_dev,
758 tse_csroffs(pause_quanta));
759
760 if (netif_msg_hw(priv))
761 dev_dbg(priv->device,
762 "MAC post-initialization: CMD_CONFIG = 0x%08x\n", cmd);
763
764 return 0;
765 }
766
767 /* Start/stop MAC transmission logic
768 */
tse_set_mac(struct altera_tse_private * priv,bool enable)769 static void tse_set_mac(struct altera_tse_private *priv, bool enable)
770 {
771 u32 value = csrrd32(priv->mac_dev, tse_csroffs(command_config));
772
773 if (enable)
774 value |= MAC_CMDCFG_TX_ENA | MAC_CMDCFG_RX_ENA;
775 else
776 value &= ~(MAC_CMDCFG_TX_ENA | MAC_CMDCFG_RX_ENA);
777
778 csrwr32(value, priv->mac_dev, tse_csroffs(command_config));
779 }
780
781 /* Change the MTU
782 */
tse_change_mtu(struct net_device * dev,int new_mtu)783 static int tse_change_mtu(struct net_device *dev, int new_mtu)
784 {
785 if (netif_running(dev)) {
786 netdev_err(dev, "must be stopped to change its MTU\n");
787 return -EBUSY;
788 }
789
790 WRITE_ONCE(dev->mtu, new_mtu);
791 netdev_update_features(dev);
792
793 return 0;
794 }
795
altera_tse_set_mcfilter(struct net_device * dev)796 static void altera_tse_set_mcfilter(struct net_device *dev)
797 {
798 struct altera_tse_private *priv = netdev_priv(dev);
799 struct netdev_hw_addr *ha;
800 int i;
801
802 /* clear the hash filter */
803 for (i = 0; i < 64; i++)
804 csrwr32(0, priv->mac_dev, tse_csroffs(hash_table) + i * 4);
805
806 netdev_for_each_mc_addr(ha, dev) {
807 unsigned int hash = 0;
808 int mac_octet;
809
810 for (mac_octet = 5; mac_octet >= 0; mac_octet--) {
811 unsigned char xor_bit = 0;
812 unsigned char octet = ha->addr[mac_octet];
813 unsigned int bitshift;
814
815 for (bitshift = 0; bitshift < 8; bitshift++)
816 xor_bit ^= ((octet >> bitshift) & 0x01);
817
818 hash = (hash << 1) | xor_bit;
819 }
820 csrwr32(1, priv->mac_dev, tse_csroffs(hash_table) + hash * 4);
821 }
822 }
823
824
altera_tse_set_mcfilterall(struct net_device * dev)825 static void altera_tse_set_mcfilterall(struct net_device *dev)
826 {
827 struct altera_tse_private *priv = netdev_priv(dev);
828 int i;
829
830 /* set the hash filter */
831 for (i = 0; i < 64; i++)
832 csrwr32(1, priv->mac_dev, tse_csroffs(hash_table) + i * 4);
833 }
834
835 /* Set or clear the multicast filter for this adapter
836 */
tse_set_rx_mode_hashfilter(struct net_device * dev)837 static void tse_set_rx_mode_hashfilter(struct net_device *dev)
838 {
839 struct altera_tse_private *priv = netdev_priv(dev);
840
841 spin_lock(&priv->mac_cfg_lock);
842
843 if (dev->flags & IFF_PROMISC)
844 tse_set_bit(priv->mac_dev, tse_csroffs(command_config),
845 MAC_CMDCFG_PROMIS_EN);
846
847 if (dev->flags & IFF_ALLMULTI)
848 altera_tse_set_mcfilterall(dev);
849 else
850 altera_tse_set_mcfilter(dev);
851
852 spin_unlock(&priv->mac_cfg_lock);
853 }
854
855 /* Set or clear the multicast filter for this adapter
856 */
tse_set_rx_mode(struct net_device * dev)857 static void tse_set_rx_mode(struct net_device *dev)
858 {
859 struct altera_tse_private *priv = netdev_priv(dev);
860
861 spin_lock(&priv->mac_cfg_lock);
862
863 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
864 !netdev_mc_empty(dev) || !netdev_uc_empty(dev))
865 tse_set_bit(priv->mac_dev, tse_csroffs(command_config),
866 MAC_CMDCFG_PROMIS_EN);
867 else
868 tse_clear_bit(priv->mac_dev, tse_csroffs(command_config),
869 MAC_CMDCFG_PROMIS_EN);
870
871 spin_unlock(&priv->mac_cfg_lock);
872 }
873
874 /* Open and initialize the interface
875 */
tse_open(struct net_device * dev)876 static int tse_open(struct net_device *dev)
877 {
878 struct altera_tse_private *priv = netdev_priv(dev);
879 unsigned long flags;
880 int ret = 0;
881 int i;
882
883 /* Reset and configure TSE MAC and probe associated PHY */
884 ret = priv->dmaops->init_dma(priv);
885 if (ret != 0) {
886 netdev_err(dev, "Cannot initialize DMA\n");
887 goto phy_error;
888 }
889
890 if (netif_msg_ifup(priv))
891 netdev_warn(dev, "device MAC address %pM\n",
892 dev->dev_addr);
893
894 spin_lock(&priv->mac_cfg_lock);
895
896 ret = reset_mac(priv);
897 /* Note that reset_mac will fail if the clocks are gated by the PHY
898 * due to the PHY being put into isolation or power down mode.
899 * This is not an error if reset fails due to no clock.
900 */
901 if (ret)
902 netdev_dbg(dev, "Cannot reset MAC core (error: %d)\n", ret);
903
904 ret = init_mac(priv);
905 spin_unlock(&priv->mac_cfg_lock);
906 if (ret) {
907 netdev_err(dev, "Cannot init MAC core (error: %d)\n", ret);
908 goto alloc_skbuf_error;
909 }
910
911 priv->dmaops->reset_dma(priv);
912
913 /* Create and initialize the TX/RX descriptors chains. */
914 priv->rx_ring_size = dma_rx_num;
915 priv->tx_ring_size = dma_tx_num;
916 ret = alloc_init_skbufs(priv);
917 if (ret) {
918 netdev_err(dev, "DMA descriptors initialization failed\n");
919 goto alloc_skbuf_error;
920 }
921
922
923 /* Register RX interrupt */
924 ret = request_irq(priv->rx_irq, altera_isr, IRQF_SHARED,
925 dev->name, dev);
926 if (ret) {
927 netdev_err(dev, "Unable to register RX interrupt %d\n",
928 priv->rx_irq);
929 goto init_error;
930 }
931
932 /* Register TX interrupt */
933 ret = request_irq(priv->tx_irq, altera_isr, IRQF_SHARED,
934 dev->name, dev);
935 if (ret) {
936 netdev_err(dev, "Unable to register TX interrupt %d\n",
937 priv->tx_irq);
938 goto tx_request_irq_error;
939 }
940
941 /* Enable DMA interrupts */
942 spin_lock_irqsave(&priv->rxdma_irq_lock, flags);
943 priv->dmaops->enable_rxirq(priv);
944 priv->dmaops->enable_txirq(priv);
945
946 /* Setup RX descriptor chain */
947 for (i = 0; i < priv->rx_ring_size; i++)
948 priv->dmaops->add_rx_desc(priv, &priv->rx_ring[i]);
949
950 spin_unlock_irqrestore(&priv->rxdma_irq_lock, flags);
951
952 ret = phylink_of_phy_connect(priv->phylink, priv->device->of_node, 0);
953 if (ret) {
954 netdev_err(dev, "could not connect phylink (%d)\n", ret);
955 goto tx_request_irq_error;
956 }
957 phylink_start(priv->phylink);
958
959 napi_enable(&priv->napi);
960 netif_start_queue(dev);
961
962 priv->dmaops->start_rxdma(priv);
963
964 /* Start MAC Rx/Tx */
965 spin_lock(&priv->mac_cfg_lock);
966 tse_set_mac(priv, true);
967 spin_unlock(&priv->mac_cfg_lock);
968
969 return 0;
970
971 tx_request_irq_error:
972 free_irq(priv->rx_irq, dev);
973 init_error:
974 free_skbufs(dev);
975 alloc_skbuf_error:
976 phy_error:
977 return ret;
978 }
979
980 /* Stop TSE MAC interface and put the device in an inactive state
981 */
tse_shutdown(struct net_device * dev)982 static int tse_shutdown(struct net_device *dev)
983 {
984 struct altera_tse_private *priv = netdev_priv(dev);
985 unsigned long int flags;
986 int ret;
987
988 phylink_stop(priv->phylink);
989 phylink_disconnect_phy(priv->phylink);
990 netif_stop_queue(dev);
991 napi_disable(&priv->napi);
992
993 /* Disable DMA interrupts */
994 spin_lock_irqsave(&priv->rxdma_irq_lock, flags);
995 priv->dmaops->disable_rxirq(priv);
996 priv->dmaops->disable_txirq(priv);
997 spin_unlock_irqrestore(&priv->rxdma_irq_lock, flags);
998
999 /* Free the IRQ lines */
1000 free_irq(priv->rx_irq, dev);
1001 free_irq(priv->tx_irq, dev);
1002
1003 /* disable and reset the MAC, empties fifo */
1004 spin_lock(&priv->mac_cfg_lock);
1005 spin_lock(&priv->tx_lock);
1006
1007 ret = reset_mac(priv);
1008 /* Note that reset_mac will fail if the clocks are gated by the PHY
1009 * due to the PHY being put into isolation or power down mode.
1010 * This is not an error if reset fails due to no clock.
1011 */
1012 if (ret)
1013 netdev_dbg(dev, "Cannot reset MAC core (error: %d)\n", ret);
1014 priv->dmaops->reset_dma(priv);
1015 free_skbufs(dev);
1016
1017 spin_unlock(&priv->tx_lock);
1018 spin_unlock(&priv->mac_cfg_lock);
1019
1020 priv->dmaops->uninit_dma(priv);
1021
1022 return 0;
1023 }
1024
1025 static struct net_device_ops altera_tse_netdev_ops = {
1026 .ndo_open = tse_open,
1027 .ndo_stop = tse_shutdown,
1028 .ndo_start_xmit = tse_start_xmit,
1029 .ndo_set_mac_address = eth_mac_addr,
1030 .ndo_set_rx_mode = tse_set_rx_mode,
1031 .ndo_change_mtu = tse_change_mtu,
1032 .ndo_validate_addr = eth_validate_addr,
1033 };
1034
alt_tse_mac_config(struct phylink_config * config,unsigned int mode,const struct phylink_link_state * state)1035 static void alt_tse_mac_config(struct phylink_config *config, unsigned int mode,
1036 const struct phylink_link_state *state)
1037 {
1038 struct net_device *ndev = to_net_dev(config->dev);
1039 struct altera_tse_private *priv = netdev_priv(ndev);
1040
1041 spin_lock(&priv->mac_cfg_lock);
1042 reset_mac(priv);
1043 tse_set_mac(priv, true);
1044 spin_unlock(&priv->mac_cfg_lock);
1045 }
1046
alt_tse_mac_link_down(struct phylink_config * config,unsigned int mode,phy_interface_t interface)1047 static void alt_tse_mac_link_down(struct phylink_config *config,
1048 unsigned int mode, phy_interface_t interface)
1049 {
1050 }
1051
alt_tse_mac_link_up(struct phylink_config * config,struct phy_device * phy,unsigned int mode,phy_interface_t interface,int speed,int duplex,bool tx_pause,bool rx_pause)1052 static void alt_tse_mac_link_up(struct phylink_config *config,
1053 struct phy_device *phy, unsigned int mode,
1054 phy_interface_t interface, int speed,
1055 int duplex, bool tx_pause, bool rx_pause)
1056 {
1057 struct net_device *ndev = to_net_dev(config->dev);
1058 struct altera_tse_private *priv = netdev_priv(ndev);
1059 u32 ctrl;
1060
1061 ctrl = csrrd32(priv->mac_dev, tse_csroffs(command_config));
1062 ctrl &= ~(MAC_CMDCFG_ENA_10 | MAC_CMDCFG_ETH_SPEED | MAC_CMDCFG_HD_ENA);
1063
1064 if (duplex == DUPLEX_HALF)
1065 ctrl |= MAC_CMDCFG_HD_ENA;
1066
1067 if (speed == SPEED_1000)
1068 ctrl |= MAC_CMDCFG_ETH_SPEED;
1069 else if (speed == SPEED_10)
1070 ctrl |= MAC_CMDCFG_ENA_10;
1071
1072 spin_lock(&priv->mac_cfg_lock);
1073 csrwr32(ctrl, priv->mac_dev, tse_csroffs(command_config));
1074 spin_unlock(&priv->mac_cfg_lock);
1075 }
1076
alt_tse_select_pcs(struct phylink_config * config,phy_interface_t interface)1077 static struct phylink_pcs *alt_tse_select_pcs(struct phylink_config *config,
1078 phy_interface_t interface)
1079 {
1080 struct net_device *ndev = to_net_dev(config->dev);
1081 struct altera_tse_private *priv = netdev_priv(ndev);
1082
1083 if (interface == PHY_INTERFACE_MODE_SGMII ||
1084 interface == PHY_INTERFACE_MODE_1000BASEX)
1085 return priv->pcs;
1086 else
1087 return NULL;
1088 }
1089
1090 static const struct phylink_mac_ops alt_tse_phylink_ops = {
1091 .mac_config = alt_tse_mac_config,
1092 .mac_link_down = alt_tse_mac_link_down,
1093 .mac_link_up = alt_tse_mac_link_up,
1094 .mac_select_pcs = alt_tse_select_pcs,
1095 };
1096
request_and_map(struct platform_device * pdev,const char * name,struct resource ** res,void __iomem ** ptr)1097 static int request_and_map(struct platform_device *pdev, const char *name,
1098 struct resource **res, void __iomem **ptr)
1099 {
1100 struct device *device = &pdev->dev;
1101 struct resource *region;
1102
1103 *res = platform_get_resource_byname(pdev, IORESOURCE_MEM, name);
1104 if (*res == NULL) {
1105 dev_err(device, "resource %s not defined\n", name);
1106 return -ENODEV;
1107 }
1108
1109 region = devm_request_mem_region(device, (*res)->start,
1110 resource_size(*res), dev_name(device));
1111 if (region == NULL) {
1112 dev_err(device, "unable to request %s\n", name);
1113 return -EBUSY;
1114 }
1115
1116 *ptr = devm_ioremap(device, region->start,
1117 resource_size(region));
1118 if (*ptr == NULL) {
1119 dev_err(device, "ioremap of %s failed!", name);
1120 return -ENOMEM;
1121 }
1122
1123 return 0;
1124 }
1125
1126 /* Probe Altera TSE MAC device
1127 */
altera_tse_probe(struct platform_device * pdev)1128 static int altera_tse_probe(struct platform_device *pdev)
1129 {
1130 struct regmap_config pcs_regmap_cfg;
1131 struct altera_tse_private *priv;
1132 struct mdio_regmap_config mrc;
1133 struct resource *control_port;
1134 struct regmap *pcs_regmap;
1135 struct resource *dma_res;
1136 struct resource *pcs_res;
1137 struct mii_bus *pcs_bus;
1138 struct net_device *ndev;
1139 void __iomem *descmap;
1140 int ret = -ENODEV;
1141 u32 revision;
1142
1143 ndev = alloc_etherdev(sizeof(struct altera_tse_private));
1144 if (!ndev) {
1145 dev_err(&pdev->dev, "Could not allocate network device\n");
1146 return -ENODEV;
1147 }
1148
1149 SET_NETDEV_DEV(ndev, &pdev->dev);
1150 platform_set_drvdata(pdev, ndev);
1151
1152 priv = netdev_priv(ndev);
1153 priv->device = &pdev->dev;
1154 priv->dev = ndev;
1155 priv->msg_enable = netif_msg_init(debug, default_msg_level);
1156
1157 priv->dmaops = device_get_match_data(&pdev->dev);
1158
1159 if (priv->dmaops &&
1160 priv->dmaops->altera_dtype == ALTERA_DTYPE_SGDMA) {
1161 /* Get the mapped address to the SGDMA descriptor memory */
1162 ret = request_and_map(pdev, "s1", &dma_res, &descmap);
1163 if (ret)
1164 goto err_free_netdev;
1165
1166 /* Start of that memory is for transmit descriptors */
1167 priv->tx_dma_desc = descmap;
1168
1169 /* First half is for tx descriptors, other half for tx */
1170 priv->txdescmem = resource_size(dma_res)/2;
1171
1172 priv->txdescmem_busaddr = (dma_addr_t)dma_res->start;
1173
1174 priv->rx_dma_desc = (void __iomem *)((uintptr_t)(descmap +
1175 priv->txdescmem));
1176 priv->rxdescmem = resource_size(dma_res)/2;
1177 priv->rxdescmem_busaddr = dma_res->start;
1178 priv->rxdescmem_busaddr += priv->txdescmem;
1179
1180 if (upper_32_bits(priv->rxdescmem_busaddr)) {
1181 dev_dbg(priv->device,
1182 "SGDMA bus addresses greater than 32-bits\n");
1183 ret = -EINVAL;
1184 goto err_free_netdev;
1185 }
1186 if (upper_32_bits(priv->txdescmem_busaddr)) {
1187 dev_dbg(priv->device,
1188 "SGDMA bus addresses greater than 32-bits\n");
1189 ret = -EINVAL;
1190 goto err_free_netdev;
1191 }
1192 } else if (priv->dmaops &&
1193 priv->dmaops->altera_dtype == ALTERA_DTYPE_MSGDMA) {
1194 ret = request_and_map(pdev, "rx_resp", &dma_res,
1195 &priv->rx_dma_resp);
1196 if (ret)
1197 goto err_free_netdev;
1198
1199 ret = request_and_map(pdev, "tx_desc", &dma_res,
1200 &priv->tx_dma_desc);
1201 if (ret)
1202 goto err_free_netdev;
1203
1204 priv->txdescmem = resource_size(dma_res);
1205 priv->txdescmem_busaddr = dma_res->start;
1206
1207 ret = request_and_map(pdev, "rx_desc", &dma_res,
1208 &priv->rx_dma_desc);
1209 if (ret)
1210 goto err_free_netdev;
1211
1212 priv->rxdescmem = resource_size(dma_res);
1213 priv->rxdescmem_busaddr = dma_res->start;
1214
1215 } else {
1216 ret = -ENODEV;
1217 goto err_free_netdev;
1218 }
1219
1220 if (!dma_set_mask(priv->device, DMA_BIT_MASK(priv->dmaops->dmamask))) {
1221 dma_set_coherent_mask(priv->device,
1222 DMA_BIT_MASK(priv->dmaops->dmamask));
1223 } else if (!dma_set_mask(priv->device, DMA_BIT_MASK(32))) {
1224 dma_set_coherent_mask(priv->device, DMA_BIT_MASK(32));
1225 } else {
1226 ret = -EIO;
1227 goto err_free_netdev;
1228 }
1229
1230 /* MAC address space */
1231 ret = request_and_map(pdev, "control_port", &control_port,
1232 (void __iomem **)&priv->mac_dev);
1233 if (ret)
1234 goto err_free_netdev;
1235
1236 /* xSGDMA Rx Dispatcher address space */
1237 ret = request_and_map(pdev, "rx_csr", &dma_res,
1238 &priv->rx_dma_csr);
1239 if (ret)
1240 goto err_free_netdev;
1241
1242
1243 /* xSGDMA Tx Dispatcher address space */
1244 ret = request_and_map(pdev, "tx_csr", &dma_res,
1245 &priv->tx_dma_csr);
1246 if (ret)
1247 goto err_free_netdev;
1248
1249 memset(&pcs_regmap_cfg, 0, sizeof(pcs_regmap_cfg));
1250 memset(&mrc, 0, sizeof(mrc));
1251 /* SGMII PCS address space. The location can vary depending on how the
1252 * IP is integrated. We can have a resource dedicated to it at a specific
1253 * address space, but if it's not the case, we fallback to the mdiophy0
1254 * from the MAC's address space
1255 */
1256 ret = request_and_map(pdev, "pcs", &pcs_res, &priv->pcs_base);
1257 if (ret) {
1258 /* If we can't find a dedicated resource for the PCS, fallback
1259 * to the internal PCS, that has a different address stride
1260 */
1261 priv->pcs_base = priv->mac_dev + tse_csroffs(mdio_phy0);
1262 pcs_regmap_cfg.reg_bits = 32;
1263 /* Values are MDIO-like values, on 16 bits */
1264 pcs_regmap_cfg.val_bits = 16;
1265 pcs_regmap_cfg.reg_shift = REGMAP_UPSHIFT(2);
1266 } else {
1267 pcs_regmap_cfg.reg_bits = 16;
1268 pcs_regmap_cfg.val_bits = 16;
1269 pcs_regmap_cfg.reg_shift = REGMAP_UPSHIFT(1);
1270 }
1271
1272 /* Create a regmap for the PCS so that it can be used by the PCS driver */
1273 pcs_regmap = devm_regmap_init_mmio(&pdev->dev, priv->pcs_base,
1274 &pcs_regmap_cfg);
1275 if (IS_ERR(pcs_regmap)) {
1276 ret = PTR_ERR(pcs_regmap);
1277 goto err_free_netdev;
1278 }
1279 mrc.regmap = pcs_regmap;
1280 mrc.parent = &pdev->dev;
1281 mrc.valid_addr = 0x0;
1282 mrc.autoscan = false;
1283
1284 /* Rx IRQ */
1285 priv->rx_irq = platform_get_irq_byname(pdev, "rx_irq");
1286 if (priv->rx_irq == -ENXIO) {
1287 dev_err(&pdev->dev, "cannot obtain Rx IRQ\n");
1288 ret = -ENXIO;
1289 goto err_free_netdev;
1290 }
1291
1292 /* Tx IRQ */
1293 priv->tx_irq = platform_get_irq_byname(pdev, "tx_irq");
1294 if (priv->tx_irq == -ENXIO) {
1295 dev_err(&pdev->dev, "cannot obtain Tx IRQ\n");
1296 ret = -ENXIO;
1297 goto err_free_netdev;
1298 }
1299
1300 /* get FIFO depths from device tree */
1301 if (of_property_read_u32(pdev->dev.of_node, "rx-fifo-depth",
1302 &priv->rx_fifo_depth)) {
1303 dev_err(&pdev->dev, "cannot obtain rx-fifo-depth\n");
1304 ret = -ENXIO;
1305 goto err_free_netdev;
1306 }
1307
1308 if (of_property_read_u32(pdev->dev.of_node, "tx-fifo-depth",
1309 &priv->tx_fifo_depth)) {
1310 dev_err(&pdev->dev, "cannot obtain tx-fifo-depth\n");
1311 ret = -ENXIO;
1312 goto err_free_netdev;
1313 }
1314
1315 /* get hash filter settings for this instance */
1316 priv->hash_filter =
1317 of_property_read_bool(pdev->dev.of_node,
1318 "altr,has-hash-multicast-filter");
1319
1320 /* Set hash filter to not set for now until the
1321 * multicast filter receive issue is debugged
1322 */
1323 priv->hash_filter = 0;
1324
1325 /* get supplemental address settings for this instance */
1326 priv->added_unicast =
1327 of_property_read_bool(pdev->dev.of_node,
1328 "altr,has-supplementary-unicast");
1329
1330 priv->dev->min_mtu = ETH_ZLEN + ETH_FCS_LEN;
1331 /* Max MTU is 1500, ETH_DATA_LEN */
1332 priv->dev->max_mtu = ETH_DATA_LEN;
1333
1334 /* Get the max mtu from the device tree. Note that the
1335 * "max-frame-size" parameter is actually max mtu. Definition
1336 * in the ePAPR v1.1 spec and usage differ, so go with usage.
1337 */
1338 of_property_read_u32(pdev->dev.of_node, "max-frame-size",
1339 &priv->dev->max_mtu);
1340
1341 /* The DMA buffer size already accounts for an alignment bias
1342 * to avoid unaligned access exceptions for the NIOS processor,
1343 */
1344 priv->rx_dma_buf_sz = ALTERA_RXDMABUFFER_SIZE;
1345
1346 /* get default MAC address from device tree */
1347 ret = of_get_ethdev_address(pdev->dev.of_node, ndev);
1348 if (ret)
1349 eth_hw_addr_random(ndev);
1350
1351 /* get phy addr and create mdio */
1352 ret = altera_tse_phy_get_addr_mdio_create(ndev);
1353
1354 if (ret)
1355 goto err_free_netdev;
1356
1357 /* initialize netdev */
1358 ndev->mem_start = control_port->start;
1359 ndev->mem_end = control_port->end;
1360 ndev->netdev_ops = &altera_tse_netdev_ops;
1361 altera_tse_set_ethtool_ops(ndev);
1362
1363 altera_tse_netdev_ops.ndo_set_rx_mode = tse_set_rx_mode;
1364
1365 if (priv->hash_filter)
1366 altera_tse_netdev_ops.ndo_set_rx_mode =
1367 tse_set_rx_mode_hashfilter;
1368
1369 /* Scatter/gather IO is not supported,
1370 * so it is turned off
1371 */
1372 ndev->hw_features &= ~NETIF_F_SG;
1373 ndev->features |= ndev->hw_features | NETIF_F_HIGHDMA;
1374
1375 /* VLAN offloading of tagging, stripping and filtering is not
1376 * supported by hardware, but driver will accommodate the
1377 * extra 4-byte VLAN tag for processing by upper layers
1378 */
1379 ndev->features |= NETIF_F_HW_VLAN_CTAG_RX;
1380
1381 /* setup NAPI interface */
1382 netif_napi_add(ndev, &priv->napi, tse_poll);
1383
1384 spin_lock_init(&priv->mac_cfg_lock);
1385 spin_lock_init(&priv->tx_lock);
1386 spin_lock_init(&priv->rxdma_irq_lock);
1387
1388 snprintf(mrc.name, MII_BUS_ID_SIZE, "%s-pcs-mii", dev_name(&pdev->dev));
1389 pcs_bus = devm_mdio_regmap_register(&pdev->dev, &mrc);
1390 if (IS_ERR(pcs_bus)) {
1391 ret = PTR_ERR(pcs_bus);
1392 goto err_init_pcs;
1393 }
1394
1395 priv->pcs = lynx_pcs_create_mdiodev(pcs_bus, 0);
1396 if (IS_ERR(priv->pcs)) {
1397 ret = PTR_ERR(priv->pcs);
1398 goto err_init_pcs;
1399 }
1400
1401 priv->phylink_config.dev = &ndev->dev;
1402 priv->phylink_config.type = PHYLINK_NETDEV;
1403 priv->phylink_config.mac_capabilities = MAC_SYM_PAUSE | MAC_10 |
1404 MAC_100 | MAC_1000FD;
1405
1406 phy_interface_set_rgmii(priv->phylink_config.supported_interfaces);
1407 __set_bit(PHY_INTERFACE_MODE_MII,
1408 priv->phylink_config.supported_interfaces);
1409 __set_bit(PHY_INTERFACE_MODE_GMII,
1410 priv->phylink_config.supported_interfaces);
1411 __set_bit(PHY_INTERFACE_MODE_SGMII,
1412 priv->phylink_config.supported_interfaces);
1413 __set_bit(PHY_INTERFACE_MODE_1000BASEX,
1414 priv->phylink_config.supported_interfaces);
1415
1416 priv->phylink = phylink_create(&priv->phylink_config,
1417 of_fwnode_handle(priv->device->of_node),
1418 priv->phy_iface, &alt_tse_phylink_ops);
1419 if (IS_ERR(priv->phylink)) {
1420 dev_err(&pdev->dev, "failed to create phylink\n");
1421 ret = PTR_ERR(priv->phylink);
1422 goto err_init_phylink;
1423 }
1424
1425 ret = register_netdev(ndev);
1426 if (ret) {
1427 dev_err(&pdev->dev, "failed to register TSE net device\n");
1428 goto err_register_netdev;
1429 }
1430
1431 revision = ioread32(&priv->mac_dev->megacore_revision);
1432
1433 if (revision < 0xd00 || revision > 0xe00)
1434 netdev_warn(ndev, "TSE revision %x\n", revision);
1435
1436 if (netif_msg_probe(priv))
1437 dev_info(&pdev->dev, "Altera TSE MAC version %d.%d at 0x%08lx irq %d/%d\n",
1438 (revision >> 8) & 0xff, revision & 0xff,
1439 (unsigned long)control_port->start, priv->rx_irq,
1440 priv->tx_irq);
1441
1442 return 0;
1443
1444 err_register_netdev:
1445 phylink_destroy(priv->phylink);
1446 err_init_phylink:
1447 lynx_pcs_destroy(priv->pcs);
1448 err_init_pcs:
1449 netif_napi_del(&priv->napi);
1450 altera_tse_mdio_destroy(ndev);
1451 err_free_netdev:
1452 free_netdev(ndev);
1453 return ret;
1454 }
1455
1456 /* Remove Altera TSE MAC device
1457 */
altera_tse_remove(struct platform_device * pdev)1458 static void altera_tse_remove(struct platform_device *pdev)
1459 {
1460 struct net_device *ndev = platform_get_drvdata(pdev);
1461 struct altera_tse_private *priv = netdev_priv(ndev);
1462
1463 platform_set_drvdata(pdev, NULL);
1464 altera_tse_mdio_destroy(ndev);
1465 unregister_netdev(ndev);
1466 phylink_destroy(priv->phylink);
1467 lynx_pcs_destroy(priv->pcs);
1468
1469 free_netdev(ndev);
1470 }
1471
1472 static const struct altera_dmaops altera_dtype_sgdma = {
1473 .altera_dtype = ALTERA_DTYPE_SGDMA,
1474 .dmamask = 32,
1475 .reset_dma = sgdma_reset,
1476 .enable_txirq = sgdma_enable_txirq,
1477 .enable_rxirq = sgdma_enable_rxirq,
1478 .disable_txirq = sgdma_disable_txirq,
1479 .disable_rxirq = sgdma_disable_rxirq,
1480 .clear_txirq = sgdma_clear_txirq,
1481 .clear_rxirq = sgdma_clear_rxirq,
1482 .tx_buffer = sgdma_tx_buffer,
1483 .tx_completions = sgdma_tx_completions,
1484 .add_rx_desc = sgdma_add_rx_desc,
1485 .get_rx_status = sgdma_rx_status,
1486 .init_dma = sgdma_initialize,
1487 .uninit_dma = sgdma_uninitialize,
1488 .start_rxdma = sgdma_start_rxdma,
1489 };
1490
1491 static const struct altera_dmaops altera_dtype_msgdma = {
1492 .altera_dtype = ALTERA_DTYPE_MSGDMA,
1493 .dmamask = 64,
1494 .reset_dma = msgdma_reset,
1495 .enable_txirq = msgdma_enable_txirq,
1496 .enable_rxirq = msgdma_enable_rxirq,
1497 .disable_txirq = msgdma_disable_txirq,
1498 .disable_rxirq = msgdma_disable_rxirq,
1499 .clear_txirq = msgdma_clear_txirq,
1500 .clear_rxirq = msgdma_clear_rxirq,
1501 .tx_buffer = msgdma_tx_buffer,
1502 .tx_completions = msgdma_tx_completions,
1503 .add_rx_desc = msgdma_add_rx_desc,
1504 .get_rx_status = msgdma_rx_status,
1505 .init_dma = msgdma_initialize,
1506 .uninit_dma = msgdma_uninitialize,
1507 .start_rxdma = msgdma_start_rxdma,
1508 };
1509
1510 static const struct of_device_id altera_tse_ids[] = {
1511 { .compatible = "altr,tse-msgdma-1.0", .data = &altera_dtype_msgdma, },
1512 { .compatible = "altr,tse-1.0", .data = &altera_dtype_sgdma, },
1513 { .compatible = "ALTR,tse-1.0", .data = &altera_dtype_sgdma, },
1514 {},
1515 };
1516 MODULE_DEVICE_TABLE(of, altera_tse_ids);
1517
1518 static struct platform_driver altera_tse_driver = {
1519 .probe = altera_tse_probe,
1520 .remove = altera_tse_remove,
1521 .suspend = NULL,
1522 .resume = NULL,
1523 .driver = {
1524 .name = ALTERA_TSE_RESOURCE_NAME,
1525 .of_match_table = altera_tse_ids,
1526 },
1527 };
1528
1529 module_platform_driver(altera_tse_driver);
1530
1531 MODULE_AUTHOR("Altera Corporation");
1532 MODULE_DESCRIPTION("Altera Triple Speed Ethernet MAC driver");
1533 MODULE_LICENSE("GPL v2");
1534