gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / drivers / net / ethernet / marvell / mv643xx_eth.c
blob81d24481b22c3749716c043a0ede1d91b62c6622
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Driver for Marvell Discovery (MV643XX) and Marvell Orion ethernet ports
4 * Copyright (C) 2002 Matthew Dharm <mdharm@momenco.com>
6 * Based on the 64360 driver from:
7 * Copyright (C) 2002 Rabeeh Khoury <rabeeh@galileo.co.il>
8 * Rabeeh Khoury <rabeeh@marvell.com>
10 * Copyright (C) 2003 PMC-Sierra, Inc.,
11 * written by Manish Lachwani
13 * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org>
15 * Copyright (C) 2004-2006 MontaVista Software, Inc.
16 * Dale Farnsworth <dale@farnsworth.org>
18 * Copyright (C) 2004 Steven J. Hill <sjhill1@rockwellcollins.com>
19 * <sjhill@realitydiluted.com>
21 * Copyright (C) 2007-2008 Marvell Semiconductor
22 * Lennert Buytenhek <buytenh@marvell.com>
24 * Copyright (C) 2013 Michael Stapelberg <michael@stapelberg.de>
27 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29 #include <linux/init.h>
30 #include <linux/dma-mapping.h>
31 #include <linux/in.h>
32 #include <linux/ip.h>
33 #include <net/tso.h>
34 #include <linux/tcp.h>
35 #include <linux/udp.h>
36 #include <linux/etherdevice.h>
37 #include <linux/delay.h>
38 #include <linux/ethtool.h>
39 #include <linux/platform_device.h>
40 #include <linux/module.h>
41 #include <linux/kernel.h>
42 #include <linux/spinlock.h>
43 #include <linux/workqueue.h>
44 #include <linux/phy.h>
45 #include <linux/mv643xx_eth.h>
46 #include <linux/io.h>
47 #include <linux/interrupt.h>
48 #include <linux/types.h>
49 #include <linux/slab.h>
50 #include <linux/clk.h>
51 #include <linux/of.h>
52 #include <linux/of_irq.h>
53 #include <linux/of_net.h>
54 #include <linux/of_mdio.h>
56 static char mv643xx_eth_driver_name[] = "mv643xx_eth";
57 static char mv643xx_eth_driver_version[] = "1.4";
61 * Registers shared between all ports.
63 #define PHY_ADDR 0x0000
64 #define WINDOW_BASE(w) (0x0200 + ((w) << 3))
65 #define WINDOW_SIZE(w) (0x0204 + ((w) << 3))
66 #define WINDOW_REMAP_HIGH(w) (0x0280 + ((w) << 2))
67 #define WINDOW_BAR_ENABLE 0x0290
68 #define WINDOW_PROTECT(w) (0x0294 + ((w) << 4))
71 * Main per-port registers. These live at offset 0x0400 for
72 * port #0, 0x0800 for port #1, and 0x0c00 for port #2.
74 #define PORT_CONFIG 0x0000
75 #define UNICAST_PROMISCUOUS_MODE 0x00000001
76 #define PORT_CONFIG_EXT 0x0004
77 #define MAC_ADDR_LOW 0x0014
78 #define MAC_ADDR_HIGH 0x0018
79 #define SDMA_CONFIG 0x001c
80 #define TX_BURST_SIZE_16_64BIT 0x01000000
81 #define TX_BURST_SIZE_4_64BIT 0x00800000
82 #define BLM_TX_NO_SWAP 0x00000020
83 #define BLM_RX_NO_SWAP 0x00000010
84 #define RX_BURST_SIZE_16_64BIT 0x00000008
85 #define RX_BURST_SIZE_4_64BIT 0x00000004
86 #define PORT_SERIAL_CONTROL 0x003c
87 #define SET_MII_SPEED_TO_100 0x01000000
88 #define SET_GMII_SPEED_TO_1000 0x00800000
89 #define SET_FULL_DUPLEX_MODE 0x00200000
90 #define MAX_RX_PACKET_9700BYTE 0x000a0000
91 #define DISABLE_AUTO_NEG_SPEED_GMII 0x00002000
92 #define DO_NOT_FORCE_LINK_FAIL 0x00000400
93 #define SERIAL_PORT_CONTROL_RESERVED 0x00000200
94 #define DISABLE_AUTO_NEG_FOR_FLOW_CTRL 0x00000008
95 #define DISABLE_AUTO_NEG_FOR_DUPLEX 0x00000004
96 #define FORCE_LINK_PASS 0x00000002
97 #define SERIAL_PORT_ENABLE 0x00000001
98 #define PORT_STATUS 0x0044
99 #define TX_FIFO_EMPTY 0x00000400
100 #define TX_IN_PROGRESS 0x00000080
101 #define PORT_SPEED_MASK 0x00000030
102 #define PORT_SPEED_1000 0x00000010
103 #define PORT_SPEED_100 0x00000020
104 #define PORT_SPEED_10 0x00000000
105 #define FLOW_CONTROL_ENABLED 0x00000008
106 #define FULL_DUPLEX 0x00000004
107 #define LINK_UP 0x00000002
108 #define TXQ_COMMAND 0x0048
109 #define TXQ_FIX_PRIO_CONF 0x004c
110 #define PORT_SERIAL_CONTROL1 0x004c
111 #define CLK125_BYPASS_EN 0x00000010
112 #define TX_BW_RATE 0x0050
113 #define TX_BW_MTU 0x0058
114 #define TX_BW_BURST 0x005c
115 #define INT_CAUSE 0x0060
116 #define INT_TX_END 0x07f80000
117 #define INT_TX_END_0 0x00080000
118 #define INT_RX 0x000003fc
119 #define INT_RX_0 0x00000004
120 #define INT_EXT 0x00000002
121 #define INT_CAUSE_EXT 0x0064
122 #define INT_EXT_LINK_PHY 0x00110000
123 #define INT_EXT_TX 0x000000ff
124 #define INT_MASK 0x0068
125 #define INT_MASK_EXT 0x006c
126 #define TX_FIFO_URGENT_THRESHOLD 0x0074
127 #define RX_DISCARD_FRAME_CNT 0x0084
128 #define RX_OVERRUN_FRAME_CNT 0x0088
129 #define TXQ_FIX_PRIO_CONF_MOVED 0x00dc
130 #define TX_BW_RATE_MOVED 0x00e0
131 #define TX_BW_MTU_MOVED 0x00e8
132 #define TX_BW_BURST_MOVED 0x00ec
133 #define RXQ_CURRENT_DESC_PTR(q) (0x020c + ((q) << 4))
134 #define RXQ_COMMAND 0x0280
135 #define TXQ_CURRENT_DESC_PTR(q) (0x02c0 + ((q) << 2))
136 #define TXQ_BW_TOKENS(q) (0x0300 + ((q) << 4))
137 #define TXQ_BW_CONF(q) (0x0304 + ((q) << 4))
138 #define TXQ_BW_WRR_CONF(q) (0x0308 + ((q) << 4))
141 * Misc per-port registers.
143 #define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
144 #define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
145 #define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
146 #define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
150 * SDMA configuration register default value.
152 #if defined(__BIG_ENDIAN)
153 #define PORT_SDMA_CONFIG_DEFAULT_VALUE \
154 (RX_BURST_SIZE_4_64BIT | \
155 TX_BURST_SIZE_4_64BIT)
156 #elif defined(__LITTLE_ENDIAN)
157 #define PORT_SDMA_CONFIG_DEFAULT_VALUE \
158 (RX_BURST_SIZE_4_64BIT | \
159 BLM_RX_NO_SWAP | \
160 BLM_TX_NO_SWAP | \
161 TX_BURST_SIZE_4_64BIT)
162 #else
163 #error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
164 #endif
168 * Misc definitions.
170 #define DEFAULT_RX_QUEUE_SIZE 128
171 #define DEFAULT_TX_QUEUE_SIZE 512
172 #define SKB_DMA_REALIGN ((PAGE_SIZE - NET_SKB_PAD) % SMP_CACHE_BYTES)
174 /* Max number of allowed TCP segments for software TSO */
175 #define MV643XX_MAX_TSO_SEGS 100
176 #define MV643XX_MAX_SKB_DESCS (MV643XX_MAX_TSO_SEGS * 2 + MAX_SKB_FRAGS)
178 #define IS_TSO_HEADER(txq, addr) \
179 ((addr >= txq->tso_hdrs_dma) && \
180 (addr < txq->tso_hdrs_dma + txq->tx_ring_size * TSO_HEADER_SIZE))
182 #define DESC_DMA_MAP_SINGLE 0
183 #define DESC_DMA_MAP_PAGE 1
186 * RX/TX descriptors.
188 #if defined(__BIG_ENDIAN)
189 struct rx_desc {
190 u16 byte_cnt; /* Descriptor buffer byte count */
191 u16 buf_size; /* Buffer size */
192 u32 cmd_sts; /* Descriptor command status */
193 u32 next_desc_ptr; /* Next descriptor pointer */
194 u32 buf_ptr; /* Descriptor buffer pointer */
197 struct tx_desc {
198 u16 byte_cnt; /* buffer byte count */
199 u16 l4i_chk; /* CPU provided TCP checksum */
200 u32 cmd_sts; /* Command/status field */
201 u32 next_desc_ptr; /* Pointer to next descriptor */
202 u32 buf_ptr; /* pointer to buffer for this descriptor*/
204 #elif defined(__LITTLE_ENDIAN)
205 struct rx_desc {
206 u32 cmd_sts; /* Descriptor command status */
207 u16 buf_size; /* Buffer size */
208 u16 byte_cnt; /* Descriptor buffer byte count */
209 u32 buf_ptr; /* Descriptor buffer pointer */
210 u32 next_desc_ptr; /* Next descriptor pointer */
213 struct tx_desc {
214 u32 cmd_sts; /* Command/status field */
215 u16 l4i_chk; /* CPU provided TCP checksum */
216 u16 byte_cnt; /* buffer byte count */
217 u32 buf_ptr; /* pointer to buffer for this descriptor*/
218 u32 next_desc_ptr; /* Pointer to next descriptor */
220 #else
221 #error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
222 #endif
224 /* RX & TX descriptor command */
225 #define BUFFER_OWNED_BY_DMA 0x80000000
227 /* RX & TX descriptor status */
228 #define ERROR_SUMMARY 0x00000001
230 /* RX descriptor status */
231 #define LAYER_4_CHECKSUM_OK 0x40000000
232 #define RX_ENABLE_INTERRUPT 0x20000000
233 #define RX_FIRST_DESC 0x08000000
234 #define RX_LAST_DESC 0x04000000
235 #define RX_IP_HDR_OK 0x02000000
236 #define RX_PKT_IS_IPV4 0x01000000
237 #define RX_PKT_IS_ETHERNETV2 0x00800000
238 #define RX_PKT_LAYER4_TYPE_MASK 0x00600000
239 #define RX_PKT_LAYER4_TYPE_TCP_IPV4 0x00000000
240 #define RX_PKT_IS_VLAN_TAGGED 0x00080000
242 /* TX descriptor command */
243 #define TX_ENABLE_INTERRUPT 0x00800000
244 #define GEN_CRC 0x00400000
245 #define TX_FIRST_DESC 0x00200000
246 #define TX_LAST_DESC 0x00100000
247 #define ZERO_PADDING 0x00080000
248 #define GEN_IP_V4_CHECKSUM 0x00040000
249 #define GEN_TCP_UDP_CHECKSUM 0x00020000
250 #define UDP_FRAME 0x00010000
251 #define MAC_HDR_EXTRA_4_BYTES 0x00008000
252 #define GEN_TCP_UDP_CHK_FULL 0x00000400
253 #define MAC_HDR_EXTRA_8_BYTES 0x00000200
255 #define TX_IHL_SHIFT 11
258 /* global *******************************************************************/
259 struct mv643xx_eth_shared_private {
261 * Ethernet controller base address.
263 void __iomem *base;
266 * Per-port MBUS window access register value.
268 u32 win_protect;
271 * Hardware-specific parameters.
273 int extended_rx_coal_limit;
274 int tx_bw_control;
275 int tx_csum_limit;
276 struct clk *clk;
279 #define TX_BW_CONTROL_ABSENT 0
280 #define TX_BW_CONTROL_OLD_LAYOUT 1
281 #define TX_BW_CONTROL_NEW_LAYOUT 2
283 static int mv643xx_eth_open(struct net_device *dev);
284 static int mv643xx_eth_stop(struct net_device *dev);
287 /* per-port *****************************************************************/
288 struct mib_counters {
289 u64 good_octets_received;
290 u32 bad_octets_received;
291 u32 internal_mac_transmit_err;
292 u32 good_frames_received;
293 u32 bad_frames_received;
294 u32 broadcast_frames_received;
295 u32 multicast_frames_received;
296 u32 frames_64_octets;
297 u32 frames_65_to_127_octets;
298 u32 frames_128_to_255_octets;
299 u32 frames_256_to_511_octets;
300 u32 frames_512_to_1023_octets;
301 u32 frames_1024_to_max_octets;
302 u64 good_octets_sent;
303 u32 good_frames_sent;
304 u32 excessive_collision;
305 u32 multicast_frames_sent;
306 u32 broadcast_frames_sent;
307 u32 unrec_mac_control_received;
308 u32 fc_sent;
309 u32 good_fc_received;
310 u32 bad_fc_received;
311 u32 undersize_received;
312 u32 fragments_received;
313 u32 oversize_received;
314 u32 jabber_received;
315 u32 mac_receive_error;
316 u32 bad_crc_event;
317 u32 collision;
318 u32 late_collision;
319 /* Non MIB hardware counters */
320 u32 rx_discard;
321 u32 rx_overrun;
324 struct rx_queue {
325 int index;
327 int rx_ring_size;
329 int rx_desc_count;
330 int rx_curr_desc;
331 int rx_used_desc;
333 struct rx_desc *rx_desc_area;
334 dma_addr_t rx_desc_dma;
335 int rx_desc_area_size;
336 struct sk_buff **rx_skb;
339 struct tx_queue {
340 int index;
342 int tx_ring_size;
344 int tx_desc_count;
345 int tx_curr_desc;
346 int tx_used_desc;
348 int tx_stop_threshold;
349 int tx_wake_threshold;
351 char *tso_hdrs;
352 dma_addr_t tso_hdrs_dma;
354 struct tx_desc *tx_desc_area;
355 char *tx_desc_mapping; /* array to track the type of the dma mapping */
356 dma_addr_t tx_desc_dma;
357 int tx_desc_area_size;
359 struct sk_buff_head tx_skb;
361 unsigned long tx_packets;
362 unsigned long tx_bytes;
363 unsigned long tx_dropped;
366 struct mv643xx_eth_private {
367 struct mv643xx_eth_shared_private *shared;
368 void __iomem *base;
369 int port_num;
371 struct net_device *dev;
373 struct timer_list mib_counters_timer;
374 spinlock_t mib_counters_lock;
375 struct mib_counters mib_counters;
377 struct work_struct tx_timeout_task;
379 struct napi_struct napi;
380 u32 int_mask;
381 u8 oom;
382 u8 work_link;
383 u8 work_tx;
384 u8 work_tx_end;
385 u8 work_rx;
386 u8 work_rx_refill;
388 int skb_size;
391 * RX state.
393 int rx_ring_size;
394 unsigned long rx_desc_sram_addr;
395 int rx_desc_sram_size;
396 int rxq_count;
397 struct timer_list rx_oom;
398 struct rx_queue rxq[8];
401 * TX state.
403 int tx_ring_size;
404 unsigned long tx_desc_sram_addr;
405 int tx_desc_sram_size;
406 int txq_count;
407 struct tx_queue txq[8];
410 * Hardware-specific parameters.
412 struct clk *clk;
413 unsigned int t_clk;
417 /* port register accessors **************************************************/
418 static inline u32 rdl(struct mv643xx_eth_private *mp, int offset)
420 return readl(mp->shared->base + offset);
423 static inline u32 rdlp(struct mv643xx_eth_private *mp, int offset)
425 return readl(mp->base + offset);
428 static inline void wrl(struct mv643xx_eth_private *mp, int offset, u32 data)
430 writel(data, mp->shared->base + offset);
433 static inline void wrlp(struct mv643xx_eth_private *mp, int offset, u32 data)
435 writel(data, mp->base + offset);
439 /* rxq/txq helper functions *************************************************/
440 static struct mv643xx_eth_private *rxq_to_mp(struct rx_queue *rxq)
442 return container_of(rxq, struct mv643xx_eth_private, rxq[rxq->index]);
445 static struct mv643xx_eth_private *txq_to_mp(struct tx_queue *txq)
447 return container_of(txq, struct mv643xx_eth_private, txq[txq->index]);
450 static void rxq_enable(struct rx_queue *rxq)
452 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
453 wrlp(mp, RXQ_COMMAND, 1 << rxq->index);
456 static void rxq_disable(struct rx_queue *rxq)
458 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
459 u8 mask = 1 << rxq->index;
461 wrlp(mp, RXQ_COMMAND, mask << 8);
462 while (rdlp(mp, RXQ_COMMAND) & mask)
463 udelay(10);
466 static void txq_reset_hw_ptr(struct tx_queue *txq)
468 struct mv643xx_eth_private *mp = txq_to_mp(txq);
469 u32 addr;
471 addr = (u32)txq->tx_desc_dma;
472 addr += txq->tx_curr_desc * sizeof(struct tx_desc);
473 wrlp(mp, TXQ_CURRENT_DESC_PTR(txq->index), addr);
476 static void txq_enable(struct tx_queue *txq)
478 struct mv643xx_eth_private *mp = txq_to_mp(txq);
479 wrlp(mp, TXQ_COMMAND, 1 << txq->index);
482 static void txq_disable(struct tx_queue *txq)
484 struct mv643xx_eth_private *mp = txq_to_mp(txq);
485 u8 mask = 1 << txq->index;
487 wrlp(mp, TXQ_COMMAND, mask << 8);
488 while (rdlp(mp, TXQ_COMMAND) & mask)
489 udelay(10);
492 static void txq_maybe_wake(struct tx_queue *txq)
494 struct mv643xx_eth_private *mp = txq_to_mp(txq);
495 struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
497 if (netif_tx_queue_stopped(nq)) {
498 __netif_tx_lock(nq, smp_processor_id());
499 if (txq->tx_desc_count <= txq->tx_wake_threshold)
500 netif_tx_wake_queue(nq);
501 __netif_tx_unlock(nq);
505 static int rxq_process(struct rx_queue *rxq, int budget)
507 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
508 struct net_device_stats *stats = &mp->dev->stats;
509 int rx;
511 rx = 0;
512 while (rx < budget && rxq->rx_desc_count) {
513 struct rx_desc *rx_desc;
514 unsigned int cmd_sts;
515 struct sk_buff *skb;
516 u16 byte_cnt;
518 rx_desc = &rxq->rx_desc_area[rxq->rx_curr_desc];
520 cmd_sts = rx_desc->cmd_sts;
521 if (cmd_sts & BUFFER_OWNED_BY_DMA)
522 break;
523 rmb();
525 skb = rxq->rx_skb[rxq->rx_curr_desc];
526 rxq->rx_skb[rxq->rx_curr_desc] = NULL;
528 rxq->rx_curr_desc++;
529 if (rxq->rx_curr_desc == rxq->rx_ring_size)
530 rxq->rx_curr_desc = 0;
532 dma_unmap_single(mp->dev->dev.parent, rx_desc->buf_ptr,
533 rx_desc->buf_size, DMA_FROM_DEVICE);
534 rxq->rx_desc_count--;
535 rx++;
537 mp->work_rx_refill |= 1 << rxq->index;
539 byte_cnt = rx_desc->byte_cnt;
542 * Update statistics.
544 * Note that the descriptor byte count includes 2 dummy
545 * bytes automatically inserted by the hardware at the
546 * start of the packet (which we don't count), and a 4
547 * byte CRC at the end of the packet (which we do count).
549 stats->rx_packets++;
550 stats->rx_bytes += byte_cnt - 2;
553 * In case we received a packet without first / last bits
554 * on, or the error summary bit is set, the packet needs
555 * to be dropped.
557 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC | ERROR_SUMMARY))
558 != (RX_FIRST_DESC | RX_LAST_DESC))
559 goto err;
562 * The -4 is for the CRC in the trailer of the
563 * received packet
565 skb_put(skb, byte_cnt - 2 - 4);
567 if (cmd_sts & LAYER_4_CHECKSUM_OK)
568 skb->ip_summed = CHECKSUM_UNNECESSARY;
569 skb->protocol = eth_type_trans(skb, mp->dev);
571 napi_gro_receive(&mp->napi, skb);
573 continue;
575 err:
576 stats->rx_dropped++;
578 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
579 (RX_FIRST_DESC | RX_LAST_DESC)) {
580 if (net_ratelimit())
581 netdev_err(mp->dev,
582 "received packet spanning multiple descriptors\n");
585 if (cmd_sts & ERROR_SUMMARY)
586 stats->rx_errors++;
588 dev_kfree_skb(skb);
591 if (rx < budget)
592 mp->work_rx &= ~(1 << rxq->index);
594 return rx;
597 static int rxq_refill(struct rx_queue *rxq, int budget)
599 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
600 int refilled;
602 refilled = 0;
603 while (refilled < budget && rxq->rx_desc_count < rxq->rx_ring_size) {
604 struct sk_buff *skb;
605 int rx;
606 struct rx_desc *rx_desc;
607 int size;
609 skb = netdev_alloc_skb(mp->dev, mp->skb_size);
611 if (skb == NULL) {
612 mp->oom = 1;
613 goto oom;
616 if (SKB_DMA_REALIGN)
617 skb_reserve(skb, SKB_DMA_REALIGN);
619 refilled++;
620 rxq->rx_desc_count++;
622 rx = rxq->rx_used_desc++;
623 if (rxq->rx_used_desc == rxq->rx_ring_size)
624 rxq->rx_used_desc = 0;
626 rx_desc = rxq->rx_desc_area + rx;
628 size = skb_end_pointer(skb) - skb->data;
629 rx_desc->buf_ptr = dma_map_single(mp->dev->dev.parent,
630 skb->data, size,
631 DMA_FROM_DEVICE);
632 rx_desc->buf_size = size;
633 rxq->rx_skb[rx] = skb;
634 wmb();
635 rx_desc->cmd_sts = BUFFER_OWNED_BY_DMA | RX_ENABLE_INTERRUPT;
636 wmb();
639 * The hardware automatically prepends 2 bytes of
640 * dummy data to each received packet, so that the
641 * IP header ends up 16-byte aligned.
643 skb_reserve(skb, 2);
646 if (refilled < budget)
647 mp->work_rx_refill &= ~(1 << rxq->index);
649 oom:
650 return refilled;
654 /* tx ***********************************************************************/
655 static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
657 int frag;
659 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
660 const skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
662 if (skb_frag_size(fragp) <= 8 && skb_frag_off(fragp) & 7)
663 return 1;
666 return 0;
669 static inline __be16 sum16_as_be(__sum16 sum)
671 return (__force __be16)sum;
674 static int skb_tx_csum(struct mv643xx_eth_private *mp, struct sk_buff *skb,
675 u16 *l4i_chk, u32 *command, int length)
677 int ret;
678 u32 cmd = 0;
680 if (skb->ip_summed == CHECKSUM_PARTIAL) {
681 int hdr_len;
682 int tag_bytes;
684 BUG_ON(skb->protocol != htons(ETH_P_IP) &&
685 skb->protocol != htons(ETH_P_8021Q));
687 hdr_len = (void *)ip_hdr(skb) - (void *)skb->data;
688 tag_bytes = hdr_len - ETH_HLEN;
690 if (length - hdr_len > mp->shared->tx_csum_limit ||
691 unlikely(tag_bytes & ~12)) {
692 ret = skb_checksum_help(skb);
693 if (!ret)
694 goto no_csum;
695 return ret;
698 if (tag_bytes & 4)
699 cmd |= MAC_HDR_EXTRA_4_BYTES;
700 if (tag_bytes & 8)
701 cmd |= MAC_HDR_EXTRA_8_BYTES;
703 cmd |= GEN_TCP_UDP_CHECKSUM | GEN_TCP_UDP_CHK_FULL |
704 GEN_IP_V4_CHECKSUM |
705 ip_hdr(skb)->ihl << TX_IHL_SHIFT;
707 /* TODO: Revisit this. With the usage of GEN_TCP_UDP_CHK_FULL
708 * it seems we don't need to pass the initial checksum. */
709 switch (ip_hdr(skb)->protocol) {
710 case IPPROTO_UDP:
711 cmd |= UDP_FRAME;
712 *l4i_chk = 0;
713 break;
714 case IPPROTO_TCP:
715 *l4i_chk = 0;
716 break;
717 default:
718 WARN(1, "protocol not supported");
720 } else {
721 no_csum:
722 /* Errata BTS #50, IHL must be 5 if no HW checksum */
723 cmd |= 5 << TX_IHL_SHIFT;
725 *command = cmd;
726 return 0;
729 static inline int
730 txq_put_data_tso(struct net_device *dev, struct tx_queue *txq,
731 struct sk_buff *skb, char *data, int length,
732 bool last_tcp, bool is_last)
734 int tx_index;
735 u32 cmd_sts;
736 struct tx_desc *desc;
738 tx_index = txq->tx_curr_desc++;
739 if (txq->tx_curr_desc == txq->tx_ring_size)
740 txq->tx_curr_desc = 0;
741 desc = &txq->tx_desc_area[tx_index];
742 txq->tx_desc_mapping[tx_index] = DESC_DMA_MAP_SINGLE;
744 desc->l4i_chk = 0;
745 desc->byte_cnt = length;
747 if (length <= 8 && (uintptr_t)data & 0x7) {
748 /* Copy unaligned small data fragment to TSO header data area */
749 memcpy(txq->tso_hdrs + tx_index * TSO_HEADER_SIZE,
750 data, length);
751 desc->buf_ptr = txq->tso_hdrs_dma
752 + tx_index * TSO_HEADER_SIZE;
753 } else {
754 /* Alignment is okay, map buffer and hand off to hardware */
755 txq->tx_desc_mapping[tx_index] = DESC_DMA_MAP_SINGLE;
756 desc->buf_ptr = dma_map_single(dev->dev.parent, data,
757 length, DMA_TO_DEVICE);
758 if (unlikely(dma_mapping_error(dev->dev.parent,
759 desc->buf_ptr))) {
760 WARN(1, "dma_map_single failed!\n");
761 return -ENOMEM;
765 cmd_sts = BUFFER_OWNED_BY_DMA;
766 if (last_tcp) {
767 /* last descriptor in the TCP packet */
768 cmd_sts |= ZERO_PADDING | TX_LAST_DESC;
769 /* last descriptor in SKB */
770 if (is_last)
771 cmd_sts |= TX_ENABLE_INTERRUPT;
773 desc->cmd_sts = cmd_sts;
774 return 0;
777 static inline void
778 txq_put_hdr_tso(struct sk_buff *skb, struct tx_queue *txq, int length,
779 u32 *first_cmd_sts, bool first_desc)
781 struct mv643xx_eth_private *mp = txq_to_mp(txq);
782 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
783 int tx_index;
784 struct tx_desc *desc;
785 int ret;
786 u32 cmd_csum = 0;
787 u16 l4i_chk = 0;
788 u32 cmd_sts;
790 tx_index = txq->tx_curr_desc;
791 desc = &txq->tx_desc_area[tx_index];
793 ret = skb_tx_csum(mp, skb, &l4i_chk, &cmd_csum, length);
794 if (ret)
795 WARN(1, "failed to prepare checksum!");
797 /* Should we set this? Can't use the value from skb_tx_csum()
798 * as it's not the correct initial L4 checksum to use. */
799 desc->l4i_chk = 0;
801 desc->byte_cnt = hdr_len;
802 desc->buf_ptr = txq->tso_hdrs_dma +
803 txq->tx_curr_desc * TSO_HEADER_SIZE;
804 cmd_sts = cmd_csum | BUFFER_OWNED_BY_DMA | TX_FIRST_DESC |
805 GEN_CRC;
807 /* Defer updating the first command descriptor until all
808 * following descriptors have been written.
810 if (first_desc)
811 *first_cmd_sts = cmd_sts;
812 else
813 desc->cmd_sts = cmd_sts;
815 txq->tx_curr_desc++;
816 if (txq->tx_curr_desc == txq->tx_ring_size)
817 txq->tx_curr_desc = 0;
820 static int txq_submit_tso(struct tx_queue *txq, struct sk_buff *skb,
821 struct net_device *dev)
823 struct mv643xx_eth_private *mp = txq_to_mp(txq);
824 int total_len, data_left, ret;
825 int desc_count = 0;
826 struct tso_t tso;
827 int hdr_len = skb_transport_offset(skb) + tcp_hdrlen(skb);
828 struct tx_desc *first_tx_desc;
829 u32 first_cmd_sts = 0;
831 /* Count needed descriptors */
832 if ((txq->tx_desc_count + tso_count_descs(skb)) >= txq->tx_ring_size) {
833 netdev_dbg(dev, "not enough descriptors for TSO!\n");
834 return -EBUSY;
837 first_tx_desc = &txq->tx_desc_area[txq->tx_curr_desc];
839 /* Initialize the TSO handler, and prepare the first payload */
840 tso_start(skb, &tso);
842 total_len = skb->len - hdr_len;
843 while (total_len > 0) {
844 bool first_desc = (desc_count == 0);
845 char *hdr;
847 data_left = min_t(int, skb_shinfo(skb)->gso_size, total_len);
848 total_len -= data_left;
849 desc_count++;
851 /* prepare packet headers: MAC + IP + TCP */
852 hdr = txq->tso_hdrs + txq->tx_curr_desc * TSO_HEADER_SIZE;
853 tso_build_hdr(skb, hdr, &tso, data_left, total_len == 0);
854 txq_put_hdr_tso(skb, txq, data_left, &first_cmd_sts,
855 first_desc);
857 while (data_left > 0) {
858 int size;
859 desc_count++;
861 size = min_t(int, tso.size, data_left);
862 ret = txq_put_data_tso(dev, txq, skb, tso.data, size,
863 size == data_left,
864 total_len == 0);
865 if (ret)
866 goto err_release;
867 data_left -= size;
868 tso_build_data(skb, &tso, size);
872 __skb_queue_tail(&txq->tx_skb, skb);
873 skb_tx_timestamp(skb);
875 /* ensure all other descriptors are written before first cmd_sts */
876 wmb();
877 first_tx_desc->cmd_sts = first_cmd_sts;
879 /* clear TX_END status */
880 mp->work_tx_end &= ~(1 << txq->index);
882 /* ensure all descriptors are written before poking hardware */
883 wmb();
884 txq_enable(txq);
885 txq->tx_desc_count += desc_count;
886 return 0;
887 err_release:
888 /* TODO: Release all used data descriptors; header descriptors must not
889 * be DMA-unmapped.
891 return ret;
894 static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)
896 struct mv643xx_eth_private *mp = txq_to_mp(txq);
897 int nr_frags = skb_shinfo(skb)->nr_frags;
898 int frag;
900 for (frag = 0; frag < nr_frags; frag++) {
901 skb_frag_t *this_frag;
902 int tx_index;
903 struct tx_desc *desc;
905 this_frag = &skb_shinfo(skb)->frags[frag];
906 tx_index = txq->tx_curr_desc++;
907 if (txq->tx_curr_desc == txq->tx_ring_size)
908 txq->tx_curr_desc = 0;
909 desc = &txq->tx_desc_area[tx_index];
910 txq->tx_desc_mapping[tx_index] = DESC_DMA_MAP_PAGE;
913 * The last fragment will generate an interrupt
914 * which will free the skb on TX completion.
916 if (frag == nr_frags - 1) {
917 desc->cmd_sts = BUFFER_OWNED_BY_DMA |
918 ZERO_PADDING | TX_LAST_DESC |
919 TX_ENABLE_INTERRUPT;
920 } else {
921 desc->cmd_sts = BUFFER_OWNED_BY_DMA;
924 desc->l4i_chk = 0;
925 desc->byte_cnt = skb_frag_size(this_frag);
926 desc->buf_ptr = skb_frag_dma_map(mp->dev->dev.parent,
927 this_frag, 0, desc->byte_cnt,
928 DMA_TO_DEVICE);
932 static int txq_submit_skb(struct tx_queue *txq, struct sk_buff *skb,
933 struct net_device *dev)
935 struct mv643xx_eth_private *mp = txq_to_mp(txq);
936 int nr_frags = skb_shinfo(skb)->nr_frags;
937 int tx_index;
938 struct tx_desc *desc;
939 u32 cmd_sts;
940 u16 l4i_chk;
941 int length, ret;
943 cmd_sts = 0;
944 l4i_chk = 0;
946 if (txq->tx_ring_size - txq->tx_desc_count < MAX_SKB_FRAGS + 1) {
947 if (net_ratelimit())
948 netdev_err(dev, "tx queue full?!\n");
949 return -EBUSY;
952 ret = skb_tx_csum(mp, skb, &l4i_chk, &cmd_sts, skb->len);
953 if (ret)
954 return ret;
955 cmd_sts |= TX_FIRST_DESC | GEN_CRC | BUFFER_OWNED_BY_DMA;
957 tx_index = txq->tx_curr_desc++;
958 if (txq->tx_curr_desc == txq->tx_ring_size)
959 txq->tx_curr_desc = 0;
960 desc = &txq->tx_desc_area[tx_index];
961 txq->tx_desc_mapping[tx_index] = DESC_DMA_MAP_SINGLE;
963 if (nr_frags) {
964 txq_submit_frag_skb(txq, skb);
965 length = skb_headlen(skb);
966 } else {
967 cmd_sts |= ZERO_PADDING | TX_LAST_DESC | TX_ENABLE_INTERRUPT;
968 length = skb->len;
971 desc->l4i_chk = l4i_chk;
972 desc->byte_cnt = length;
973 desc->buf_ptr = dma_map_single(mp->dev->dev.parent, skb->data,
974 length, DMA_TO_DEVICE);
976 __skb_queue_tail(&txq->tx_skb, skb);
978 skb_tx_timestamp(skb);
980 /* ensure all other descriptors are written before first cmd_sts */
981 wmb();
982 desc->cmd_sts = cmd_sts;
984 /* clear TX_END status */
985 mp->work_tx_end &= ~(1 << txq->index);
987 /* ensure all descriptors are written before poking hardware */
988 wmb();
989 txq_enable(txq);
991 txq->tx_desc_count += nr_frags + 1;
993 return 0;
996 static netdev_tx_t mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev)
998 struct mv643xx_eth_private *mp = netdev_priv(dev);
999 int length, queue, ret;
1000 struct tx_queue *txq;
1001 struct netdev_queue *nq;
1003 queue = skb_get_queue_mapping(skb);
1004 txq = mp->txq + queue;
1005 nq = netdev_get_tx_queue(dev, queue);
1007 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
1008 netdev_printk(KERN_DEBUG, dev,
1009 "failed to linearize skb with tiny unaligned fragment\n");
1010 return NETDEV_TX_BUSY;
1013 length = skb->len;
1015 if (skb_is_gso(skb))
1016 ret = txq_submit_tso(txq, skb, dev);
1017 else
1018 ret = txq_submit_skb(txq, skb, dev);
1019 if (!ret) {
1020 txq->tx_bytes += length;
1021 txq->tx_packets++;
1023 if (txq->tx_desc_count >= txq->tx_stop_threshold)
1024 netif_tx_stop_queue(nq);
1025 } else {
1026 txq->tx_dropped++;
1027 dev_kfree_skb_any(skb);
1030 return NETDEV_TX_OK;
1034 /* tx napi ******************************************************************/
1035 static void txq_kick(struct tx_queue *txq)
1037 struct mv643xx_eth_private *mp = txq_to_mp(txq);
1038 struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
1039 u32 hw_desc_ptr;
1040 u32 expected_ptr;
1042 __netif_tx_lock(nq, smp_processor_id());
1044 if (rdlp(mp, TXQ_COMMAND) & (1 << txq->index))
1045 goto out;
1047 hw_desc_ptr = rdlp(mp, TXQ_CURRENT_DESC_PTR(txq->index));
1048 expected_ptr = (u32)txq->tx_desc_dma +
1049 txq->tx_curr_desc * sizeof(struct tx_desc);
1051 if (hw_desc_ptr != expected_ptr)
1052 txq_enable(txq);
1054 out:
1055 __netif_tx_unlock(nq);
1057 mp->work_tx_end &= ~(1 << txq->index);
1060 static int txq_reclaim(struct tx_queue *txq, int budget, int force)
1062 struct mv643xx_eth_private *mp = txq_to_mp(txq);
1063 struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
1064 int reclaimed;
1066 __netif_tx_lock_bh(nq);
1068 reclaimed = 0;
1069 while (reclaimed < budget && txq->tx_desc_count > 0) {
1070 int tx_index;
1071 struct tx_desc *desc;
1072 u32 cmd_sts;
1073 char desc_dma_map;
1075 tx_index = txq->tx_used_desc;
1076 desc = &txq->tx_desc_area[tx_index];
1077 desc_dma_map = txq->tx_desc_mapping[tx_index];
1079 cmd_sts = desc->cmd_sts;
1081 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
1082 if (!force)
1083 break;
1084 desc->cmd_sts = cmd_sts & ~BUFFER_OWNED_BY_DMA;
1087 txq->tx_used_desc = tx_index + 1;
1088 if (txq->tx_used_desc == txq->tx_ring_size)
1089 txq->tx_used_desc = 0;
1091 reclaimed++;
1092 txq->tx_desc_count--;
1094 if (!IS_TSO_HEADER(txq, desc->buf_ptr)) {
1096 if (desc_dma_map == DESC_DMA_MAP_PAGE)
1097 dma_unmap_page(mp->dev->dev.parent,
1098 desc->buf_ptr,
1099 desc->byte_cnt,
1100 DMA_TO_DEVICE);
1101 else
1102 dma_unmap_single(mp->dev->dev.parent,
1103 desc->buf_ptr,
1104 desc->byte_cnt,
1105 DMA_TO_DEVICE);
1108 if (cmd_sts & TX_ENABLE_INTERRUPT) {
1109 struct sk_buff *skb = __skb_dequeue(&txq->tx_skb);
1111 if (!WARN_ON(!skb))
1112 dev_consume_skb_any(skb);
1115 if (cmd_sts & ERROR_SUMMARY) {
1116 netdev_info(mp->dev, "tx error\n");
1117 mp->dev->stats.tx_errors++;
1122 __netif_tx_unlock_bh(nq);
1124 if (reclaimed < budget)
1125 mp->work_tx &= ~(1 << txq->index);
1127 return reclaimed;
1131 /* tx rate control **********************************************************/
1133 * Set total maximum TX rate (shared by all TX queues for this port)
1134 * to 'rate' bits per second, with a maximum burst of 'burst' bytes.
1136 static void tx_set_rate(struct mv643xx_eth_private *mp, int rate, int burst)
1138 int token_rate;
1139 int mtu;
1140 int bucket_size;
1142 token_rate = ((rate / 1000) * 64) / (mp->t_clk / 1000);
1143 if (token_rate > 1023)
1144 token_rate = 1023;
1146 mtu = (mp->dev->mtu + 255) >> 8;
1147 if (mtu > 63)
1148 mtu = 63;
1150 bucket_size = (burst + 255) >> 8;
1151 if (bucket_size > 65535)
1152 bucket_size = 65535;
1154 switch (mp->shared->tx_bw_control) {
1155 case TX_BW_CONTROL_OLD_LAYOUT:
1156 wrlp(mp, TX_BW_RATE, token_rate);
1157 wrlp(mp, TX_BW_MTU, mtu);
1158 wrlp(mp, TX_BW_BURST, bucket_size);
1159 break;
1160 case TX_BW_CONTROL_NEW_LAYOUT:
1161 wrlp(mp, TX_BW_RATE_MOVED, token_rate);
1162 wrlp(mp, TX_BW_MTU_MOVED, mtu);
1163 wrlp(mp, TX_BW_BURST_MOVED, bucket_size);
1164 break;
1168 static void txq_set_rate(struct tx_queue *txq, int rate, int burst)
1170 struct mv643xx_eth_private *mp = txq_to_mp(txq);
1171 int token_rate;
1172 int bucket_size;
1174 token_rate = ((rate / 1000) * 64) / (mp->t_clk / 1000);
1175 if (token_rate > 1023)
1176 token_rate = 1023;
1178 bucket_size = (burst + 255) >> 8;
1179 if (bucket_size > 65535)
1180 bucket_size = 65535;
1182 wrlp(mp, TXQ_BW_TOKENS(txq->index), token_rate << 14);
1183 wrlp(mp, TXQ_BW_CONF(txq->index), (bucket_size << 10) | token_rate);
1186 static void txq_set_fixed_prio_mode(struct tx_queue *txq)
1188 struct mv643xx_eth_private *mp = txq_to_mp(txq);
1189 int off;
1190 u32 val;
1193 * Turn on fixed priority mode.
1195 off = 0;
1196 switch (mp->shared->tx_bw_control) {
1197 case TX_BW_CONTROL_OLD_LAYOUT:
1198 off = TXQ_FIX_PRIO_CONF;
1199 break;
1200 case TX_BW_CONTROL_NEW_LAYOUT:
1201 off = TXQ_FIX_PRIO_CONF_MOVED;
1202 break;
1205 if (off) {
1206 val = rdlp(mp, off);
1207 val |= 1 << txq->index;
1208 wrlp(mp, off, val);
1213 /* mii management interface *************************************************/
1214 static void mv643xx_eth_adjust_link(struct net_device *dev)
1216 struct mv643xx_eth_private *mp = netdev_priv(dev);
1217 u32 pscr = rdlp(mp, PORT_SERIAL_CONTROL);
1218 u32 autoneg_disable = FORCE_LINK_PASS |
1219 DISABLE_AUTO_NEG_SPEED_GMII |
1220 DISABLE_AUTO_NEG_FOR_FLOW_CTRL |
1221 DISABLE_AUTO_NEG_FOR_DUPLEX;
1223 if (dev->phydev->autoneg == AUTONEG_ENABLE) {
1224 /* enable auto negotiation */
1225 pscr &= ~autoneg_disable;
1226 goto out_write;
1229 pscr |= autoneg_disable;
1231 if (dev->phydev->speed == SPEED_1000) {
1232 /* force gigabit, half duplex not supported */
1233 pscr |= SET_GMII_SPEED_TO_1000;
1234 pscr |= SET_FULL_DUPLEX_MODE;
1235 goto out_write;
1238 pscr &= ~SET_GMII_SPEED_TO_1000;
1240 if (dev->phydev->speed == SPEED_100)
1241 pscr |= SET_MII_SPEED_TO_100;
1242 else
1243 pscr &= ~SET_MII_SPEED_TO_100;
1245 if (dev->phydev->duplex == DUPLEX_FULL)
1246 pscr |= SET_FULL_DUPLEX_MODE;
1247 else
1248 pscr &= ~SET_FULL_DUPLEX_MODE;
1250 out_write:
1251 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
1254 /* statistics ***************************************************************/
1255 static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *dev)
1257 struct mv643xx_eth_private *mp = netdev_priv(dev);
1258 struct net_device_stats *stats = &dev->stats;
1259 unsigned long tx_packets = 0;
1260 unsigned long tx_bytes = 0;
1261 unsigned long tx_dropped = 0;
1262 int i;
1264 for (i = 0; i < mp->txq_count; i++) {
1265 struct tx_queue *txq = mp->txq + i;
1267 tx_packets += txq->tx_packets;
1268 tx_bytes += txq->tx_bytes;
1269 tx_dropped += txq->tx_dropped;
1272 stats->tx_packets = tx_packets;
1273 stats->tx_bytes = tx_bytes;
1274 stats->tx_dropped = tx_dropped;
1276 return stats;
1279 static inline u32 mib_read(struct mv643xx_eth_private *mp, int offset)
1281 return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
1284 static void mib_counters_clear(struct mv643xx_eth_private *mp)
1286 int i;
1288 for (i = 0; i < 0x80; i += 4)
1289 mib_read(mp, i);
1291 /* Clear non MIB hw counters also */
1292 rdlp(mp, RX_DISCARD_FRAME_CNT);
1293 rdlp(mp, RX_OVERRUN_FRAME_CNT);
1296 static void mib_counters_update(struct mv643xx_eth_private *mp)
1298 struct mib_counters *p = &mp->mib_counters;
1300 spin_lock_bh(&mp->mib_counters_lock);
1301 p->good_octets_received += mib_read(mp, 0x00);
1302 p->bad_octets_received += mib_read(mp, 0x08);
1303 p->internal_mac_transmit_err += mib_read(mp, 0x0c);
1304 p->good_frames_received += mib_read(mp, 0x10);
1305 p->bad_frames_received += mib_read(mp, 0x14);
1306 p->broadcast_frames_received += mib_read(mp, 0x18);
1307 p->multicast_frames_received += mib_read(mp, 0x1c);
1308 p->frames_64_octets += mib_read(mp, 0x20);
1309 p->frames_65_to_127_octets += mib_read(mp, 0x24);
1310 p->frames_128_to_255_octets += mib_read(mp, 0x28);
1311 p->frames_256_to_511_octets += mib_read(mp, 0x2c);
1312 p->frames_512_to_1023_octets += mib_read(mp, 0x30);
1313 p->frames_1024_to_max_octets += mib_read(mp, 0x34);
1314 p->good_octets_sent += mib_read(mp, 0x38);
1315 p->good_frames_sent += mib_read(mp, 0x40);
1316 p->excessive_collision += mib_read(mp, 0x44);
1317 p->multicast_frames_sent += mib_read(mp, 0x48);
1318 p->broadcast_frames_sent += mib_read(mp, 0x4c);
1319 p->unrec_mac_control_received += mib_read(mp, 0x50);
1320 p->fc_sent += mib_read(mp, 0x54);
1321 p->good_fc_received += mib_read(mp, 0x58);
1322 p->bad_fc_received += mib_read(mp, 0x5c);
1323 p->undersize_received += mib_read(mp, 0x60);
1324 p->fragments_received += mib_read(mp, 0x64);
1325 p->oversize_received += mib_read(mp, 0x68);
1326 p->jabber_received += mib_read(mp, 0x6c);
1327 p->mac_receive_error += mib_read(mp, 0x70);
1328 p->bad_crc_event += mib_read(mp, 0x74);
1329 p->collision += mib_read(mp, 0x78);
1330 p->late_collision += mib_read(mp, 0x7c);
1331 /* Non MIB hardware counters */
1332 p->rx_discard += rdlp(mp, RX_DISCARD_FRAME_CNT);
1333 p->rx_overrun += rdlp(mp, RX_OVERRUN_FRAME_CNT);
1334 spin_unlock_bh(&mp->mib_counters_lock);
1337 static void mib_counters_timer_wrapper(struct timer_list *t)
1339 struct mv643xx_eth_private *mp = from_timer(mp, t, mib_counters_timer);
1340 mib_counters_update(mp);
1341 mod_timer(&mp->mib_counters_timer, jiffies + 30 * HZ);
1345 /* interrupt coalescing *****************************************************/
1347 * Hardware coalescing parameters are set in units of 64 t_clk
1348 * cycles. I.e.:
1350 * coal_delay_in_usec = 64000000 * register_value / t_clk_rate
1352 * register_value = coal_delay_in_usec * t_clk_rate / 64000000
1354 * In the ->set*() methods, we round the computed register value
1355 * to the nearest integer.
1357 static unsigned int get_rx_coal(struct mv643xx_eth_private *mp)
1359 u32 val = rdlp(mp, SDMA_CONFIG);
1360 u64 temp;
1362 if (mp->shared->extended_rx_coal_limit)
1363 temp = ((val & 0x02000000) >> 10) | ((val & 0x003fff80) >> 7);
1364 else
1365 temp = (val & 0x003fff00) >> 8;
1367 temp *= 64000000;
1368 temp += mp->t_clk / 2;
1369 do_div(temp, mp->t_clk);
1371 return (unsigned int)temp;
1374 static void set_rx_coal(struct mv643xx_eth_private *mp, unsigned int usec)
1376 u64 temp;
1377 u32 val;
1379 temp = (u64)usec * mp->t_clk;
1380 temp += 31999999;
1381 do_div(temp, 64000000);
1383 val = rdlp(mp, SDMA_CONFIG);
1384 if (mp->shared->extended_rx_coal_limit) {
1385 if (temp > 0xffff)
1386 temp = 0xffff;
1387 val &= ~0x023fff80;
1388 val |= (temp & 0x8000) << 10;
1389 val |= (temp & 0x7fff) << 7;
1390 } else {
1391 if (temp > 0x3fff)
1392 temp = 0x3fff;
1393 val &= ~0x003fff00;
1394 val |= (temp & 0x3fff) << 8;
1396 wrlp(mp, SDMA_CONFIG, val);
1399 static unsigned int get_tx_coal(struct mv643xx_eth_private *mp)
1401 u64 temp;
1403 temp = (rdlp(mp, TX_FIFO_URGENT_THRESHOLD) & 0x3fff0) >> 4;
1404 temp *= 64000000;
1405 temp += mp->t_clk / 2;
1406 do_div(temp, mp->t_clk);
1408 return (unsigned int)temp;
1411 static void set_tx_coal(struct mv643xx_eth_private *mp, unsigned int usec)
1413 u64 temp;
1415 temp = (u64)usec * mp->t_clk;
1416 temp += 31999999;
1417 do_div(temp, 64000000);
1419 if (temp > 0x3fff)
1420 temp = 0x3fff;
1422 wrlp(mp, TX_FIFO_URGENT_THRESHOLD, temp << 4);
1426 /* ethtool ******************************************************************/
1427 struct mv643xx_eth_stats {
1428 char stat_string[ETH_GSTRING_LEN];
1429 int sizeof_stat;
1430 int netdev_off;
1431 int mp_off;
1434 #define SSTAT(m) \
1435 { #m, sizeof_field(struct net_device_stats, m), \
1436 offsetof(struct net_device, stats.m), -1 }
1438 #define MIBSTAT(m) \
1439 { #m, sizeof_field(struct mib_counters, m), \
1440 -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
1442 static const struct mv643xx_eth_stats mv643xx_eth_stats[] = {
1443 SSTAT(rx_packets),
1444 SSTAT(tx_packets),
1445 SSTAT(rx_bytes),
1446 SSTAT(tx_bytes),
1447 SSTAT(rx_errors),
1448 SSTAT(tx_errors),
1449 SSTAT(rx_dropped),
1450 SSTAT(tx_dropped),
1451 MIBSTAT(good_octets_received),
1452 MIBSTAT(bad_octets_received),
1453 MIBSTAT(internal_mac_transmit_err),
1454 MIBSTAT(good_frames_received),
1455 MIBSTAT(bad_frames_received),
1456 MIBSTAT(broadcast_frames_received),
1457 MIBSTAT(multicast_frames_received),
1458 MIBSTAT(frames_64_octets),
1459 MIBSTAT(frames_65_to_127_octets),
1460 MIBSTAT(frames_128_to_255_octets),
1461 MIBSTAT(frames_256_to_511_octets),
1462 MIBSTAT(frames_512_to_1023_octets),
1463 MIBSTAT(frames_1024_to_max_octets),
1464 MIBSTAT(good_octets_sent),
1465 MIBSTAT(good_frames_sent),
1466 MIBSTAT(excessive_collision),
1467 MIBSTAT(multicast_frames_sent),
1468 MIBSTAT(broadcast_frames_sent),
1469 MIBSTAT(unrec_mac_control_received),
1470 MIBSTAT(fc_sent),
1471 MIBSTAT(good_fc_received),
1472 MIBSTAT(bad_fc_received),
1473 MIBSTAT(undersize_received),
1474 MIBSTAT(fragments_received),
1475 MIBSTAT(oversize_received),
1476 MIBSTAT(jabber_received),
1477 MIBSTAT(mac_receive_error),
1478 MIBSTAT(bad_crc_event),
1479 MIBSTAT(collision),
1480 MIBSTAT(late_collision),
1481 MIBSTAT(rx_discard),
1482 MIBSTAT(rx_overrun),
1485 static int
1486 mv643xx_eth_get_link_ksettings_phy(struct mv643xx_eth_private *mp,
1487 struct ethtool_link_ksettings *cmd)
1489 struct net_device *dev = mp->dev;
1491 phy_ethtool_ksettings_get(dev->phydev, cmd);
1494 * The MAC does not support 1000baseT_Half.
1496 linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
1497 cmd->link_modes.supported);
1498 linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
1499 cmd->link_modes.advertising);
1501 return 0;
1504 static int
1505 mv643xx_eth_get_link_ksettings_phyless(struct mv643xx_eth_private *mp,
1506 struct ethtool_link_ksettings *cmd)
1508 u32 port_status;
1509 u32 supported, advertising;
1511 port_status = rdlp(mp, PORT_STATUS);
1513 supported = SUPPORTED_MII;
1514 advertising = ADVERTISED_MII;
1515 switch (port_status & PORT_SPEED_MASK) {
1516 case PORT_SPEED_10:
1517 cmd->base.speed = SPEED_10;
1518 break;
1519 case PORT_SPEED_100:
1520 cmd->base.speed = SPEED_100;
1521 break;
1522 case PORT_SPEED_1000:
1523 cmd->base.speed = SPEED_1000;
1524 break;
1525 default:
1526 cmd->base.speed = -1;
1527 break;
1529 cmd->base.duplex = (port_status & FULL_DUPLEX) ?
1530 DUPLEX_FULL : DUPLEX_HALF;
1531 cmd->base.port = PORT_MII;
1532 cmd->base.phy_address = 0;
1533 cmd->base.autoneg = AUTONEG_DISABLE;
1535 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
1536 supported);
1537 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
1538 advertising);
1540 return 0;
1543 static void
1544 mv643xx_eth_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1546 wol->supported = 0;
1547 wol->wolopts = 0;
1548 if (dev->phydev)
1549 phy_ethtool_get_wol(dev->phydev, wol);
1552 static int
1553 mv643xx_eth_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1555 int err;
1557 if (!dev->phydev)
1558 return -EOPNOTSUPP;
1560 err = phy_ethtool_set_wol(dev->phydev, wol);
1561 /* Given that mv643xx_eth works without the marvell-specific PHY driver,
1562 * this debugging hint is useful to have.
1564 if (err == -EOPNOTSUPP)
1565 netdev_info(dev, "The PHY does not support set_wol, was CONFIG_MARVELL_PHY enabled?\n");
1566 return err;
1569 static int
1570 mv643xx_eth_get_link_ksettings(struct net_device *dev,
1571 struct ethtool_link_ksettings *cmd)
1573 struct mv643xx_eth_private *mp = netdev_priv(dev);
1575 if (dev->phydev)
1576 return mv643xx_eth_get_link_ksettings_phy(mp, cmd);
1577 else
1578 return mv643xx_eth_get_link_ksettings_phyless(mp, cmd);
1581 static int
1582 mv643xx_eth_set_link_ksettings(struct net_device *dev,
1583 const struct ethtool_link_ksettings *cmd)
1585 struct ethtool_link_ksettings c = *cmd;
1586 u32 advertising;
1587 int ret;
1589 if (!dev->phydev)
1590 return -EINVAL;
1593 * The MAC does not support 1000baseT_Half.
1595 ethtool_convert_link_mode_to_legacy_u32(&advertising,
1596 c.link_modes.advertising);
1597 advertising &= ~ADVERTISED_1000baseT_Half;
1598 ethtool_convert_legacy_u32_to_link_mode(c.link_modes.advertising,
1599 advertising);
1601 ret = phy_ethtool_ksettings_set(dev->phydev, &c);
1602 if (!ret)
1603 mv643xx_eth_adjust_link(dev);
1604 return ret;
1607 static void mv643xx_eth_get_drvinfo(struct net_device *dev,
1608 struct ethtool_drvinfo *drvinfo)
1610 strlcpy(drvinfo->driver, mv643xx_eth_driver_name,
1611 sizeof(drvinfo->driver));
1612 strlcpy(drvinfo->version, mv643xx_eth_driver_version,
1613 sizeof(drvinfo->version));
1614 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
1615 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
1618 static int
1619 mv643xx_eth_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
1621 struct mv643xx_eth_private *mp = netdev_priv(dev);
1623 ec->rx_coalesce_usecs = get_rx_coal(mp);
1624 ec->tx_coalesce_usecs = get_tx_coal(mp);
1626 return 0;
1629 static int
1630 mv643xx_eth_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
1632 struct mv643xx_eth_private *mp = netdev_priv(dev);
1634 set_rx_coal(mp, ec->rx_coalesce_usecs);
1635 set_tx_coal(mp, ec->tx_coalesce_usecs);
1637 return 0;
1640 static void
1641 mv643xx_eth_get_ringparam(struct net_device *dev, struct ethtool_ringparam *er)
1643 struct mv643xx_eth_private *mp = netdev_priv(dev);
1645 er->rx_max_pending = 4096;
1646 er->tx_max_pending = 4096;
1648 er->rx_pending = mp->rx_ring_size;
1649 er->tx_pending = mp->tx_ring_size;
1652 static int
1653 mv643xx_eth_set_ringparam(struct net_device *dev, struct ethtool_ringparam *er)
1655 struct mv643xx_eth_private *mp = netdev_priv(dev);
1657 if (er->rx_mini_pending || er->rx_jumbo_pending)
1658 return -EINVAL;
1660 mp->rx_ring_size = er->rx_pending < 4096 ? er->rx_pending : 4096;
1661 mp->tx_ring_size = clamp_t(unsigned int, er->tx_pending,
1662 MV643XX_MAX_SKB_DESCS * 2, 4096);
1663 if (mp->tx_ring_size != er->tx_pending)
1664 netdev_warn(dev, "TX queue size set to %u (requested %u)\n",
1665 mp->tx_ring_size, er->tx_pending);
1667 if (netif_running(dev)) {
1668 mv643xx_eth_stop(dev);
1669 if (mv643xx_eth_open(dev)) {
1670 netdev_err(dev,
1671 "fatal error on re-opening device after ring param change\n");
1672 return -ENOMEM;
1676 return 0;
1680 static int
1681 mv643xx_eth_set_features(struct net_device *dev, netdev_features_t features)
1683 struct mv643xx_eth_private *mp = netdev_priv(dev);
1684 bool rx_csum = features & NETIF_F_RXCSUM;
1686 wrlp(mp, PORT_CONFIG, rx_csum ? 0x02000000 : 0x00000000);
1688 return 0;
1691 static void mv643xx_eth_get_strings(struct net_device *dev,
1692 uint32_t stringset, uint8_t *data)
1694 int i;
1696 if (stringset == ETH_SS_STATS) {
1697 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
1698 memcpy(data + i * ETH_GSTRING_LEN,
1699 mv643xx_eth_stats[i].stat_string,
1700 ETH_GSTRING_LEN);
1705 static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
1706 struct ethtool_stats *stats,
1707 uint64_t *data)
1709 struct mv643xx_eth_private *mp = netdev_priv(dev);
1710 int i;
1712 mv643xx_eth_get_stats(dev);
1713 mib_counters_update(mp);
1715 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
1716 const struct mv643xx_eth_stats *stat;
1717 void *p;
1719 stat = mv643xx_eth_stats + i;
1721 if (stat->netdev_off >= 0)
1722 p = ((void *)mp->dev) + stat->netdev_off;
1723 else
1724 p = ((void *)mp) + stat->mp_off;
1726 data[i] = (stat->sizeof_stat == 8) ?
1727 *(uint64_t *)p : *(uint32_t *)p;
1731 static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset)
1733 if (sset == ETH_SS_STATS)
1734 return ARRAY_SIZE(mv643xx_eth_stats);
1736 return -EOPNOTSUPP;
1739 static const struct ethtool_ops mv643xx_eth_ethtool_ops = {
1740 .supported_coalesce_params = ETHTOOL_COALESCE_USECS,
1741 .get_drvinfo = mv643xx_eth_get_drvinfo,
1742 .nway_reset = phy_ethtool_nway_reset,
1743 .get_link = ethtool_op_get_link,
1744 .get_coalesce = mv643xx_eth_get_coalesce,
1745 .set_coalesce = mv643xx_eth_set_coalesce,
1746 .get_ringparam = mv643xx_eth_get_ringparam,
1747 .set_ringparam = mv643xx_eth_set_ringparam,
1748 .get_strings = mv643xx_eth_get_strings,
1749 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
1750 .get_sset_count = mv643xx_eth_get_sset_count,
1751 .get_ts_info = ethtool_op_get_ts_info,
1752 .get_wol = mv643xx_eth_get_wol,
1753 .set_wol = mv643xx_eth_set_wol,
1754 .get_link_ksettings = mv643xx_eth_get_link_ksettings,
1755 .set_link_ksettings = mv643xx_eth_set_link_ksettings,
1759 /* address handling *********************************************************/
1760 static void uc_addr_get(struct mv643xx_eth_private *mp, unsigned char *addr)
1762 unsigned int mac_h = rdlp(mp, MAC_ADDR_HIGH);
1763 unsigned int mac_l = rdlp(mp, MAC_ADDR_LOW);
1765 addr[0] = (mac_h >> 24) & 0xff;
1766 addr[1] = (mac_h >> 16) & 0xff;
1767 addr[2] = (mac_h >> 8) & 0xff;
1768 addr[3] = mac_h & 0xff;
1769 addr[4] = (mac_l >> 8) & 0xff;
1770 addr[5] = mac_l & 0xff;
1773 static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr)
1775 wrlp(mp, MAC_ADDR_HIGH,
1776 (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3]);
1777 wrlp(mp, MAC_ADDR_LOW, (addr[4] << 8) | addr[5]);
1780 static u32 uc_addr_filter_mask(struct net_device *dev)
1782 struct netdev_hw_addr *ha;
1783 u32 nibbles;
1785 if (dev->flags & IFF_PROMISC)
1786 return 0;
1788 nibbles = 1 << (dev->dev_addr[5] & 0x0f);
1789 netdev_for_each_uc_addr(ha, dev) {
1790 if (memcmp(dev->dev_addr, ha->addr, 5))
1791 return 0;
1792 if ((dev->dev_addr[5] ^ ha->addr[5]) & 0xf0)
1793 return 0;
1795 nibbles |= 1 << (ha->addr[5] & 0x0f);
1798 return nibbles;
1801 static void mv643xx_eth_program_unicast_filter(struct net_device *dev)
1803 struct mv643xx_eth_private *mp = netdev_priv(dev);
1804 u32 port_config;
1805 u32 nibbles;
1806 int i;
1808 uc_addr_set(mp, dev->dev_addr);
1810 port_config = rdlp(mp, PORT_CONFIG) & ~UNICAST_PROMISCUOUS_MODE;
1812 nibbles = uc_addr_filter_mask(dev);
1813 if (!nibbles) {
1814 port_config |= UNICAST_PROMISCUOUS_MODE;
1815 nibbles = 0xffff;
1818 for (i = 0; i < 16; i += 4) {
1819 int off = UNICAST_TABLE(mp->port_num) + i;
1820 u32 v;
1822 v = 0;
1823 if (nibbles & 1)
1824 v |= 0x00000001;
1825 if (nibbles & 2)
1826 v |= 0x00000100;
1827 if (nibbles & 4)
1828 v |= 0x00010000;
1829 if (nibbles & 8)
1830 v |= 0x01000000;
1831 nibbles >>= 4;
1833 wrl(mp, off, v);
1836 wrlp(mp, PORT_CONFIG, port_config);
1839 static int addr_crc(unsigned char *addr)
1841 int crc = 0;
1842 int i;
1844 for (i = 0; i < 6; i++) {
1845 int j;
1847 crc = (crc ^ addr[i]) << 8;
1848 for (j = 7; j >= 0; j--) {
1849 if (crc & (0x100 << j))
1850 crc ^= 0x107 << j;
1854 return crc;
1857 static void mv643xx_eth_program_multicast_filter(struct net_device *dev)
1859 struct mv643xx_eth_private *mp = netdev_priv(dev);
1860 u32 *mc_spec;
1861 u32 *mc_other;
1862 struct netdev_hw_addr *ha;
1863 int i;
1865 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI))
1866 goto promiscuous;
1868 /* Allocate both mc_spec and mc_other tables */
1869 mc_spec = kcalloc(128, sizeof(u32), GFP_ATOMIC);
1870 if (!mc_spec)
1871 goto promiscuous;
1872 mc_other = &mc_spec[64];
1874 netdev_for_each_mc_addr(ha, dev) {
1875 u8 *a = ha->addr;
1876 u32 *table;
1877 u8 entry;
1879 if (memcmp(a, "\x01\x00\x5e\x00\x00", 5) == 0) {
1880 table = mc_spec;
1881 entry = a[5];
1882 } else {
1883 table = mc_other;
1884 entry = addr_crc(a);
1887 table[entry >> 2] |= 1 << (8 * (entry & 3));
1890 for (i = 0; i < 64; i++) {
1891 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i * sizeof(u32),
1892 mc_spec[i]);
1893 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i * sizeof(u32),
1894 mc_other[i]);
1897 kfree(mc_spec);
1898 return;
1900 promiscuous:
1901 for (i = 0; i < 64; i++) {
1902 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i * sizeof(u32),
1903 0x01010101u);
1904 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i * sizeof(u32),
1905 0x01010101u);
1909 static void mv643xx_eth_set_rx_mode(struct net_device *dev)
1911 mv643xx_eth_program_unicast_filter(dev);
1912 mv643xx_eth_program_multicast_filter(dev);
1915 static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
1917 struct sockaddr *sa = addr;
1919 if (!is_valid_ether_addr(sa->sa_data))
1920 return -EADDRNOTAVAIL;
1922 memcpy(dev->dev_addr, sa->sa_data, ETH_ALEN);
1924 netif_addr_lock_bh(dev);
1925 mv643xx_eth_program_unicast_filter(dev);
1926 netif_addr_unlock_bh(dev);
1928 return 0;
1932 /* rx/tx queue initialisation ***********************************************/
1933 static int rxq_init(struct mv643xx_eth_private *mp, int index)
1935 struct rx_queue *rxq = mp->rxq + index;
1936 struct rx_desc *rx_desc;
1937 int size;
1938 int i;
1940 rxq->index = index;
1942 rxq->rx_ring_size = mp->rx_ring_size;
1944 rxq->rx_desc_count = 0;
1945 rxq->rx_curr_desc = 0;
1946 rxq->rx_used_desc = 0;
1948 size = rxq->rx_ring_size * sizeof(struct rx_desc);
1950 if (index == 0 && size <= mp->rx_desc_sram_size) {
1951 rxq->rx_desc_area = ioremap(mp->rx_desc_sram_addr,
1952 mp->rx_desc_sram_size);
1953 rxq->rx_desc_dma = mp->rx_desc_sram_addr;
1954 } else {
1955 rxq->rx_desc_area = dma_alloc_coherent(mp->dev->dev.parent,
1956 size, &rxq->rx_desc_dma,
1957 GFP_KERNEL);
1960 if (rxq->rx_desc_area == NULL) {
1961 netdev_err(mp->dev,
1962 "can't allocate rx ring (%d bytes)\n", size);
1963 goto out;
1965 memset(rxq->rx_desc_area, 0, size);
1967 rxq->rx_desc_area_size = size;
1968 rxq->rx_skb = kcalloc(rxq->rx_ring_size, sizeof(*rxq->rx_skb),
1969 GFP_KERNEL);
1970 if (rxq->rx_skb == NULL)
1971 goto out_free;
1973 rx_desc = rxq->rx_desc_area;
1974 for (i = 0; i < rxq->rx_ring_size; i++) {
1975 int nexti;
1977 nexti = i + 1;
1978 if (nexti == rxq->rx_ring_size)
1979 nexti = 0;
1981 rx_desc[i].next_desc_ptr = rxq->rx_desc_dma +
1982 nexti * sizeof(struct rx_desc);
1985 return 0;
1988 out_free:
1989 if (index == 0 && size <= mp->rx_desc_sram_size)
1990 iounmap(rxq->rx_desc_area);
1991 else
1992 dma_free_coherent(mp->dev->dev.parent, size,
1993 rxq->rx_desc_area,
1994 rxq->rx_desc_dma);
1996 out:
1997 return -ENOMEM;
2000 static void rxq_deinit(struct rx_queue *rxq)
2002 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
2003 int i;
2005 rxq_disable(rxq);
2007 for (i = 0; i < rxq->rx_ring_size; i++) {
2008 if (rxq->rx_skb[i]) {
2009 dev_consume_skb_any(rxq->rx_skb[i]);
2010 rxq->rx_desc_count--;
2014 if (rxq->rx_desc_count) {
2015 netdev_err(mp->dev, "error freeing rx ring -- %d skbs stuck\n",
2016 rxq->rx_desc_count);
2019 if (rxq->index == 0 &&
2020 rxq->rx_desc_area_size <= mp->rx_desc_sram_size)
2021 iounmap(rxq->rx_desc_area);
2022 else
2023 dma_free_coherent(mp->dev->dev.parent, rxq->rx_desc_area_size,
2024 rxq->rx_desc_area, rxq->rx_desc_dma);
2026 kfree(rxq->rx_skb);
2029 static int txq_init(struct mv643xx_eth_private *mp, int index)
2031 struct tx_queue *txq = mp->txq + index;
2032 struct tx_desc *tx_desc;
2033 int size;
2034 int ret;
2035 int i;
2037 txq->index = index;
2039 txq->tx_ring_size = mp->tx_ring_size;
2041 /* A queue must always have room for at least one skb.
2042 * Therefore, stop the queue when the free entries reaches
2043 * the maximum number of descriptors per skb.
2045 txq->tx_stop_threshold = txq->tx_ring_size - MV643XX_MAX_SKB_DESCS;
2046 txq->tx_wake_threshold = txq->tx_stop_threshold / 2;
2048 txq->tx_desc_count = 0;
2049 txq->tx_curr_desc = 0;
2050 txq->tx_used_desc = 0;
2052 size = txq->tx_ring_size * sizeof(struct tx_desc);
2054 if (index == 0 && size <= mp->tx_desc_sram_size) {
2055 txq->tx_desc_area = ioremap(mp->tx_desc_sram_addr,
2056 mp->tx_desc_sram_size);
2057 txq->tx_desc_dma = mp->tx_desc_sram_addr;
2058 } else {
2059 txq->tx_desc_area = dma_alloc_coherent(mp->dev->dev.parent,
2060 size, &txq->tx_desc_dma,
2061 GFP_KERNEL);
2064 if (txq->tx_desc_area == NULL) {
2065 netdev_err(mp->dev,
2066 "can't allocate tx ring (%d bytes)\n", size);
2067 return -ENOMEM;
2069 memset(txq->tx_desc_area, 0, size);
2071 txq->tx_desc_area_size = size;
2073 tx_desc = txq->tx_desc_area;
2074 for (i = 0; i < txq->tx_ring_size; i++) {
2075 struct tx_desc *txd = tx_desc + i;
2076 int nexti;
2078 nexti = i + 1;
2079 if (nexti == txq->tx_ring_size)
2080 nexti = 0;
2082 txd->cmd_sts = 0;
2083 txd->next_desc_ptr = txq->tx_desc_dma +
2084 nexti * sizeof(struct tx_desc);
2087 txq->tx_desc_mapping = kcalloc(txq->tx_ring_size, sizeof(char),
2088 GFP_KERNEL);
2089 if (!txq->tx_desc_mapping) {
2090 ret = -ENOMEM;
2091 goto err_free_desc_area;
2094 /* Allocate DMA buffers for TSO MAC/IP/TCP headers */
2095 txq->tso_hdrs = dma_alloc_coherent(mp->dev->dev.parent,
2096 txq->tx_ring_size * TSO_HEADER_SIZE,
2097 &txq->tso_hdrs_dma, GFP_KERNEL);
2098 if (txq->tso_hdrs == NULL) {
2099 ret = -ENOMEM;
2100 goto err_free_desc_mapping;
2102 skb_queue_head_init(&txq->tx_skb);
2104 return 0;
2106 err_free_desc_mapping:
2107 kfree(txq->tx_desc_mapping);
2108 err_free_desc_area:
2109 if (index == 0 && size <= mp->tx_desc_sram_size)
2110 iounmap(txq->tx_desc_area);
2111 else
2112 dma_free_coherent(mp->dev->dev.parent, txq->tx_desc_area_size,
2113 txq->tx_desc_area, txq->tx_desc_dma);
2114 return ret;
2117 static void txq_deinit(struct tx_queue *txq)
2119 struct mv643xx_eth_private *mp = txq_to_mp(txq);
2121 txq_disable(txq);
2122 txq_reclaim(txq, txq->tx_ring_size, 1);
2124 BUG_ON(txq->tx_used_desc != txq->tx_curr_desc);
2126 if (txq->index == 0 &&
2127 txq->tx_desc_area_size <= mp->tx_desc_sram_size)
2128 iounmap(txq->tx_desc_area);
2129 else
2130 dma_free_coherent(mp->dev->dev.parent, txq->tx_desc_area_size,
2131 txq->tx_desc_area, txq->tx_desc_dma);
2132 kfree(txq->tx_desc_mapping);
2134 if (txq->tso_hdrs)
2135 dma_free_coherent(mp->dev->dev.parent,
2136 txq->tx_ring_size * TSO_HEADER_SIZE,
2137 txq->tso_hdrs, txq->tso_hdrs_dma);
2141 /* netdev ops and related ***************************************************/
2142 static int mv643xx_eth_collect_events(struct mv643xx_eth_private *mp)
2144 u32 int_cause;
2145 u32 int_cause_ext;
2147 int_cause = rdlp(mp, INT_CAUSE) & mp->int_mask;
2148 if (int_cause == 0)
2149 return 0;
2151 int_cause_ext = 0;
2152 if (int_cause & INT_EXT) {
2153 int_cause &= ~INT_EXT;
2154 int_cause_ext = rdlp(mp, INT_CAUSE_EXT);
2157 if (int_cause) {
2158 wrlp(mp, INT_CAUSE, ~int_cause);
2159 mp->work_tx_end |= ((int_cause & INT_TX_END) >> 19) &
2160 ~(rdlp(mp, TXQ_COMMAND) & 0xff);
2161 mp->work_rx |= (int_cause & INT_RX) >> 2;
2164 int_cause_ext &= INT_EXT_LINK_PHY | INT_EXT_TX;
2165 if (int_cause_ext) {
2166 wrlp(mp, INT_CAUSE_EXT, ~int_cause_ext);
2167 if (int_cause_ext & INT_EXT_LINK_PHY)
2168 mp->work_link = 1;
2169 mp->work_tx |= int_cause_ext & INT_EXT_TX;
2172 return 1;
2175 static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
2177 struct net_device *dev = (struct net_device *)dev_id;
2178 struct mv643xx_eth_private *mp = netdev_priv(dev);
2180 if (unlikely(!mv643xx_eth_collect_events(mp)))
2181 return IRQ_NONE;
2183 wrlp(mp, INT_MASK, 0);
2184 napi_schedule(&mp->napi);
2186 return IRQ_HANDLED;
2189 static void handle_link_event(struct mv643xx_eth_private *mp)
2191 struct net_device *dev = mp->dev;
2192 u32 port_status;
2193 int speed;
2194 int duplex;
2195 int fc;
2197 port_status = rdlp(mp, PORT_STATUS);
2198 if (!(port_status & LINK_UP)) {
2199 if (netif_carrier_ok(dev)) {
2200 int i;
2202 netdev_info(dev, "link down\n");
2204 netif_carrier_off(dev);
2206 for (i = 0; i < mp->txq_count; i++) {
2207 struct tx_queue *txq = mp->txq + i;
2209 txq_reclaim(txq, txq->tx_ring_size, 1);
2210 txq_reset_hw_ptr(txq);
2213 return;
2216 switch (port_status & PORT_SPEED_MASK) {
2217 case PORT_SPEED_10:
2218 speed = 10;
2219 break;
2220 case PORT_SPEED_100:
2221 speed = 100;
2222 break;
2223 case PORT_SPEED_1000:
2224 speed = 1000;
2225 break;
2226 default:
2227 speed = -1;
2228 break;
2230 duplex = (port_status & FULL_DUPLEX) ? 1 : 0;
2231 fc = (port_status & FLOW_CONTROL_ENABLED) ? 1 : 0;
2233 netdev_info(dev, "link up, %d Mb/s, %s duplex, flow control %sabled\n",
2234 speed, duplex ? "full" : "half", fc ? "en" : "dis");
2236 if (!netif_carrier_ok(dev))
2237 netif_carrier_on(dev);
2240 static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
2242 struct mv643xx_eth_private *mp;
2243 int work_done;
2245 mp = container_of(napi, struct mv643xx_eth_private, napi);
2247 if (unlikely(mp->oom)) {
2248 mp->oom = 0;
2249 del_timer(&mp->rx_oom);
2252 work_done = 0;
2253 while (work_done < budget) {
2254 u8 queue_mask;
2255 int queue;
2256 int work_tbd;
2258 if (mp->work_link) {
2259 mp->work_link = 0;
2260 handle_link_event(mp);
2261 work_done++;
2262 continue;
2265 queue_mask = mp->work_tx | mp->work_tx_end | mp->work_rx;
2266 if (likely(!mp->oom))
2267 queue_mask |= mp->work_rx_refill;
2269 if (!queue_mask) {
2270 if (mv643xx_eth_collect_events(mp))
2271 continue;
2272 break;
2275 queue = fls(queue_mask) - 1;
2276 queue_mask = 1 << queue;
2278 work_tbd = budget - work_done;
2279 if (work_tbd > 16)
2280 work_tbd = 16;
2282 if (mp->work_tx_end & queue_mask) {
2283 txq_kick(mp->txq + queue);
2284 } else if (mp->work_tx & queue_mask) {
2285 work_done += txq_reclaim(mp->txq + queue, work_tbd, 0);
2286 txq_maybe_wake(mp->txq + queue);
2287 } else if (mp->work_rx & queue_mask) {
2288 work_done += rxq_process(mp->rxq + queue, work_tbd);
2289 } else if (!mp->oom && (mp->work_rx_refill & queue_mask)) {
2290 work_done += rxq_refill(mp->rxq + queue, work_tbd);
2291 } else {
2292 BUG();
2296 if (work_done < budget) {
2297 if (mp->oom)
2298 mod_timer(&mp->rx_oom, jiffies + (HZ / 10));
2299 napi_complete_done(napi, work_done);
2300 wrlp(mp, INT_MASK, mp->int_mask);
2303 return work_done;
2306 static inline void oom_timer_wrapper(struct timer_list *t)
2308 struct mv643xx_eth_private *mp = from_timer(mp, t, rx_oom);
2310 napi_schedule(&mp->napi);
2313 static void port_start(struct mv643xx_eth_private *mp)
2315 struct net_device *dev = mp->dev;
2316 u32 pscr;
2317 int i;
2320 * Perform PHY reset, if there is a PHY.
2322 if (dev->phydev) {
2323 struct ethtool_link_ksettings cmd;
2325 mv643xx_eth_get_link_ksettings(dev, &cmd);
2326 phy_init_hw(dev->phydev);
2327 mv643xx_eth_set_link_ksettings(
2328 dev, (const struct ethtool_link_ksettings *)&cmd);
2329 phy_start(dev->phydev);
2333 * Configure basic link parameters.
2335 pscr = rdlp(mp, PORT_SERIAL_CONTROL);
2337 pscr |= SERIAL_PORT_ENABLE;
2338 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
2340 pscr |= DO_NOT_FORCE_LINK_FAIL;
2341 if (!dev->phydev)
2342 pscr |= FORCE_LINK_PASS;
2343 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
2346 * Configure TX path and queues.
2348 tx_set_rate(mp, 1000000000, 16777216);
2349 for (i = 0; i < mp->txq_count; i++) {
2350 struct tx_queue *txq = mp->txq + i;
2352 txq_reset_hw_ptr(txq);
2353 txq_set_rate(txq, 1000000000, 16777216);
2354 txq_set_fixed_prio_mode(txq);
2358 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
2359 * frames to RX queue #0, and include the pseudo-header when
2360 * calculating receive checksums.
2362 mv643xx_eth_set_features(mp->dev, mp->dev->features);
2365 * Treat BPDUs as normal multicasts, and disable partition mode.
2367 wrlp(mp, PORT_CONFIG_EXT, 0x00000000);
2370 * Add configured unicast addresses to address filter table.
2372 mv643xx_eth_program_unicast_filter(mp->dev);
2375 * Enable the receive queues.
2377 for (i = 0; i < mp->rxq_count; i++) {
2378 struct rx_queue *rxq = mp->rxq + i;
2379 u32 addr;
2381 addr = (u32)rxq->rx_desc_dma;
2382 addr += rxq->rx_curr_desc * sizeof(struct rx_desc);
2383 wrlp(mp, RXQ_CURRENT_DESC_PTR(i), addr);
2385 rxq_enable(rxq);
2389 static void mv643xx_eth_recalc_skb_size(struct mv643xx_eth_private *mp)
2391 int skb_size;
2394 * Reserve 2+14 bytes for an ethernet header (the hardware
2395 * automatically prepends 2 bytes of dummy data to each
2396 * received packet), 16 bytes for up to four VLAN tags, and
2397 * 4 bytes for the trailing FCS -- 36 bytes total.
2399 skb_size = mp->dev->mtu + 36;
2402 * Make sure that the skb size is a multiple of 8 bytes, as
2403 * the lower three bits of the receive descriptor's buffer
2404 * size field are ignored by the hardware.
2406 mp->skb_size = (skb_size + 7) & ~7;
2409 * If NET_SKB_PAD is smaller than a cache line,
2410 * netdev_alloc_skb() will cause skb->data to be misaligned
2411 * to a cache line boundary. If this is the case, include
2412 * some extra space to allow re-aligning the data area.
2414 mp->skb_size += SKB_DMA_REALIGN;
2417 static int mv643xx_eth_open(struct net_device *dev)
2419 struct mv643xx_eth_private *mp = netdev_priv(dev);
2420 int err;
2421 int i;
2423 wrlp(mp, INT_CAUSE, 0);
2424 wrlp(mp, INT_CAUSE_EXT, 0);
2425 rdlp(mp, INT_CAUSE_EXT);
2427 err = request_irq(dev->irq, mv643xx_eth_irq,
2428 IRQF_SHARED, dev->name, dev);
2429 if (err) {
2430 netdev_err(dev, "can't assign irq\n");
2431 return -EAGAIN;
2434 mv643xx_eth_recalc_skb_size(mp);
2436 napi_enable(&mp->napi);
2438 mp->int_mask = INT_EXT;
2440 for (i = 0; i < mp->rxq_count; i++) {
2441 err = rxq_init(mp, i);
2442 if (err) {
2443 while (--i >= 0)
2444 rxq_deinit(mp->rxq + i);
2445 goto out;
2448 rxq_refill(mp->rxq + i, INT_MAX);
2449 mp->int_mask |= INT_RX_0 << i;
2452 if (mp->oom) {
2453 mp->rx_oom.expires = jiffies + (HZ / 10);
2454 add_timer(&mp->rx_oom);
2457 for (i = 0; i < mp->txq_count; i++) {
2458 err = txq_init(mp, i);
2459 if (err) {
2460 while (--i >= 0)
2461 txq_deinit(mp->txq + i);
2462 goto out_free;
2464 mp->int_mask |= INT_TX_END_0 << i;
2467 add_timer(&mp->mib_counters_timer);
2468 port_start(mp);
2470 wrlp(mp, INT_MASK_EXT, INT_EXT_LINK_PHY | INT_EXT_TX);
2471 wrlp(mp, INT_MASK, mp->int_mask);
2473 return 0;
2476 out_free:
2477 for (i = 0; i < mp->rxq_count; i++)
2478 rxq_deinit(mp->rxq + i);
2479 out:
2480 free_irq(dev->irq, dev);
2482 return err;
2485 static void port_reset(struct mv643xx_eth_private *mp)
2487 unsigned int data;
2488 int i;
2490 for (i = 0; i < mp->rxq_count; i++)
2491 rxq_disable(mp->rxq + i);
2492 for (i = 0; i < mp->txq_count; i++)
2493 txq_disable(mp->txq + i);
2495 while (1) {
2496 u32 ps = rdlp(mp, PORT_STATUS);
2498 if ((ps & (TX_IN_PROGRESS | TX_FIFO_EMPTY)) == TX_FIFO_EMPTY)
2499 break;
2500 udelay(10);
2503 /* Reset the Enable bit in the Configuration Register */
2504 data = rdlp(mp, PORT_SERIAL_CONTROL);
2505 data &= ~(SERIAL_PORT_ENABLE |
2506 DO_NOT_FORCE_LINK_FAIL |
2507 FORCE_LINK_PASS);
2508 wrlp(mp, PORT_SERIAL_CONTROL, data);
2511 static int mv643xx_eth_stop(struct net_device *dev)
2513 struct mv643xx_eth_private *mp = netdev_priv(dev);
2514 int i;
2516 wrlp(mp, INT_MASK_EXT, 0x00000000);
2517 wrlp(mp, INT_MASK, 0x00000000);
2518 rdlp(mp, INT_MASK);
2520 napi_disable(&mp->napi);
2522 del_timer_sync(&mp->rx_oom);
2524 netif_carrier_off(dev);
2525 if (dev->phydev)
2526 phy_stop(dev->phydev);
2527 free_irq(dev->irq, dev);
2529 port_reset(mp);
2530 mv643xx_eth_get_stats(dev);
2531 mib_counters_update(mp);
2532 del_timer_sync(&mp->mib_counters_timer);
2534 for (i = 0; i < mp->rxq_count; i++)
2535 rxq_deinit(mp->rxq + i);
2536 for (i = 0; i < mp->txq_count; i++)
2537 txq_deinit(mp->txq + i);
2539 return 0;
2542 static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2544 int ret;
2546 if (!dev->phydev)
2547 return -ENOTSUPP;
2549 ret = phy_mii_ioctl(dev->phydev, ifr, cmd);
2550 if (!ret)
2551 mv643xx_eth_adjust_link(dev);
2552 return ret;
2555 static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
2557 struct mv643xx_eth_private *mp = netdev_priv(dev);
2559 dev->mtu = new_mtu;
2560 mv643xx_eth_recalc_skb_size(mp);
2561 tx_set_rate(mp, 1000000000, 16777216);
2563 if (!netif_running(dev))
2564 return 0;
2567 * Stop and then re-open the interface. This will allocate RX
2568 * skbs of the new MTU.
2569 * There is a possible danger that the open will not succeed,
2570 * due to memory being full.
2572 mv643xx_eth_stop(dev);
2573 if (mv643xx_eth_open(dev)) {
2574 netdev_err(dev,
2575 "fatal error on re-opening device after MTU change\n");
2578 return 0;
2581 static void tx_timeout_task(struct work_struct *ugly)
2583 struct mv643xx_eth_private *mp;
2585 mp = container_of(ugly, struct mv643xx_eth_private, tx_timeout_task);
2586 if (netif_running(mp->dev)) {
2587 netif_tx_stop_all_queues(mp->dev);
2588 port_reset(mp);
2589 port_start(mp);
2590 netif_tx_wake_all_queues(mp->dev);
2594 static void mv643xx_eth_tx_timeout(struct net_device *dev, unsigned int txqueue)
2596 struct mv643xx_eth_private *mp = netdev_priv(dev);
2598 netdev_info(dev, "tx timeout\n");
2600 schedule_work(&mp->tx_timeout_task);
2603 #ifdef CONFIG_NET_POLL_CONTROLLER
2604 static void mv643xx_eth_netpoll(struct net_device *dev)
2606 struct mv643xx_eth_private *mp = netdev_priv(dev);
2608 wrlp(mp, INT_MASK, 0x00000000);
2609 rdlp(mp, INT_MASK);
2611 mv643xx_eth_irq(dev->irq, dev);
2613 wrlp(mp, INT_MASK, mp->int_mask);
2615 #endif
2618 /* platform glue ************************************************************/
2619 static void
2620 mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private *msp,
2621 const struct mbus_dram_target_info *dram)
2623 void __iomem *base = msp->base;
2624 u32 win_enable;
2625 u32 win_protect;
2626 int i;
2628 for (i = 0; i < 6; i++) {
2629 writel(0, base + WINDOW_BASE(i));
2630 writel(0, base + WINDOW_SIZE(i));
2631 if (i < 4)
2632 writel(0, base + WINDOW_REMAP_HIGH(i));
2635 win_enable = 0x3f;
2636 win_protect = 0;
2638 for (i = 0; i < dram->num_cs; i++) {
2639 const struct mbus_dram_window *cs = dram->cs + i;
2641 writel((cs->base & 0xffff0000) |
2642 (cs->mbus_attr << 8) |
2643 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
2644 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
2646 win_enable &= ~(1 << i);
2647 win_protect |= 3 << (2 * i);
2650 writel(win_enable, base + WINDOW_BAR_ENABLE);
2651 msp->win_protect = win_protect;
2654 static void infer_hw_params(struct mv643xx_eth_shared_private *msp)
2657 * Check whether we have a 14-bit coal limit field in bits
2658 * [21:8], or a 16-bit coal limit in bits [25,21:7] of the
2659 * SDMA config register.
2661 writel(0x02000000, msp->base + 0x0400 + SDMA_CONFIG);
2662 if (readl(msp->base + 0x0400 + SDMA_CONFIG) & 0x02000000)
2663 msp->extended_rx_coal_limit = 1;
2664 else
2665 msp->extended_rx_coal_limit = 0;
2668 * Check whether the MAC supports TX rate control, and if
2669 * yes, whether its associated registers are in the old or
2670 * the new place.
2672 writel(1, msp->base + 0x0400 + TX_BW_MTU_MOVED);
2673 if (readl(msp->base + 0x0400 + TX_BW_MTU_MOVED) & 1) {
2674 msp->tx_bw_control = TX_BW_CONTROL_NEW_LAYOUT;
2675 } else {
2676 writel(7, msp->base + 0x0400 + TX_BW_RATE);
2677 if (readl(msp->base + 0x0400 + TX_BW_RATE) & 7)
2678 msp->tx_bw_control = TX_BW_CONTROL_OLD_LAYOUT;
2679 else
2680 msp->tx_bw_control = TX_BW_CONTROL_ABSENT;
2684 #if defined(CONFIG_OF)
2685 static const struct of_device_id mv643xx_eth_shared_ids[] = {
2686 { .compatible = "marvell,orion-eth", },
2687 { .compatible = "marvell,kirkwood-eth", },
2690 MODULE_DEVICE_TABLE(of, mv643xx_eth_shared_ids);
2691 #endif
2693 #if defined(CONFIG_OF_IRQ) && !defined(CONFIG_MV64X60)
2694 #define mv643xx_eth_property(_np, _name, _v) \
2695 do { \
2696 u32 tmp; \
2697 if (!of_property_read_u32(_np, "marvell," _name, &tmp)) \
2698 _v = tmp; \
2699 } while (0)
2701 static struct platform_device *port_platdev[3];
2703 static int mv643xx_eth_shared_of_add_port(struct platform_device *pdev,
2704 struct device_node *pnp)
2706 struct platform_device *ppdev;
2707 struct mv643xx_eth_platform_data ppd;
2708 struct resource res;
2709 const char *mac_addr;
2710 int ret;
2711 int dev_num = 0;
2713 memset(&ppd, 0, sizeof(ppd));
2714 ppd.shared = pdev;
2716 memset(&res, 0, sizeof(res));
2717 if (of_irq_to_resource(pnp, 0, &res) <= 0) {
2718 dev_err(&pdev->dev, "missing interrupt on %pOFn\n", pnp);
2719 return -EINVAL;
2722 if (of_property_read_u32(pnp, "reg", &ppd.port_number)) {
2723 dev_err(&pdev->dev, "missing reg property on %pOFn\n", pnp);
2724 return -EINVAL;
2727 if (ppd.port_number >= 3) {
2728 dev_err(&pdev->dev, "invalid reg property on %pOFn\n", pnp);
2729 return -EINVAL;
2732 while (dev_num < 3 && port_platdev[dev_num])
2733 dev_num++;
2735 if (dev_num == 3) {
2736 dev_err(&pdev->dev, "too many ports registered\n");
2737 return -EINVAL;
2740 mac_addr = of_get_mac_address(pnp);
2741 if (!IS_ERR(mac_addr))
2742 ether_addr_copy(ppd.mac_addr, mac_addr);
2744 mv643xx_eth_property(pnp, "tx-queue-size", ppd.tx_queue_size);
2745 mv643xx_eth_property(pnp, "tx-sram-addr", ppd.tx_sram_addr);
2746 mv643xx_eth_property(pnp, "tx-sram-size", ppd.tx_sram_size);
2747 mv643xx_eth_property(pnp, "rx-queue-size", ppd.rx_queue_size);
2748 mv643xx_eth_property(pnp, "rx-sram-addr", ppd.rx_sram_addr);
2749 mv643xx_eth_property(pnp, "rx-sram-size", ppd.rx_sram_size);
2751 ppd.phy_node = of_parse_phandle(pnp, "phy-handle", 0);
2752 if (!ppd.phy_node) {
2753 ppd.phy_addr = MV643XX_ETH_PHY_NONE;
2754 of_property_read_u32(pnp, "speed", &ppd.speed);
2755 of_property_read_u32(pnp, "duplex", &ppd.duplex);
2758 ppdev = platform_device_alloc(MV643XX_ETH_NAME, dev_num);
2759 if (!ppdev)
2760 return -ENOMEM;
2761 ppdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
2762 ppdev->dev.of_node = pnp;
2764 ret = platform_device_add_resources(ppdev, &res, 1);
2765 if (ret)
2766 goto port_err;
2768 ret = platform_device_add_data(ppdev, &ppd, sizeof(ppd));
2769 if (ret)
2770 goto port_err;
2772 ret = platform_device_add(ppdev);
2773 if (ret)
2774 goto port_err;
2776 port_platdev[dev_num] = ppdev;
2778 return 0;
2780 port_err:
2781 platform_device_put(ppdev);
2782 return ret;
2785 static int mv643xx_eth_shared_of_probe(struct platform_device *pdev)
2787 struct mv643xx_eth_shared_platform_data *pd;
2788 struct device_node *pnp, *np = pdev->dev.of_node;
2789 int ret;
2791 /* bail out if not registered from DT */
2792 if (!np)
2793 return 0;
2795 pd = devm_kzalloc(&pdev->dev, sizeof(*pd), GFP_KERNEL);
2796 if (!pd)
2797 return -ENOMEM;
2798 pdev->dev.platform_data = pd;
2800 mv643xx_eth_property(np, "tx-checksum-limit", pd->tx_csum_limit);
2802 for_each_available_child_of_node(np, pnp) {
2803 ret = mv643xx_eth_shared_of_add_port(pdev, pnp);
2804 if (ret) {
2805 of_node_put(pnp);
2806 return ret;
2809 return 0;
2812 static void mv643xx_eth_shared_of_remove(void)
2814 int n;
2816 for (n = 0; n < 3; n++) {
2817 platform_device_del(port_platdev[n]);
2818 port_platdev[n] = NULL;
2821 #else
2822 static inline int mv643xx_eth_shared_of_probe(struct platform_device *pdev)
2824 return 0;
2827 static inline void mv643xx_eth_shared_of_remove(void)
2830 #endif
2832 static int mv643xx_eth_shared_probe(struct platform_device *pdev)
2834 static int mv643xx_eth_version_printed;
2835 struct mv643xx_eth_shared_platform_data *pd;
2836 struct mv643xx_eth_shared_private *msp;
2837 const struct mbus_dram_target_info *dram;
2838 struct resource *res;
2839 int ret;
2841 if (!mv643xx_eth_version_printed++)
2842 pr_notice("MV-643xx 10/100/1000 ethernet driver version %s\n",
2843 mv643xx_eth_driver_version);
2845 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2846 if (res == NULL)
2847 return -EINVAL;
2849 msp = devm_kzalloc(&pdev->dev, sizeof(*msp), GFP_KERNEL);
2850 if (msp == NULL)
2851 return -ENOMEM;
2852 platform_set_drvdata(pdev, msp);
2854 msp->base = devm_ioremap(&pdev->dev, res->start, resource_size(res));
2855 if (msp->base == NULL)
2856 return -ENOMEM;
2858 msp->clk = devm_clk_get(&pdev->dev, NULL);
2859 if (!IS_ERR(msp->clk))
2860 clk_prepare_enable(msp->clk);
2863 * (Re-)program MBUS remapping windows if we are asked to.
2865 dram = mv_mbus_dram_info();
2866 if (dram)
2867 mv643xx_eth_conf_mbus_windows(msp, dram);
2869 ret = mv643xx_eth_shared_of_probe(pdev);
2870 if (ret)
2871 goto err_put_clk;
2872 pd = dev_get_platdata(&pdev->dev);
2874 msp->tx_csum_limit = (pd != NULL && pd->tx_csum_limit) ?
2875 pd->tx_csum_limit : 9 * 1024;
2876 infer_hw_params(msp);
2878 return 0;
2880 err_put_clk:
2881 if (!IS_ERR(msp->clk))
2882 clk_disable_unprepare(msp->clk);
2883 return ret;
2886 static int mv643xx_eth_shared_remove(struct platform_device *pdev)
2888 struct mv643xx_eth_shared_private *msp = platform_get_drvdata(pdev);
2890 mv643xx_eth_shared_of_remove();
2891 if (!IS_ERR(msp->clk))
2892 clk_disable_unprepare(msp->clk);
2893 return 0;
2896 static struct platform_driver mv643xx_eth_shared_driver = {
2897 .probe = mv643xx_eth_shared_probe,
2898 .remove = mv643xx_eth_shared_remove,
2899 .driver = {
2900 .name = MV643XX_ETH_SHARED_NAME,
2901 .of_match_table = of_match_ptr(mv643xx_eth_shared_ids),
2905 static void phy_addr_set(struct mv643xx_eth_private *mp, int phy_addr)
2907 int addr_shift = 5 * mp->port_num;
2908 u32 data;
2910 data = rdl(mp, PHY_ADDR);
2911 data &= ~(0x1f << addr_shift);
2912 data |= (phy_addr & 0x1f) << addr_shift;
2913 wrl(mp, PHY_ADDR, data);
2916 static int phy_addr_get(struct mv643xx_eth_private *mp)
2918 unsigned int data;
2920 data = rdl(mp, PHY_ADDR);
2922 return (data >> (5 * mp->port_num)) & 0x1f;
2925 static void set_params(struct mv643xx_eth_private *mp,
2926 struct mv643xx_eth_platform_data *pd)
2928 struct net_device *dev = mp->dev;
2929 unsigned int tx_ring_size;
2931 if (is_valid_ether_addr(pd->mac_addr))
2932 memcpy(dev->dev_addr, pd->mac_addr, ETH_ALEN);
2933 else
2934 uc_addr_get(mp, dev->dev_addr);
2936 mp->rx_ring_size = DEFAULT_RX_QUEUE_SIZE;
2937 if (pd->rx_queue_size)
2938 mp->rx_ring_size = pd->rx_queue_size;
2939 mp->rx_desc_sram_addr = pd->rx_sram_addr;
2940 mp->rx_desc_sram_size = pd->rx_sram_size;
2942 mp->rxq_count = pd->rx_queue_count ? : 1;
2944 tx_ring_size = DEFAULT_TX_QUEUE_SIZE;
2945 if (pd->tx_queue_size)
2946 tx_ring_size = pd->tx_queue_size;
2948 mp->tx_ring_size = clamp_t(unsigned int, tx_ring_size,
2949 MV643XX_MAX_SKB_DESCS * 2, 4096);
2950 if (mp->tx_ring_size != tx_ring_size)
2951 netdev_warn(dev, "TX queue size set to %u (requested %u)\n",
2952 mp->tx_ring_size, tx_ring_size);
2954 mp->tx_desc_sram_addr = pd->tx_sram_addr;
2955 mp->tx_desc_sram_size = pd->tx_sram_size;
2957 mp->txq_count = pd->tx_queue_count ? : 1;
2960 static int get_phy_mode(struct mv643xx_eth_private *mp)
2962 struct device *dev = mp->dev->dev.parent;
2963 phy_interface_t iface;
2964 int err;
2966 if (dev->of_node)
2967 err = of_get_phy_mode(dev->of_node, &iface);
2969 /* Historical default if unspecified. We could also read/write
2970 * the interface state in the PSC1
2972 if (!dev->of_node || err)
2973 iface = PHY_INTERFACE_MODE_GMII;
2974 return iface;
2977 static struct phy_device *phy_scan(struct mv643xx_eth_private *mp,
2978 int phy_addr)
2980 struct phy_device *phydev;
2981 int start;
2982 int num;
2983 int i;
2984 char phy_id[MII_BUS_ID_SIZE + 3];
2986 if (phy_addr == MV643XX_ETH_PHY_ADDR_DEFAULT) {
2987 start = phy_addr_get(mp) & 0x1f;
2988 num = 32;
2989 } else {
2990 start = phy_addr & 0x1f;
2991 num = 1;
2994 /* Attempt to connect to the PHY using orion-mdio */
2995 phydev = ERR_PTR(-ENODEV);
2996 for (i = 0; i < num; i++) {
2997 int addr = (start + i) & 0x1f;
2999 snprintf(phy_id, sizeof(phy_id), PHY_ID_FMT,
3000 "orion-mdio-mii", addr);
3002 phydev = phy_connect(mp->dev, phy_id, mv643xx_eth_adjust_link,
3003 get_phy_mode(mp));
3004 if (!IS_ERR(phydev)) {
3005 phy_addr_set(mp, addr);
3006 break;
3010 return phydev;
3013 static void phy_init(struct mv643xx_eth_private *mp, int speed, int duplex)
3015 struct net_device *dev = mp->dev;
3016 struct phy_device *phy = dev->phydev;
3018 if (speed == 0) {
3019 phy->autoneg = AUTONEG_ENABLE;
3020 phy->speed = 0;
3021 phy->duplex = 0;
3022 linkmode_copy(phy->advertising, phy->supported);
3023 linkmode_set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
3024 phy->advertising);
3025 } else {
3026 phy->autoneg = AUTONEG_DISABLE;
3027 linkmode_zero(phy->advertising);
3028 phy->speed = speed;
3029 phy->duplex = duplex;
3031 phy_start_aneg(phy);
3034 static void init_pscr(struct mv643xx_eth_private *mp, int speed, int duplex)
3036 struct net_device *dev = mp->dev;
3037 u32 pscr;
3039 pscr = rdlp(mp, PORT_SERIAL_CONTROL);
3040 if (pscr & SERIAL_PORT_ENABLE) {
3041 pscr &= ~SERIAL_PORT_ENABLE;
3042 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
3045 pscr = MAX_RX_PACKET_9700BYTE | SERIAL_PORT_CONTROL_RESERVED;
3046 if (!dev->phydev) {
3047 pscr |= DISABLE_AUTO_NEG_SPEED_GMII;
3048 if (speed == SPEED_1000)
3049 pscr |= SET_GMII_SPEED_TO_1000;
3050 else if (speed == SPEED_100)
3051 pscr |= SET_MII_SPEED_TO_100;
3053 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL;
3055 pscr |= DISABLE_AUTO_NEG_FOR_DUPLEX;
3056 if (duplex == DUPLEX_FULL)
3057 pscr |= SET_FULL_DUPLEX_MODE;
3060 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
3063 static const struct net_device_ops mv643xx_eth_netdev_ops = {
3064 .ndo_open = mv643xx_eth_open,
3065 .ndo_stop = mv643xx_eth_stop,
3066 .ndo_start_xmit = mv643xx_eth_xmit,
3067 .ndo_set_rx_mode = mv643xx_eth_set_rx_mode,
3068 .ndo_set_mac_address = mv643xx_eth_set_mac_address,
3069 .ndo_validate_addr = eth_validate_addr,
3070 .ndo_do_ioctl = mv643xx_eth_ioctl,
3071 .ndo_change_mtu = mv643xx_eth_change_mtu,
3072 .ndo_set_features = mv643xx_eth_set_features,
3073 .ndo_tx_timeout = mv643xx_eth_tx_timeout,
3074 .ndo_get_stats = mv643xx_eth_get_stats,
3075 #ifdef CONFIG_NET_POLL_CONTROLLER
3076 .ndo_poll_controller = mv643xx_eth_netpoll,
3077 #endif
3080 static int mv643xx_eth_probe(struct platform_device *pdev)
3082 struct mv643xx_eth_platform_data *pd;
3083 struct mv643xx_eth_private *mp;
3084 struct net_device *dev;
3085 struct phy_device *phydev = NULL;
3086 struct resource *res;
3087 int err;
3089 pd = dev_get_platdata(&pdev->dev);
3090 if (pd == NULL) {
3091 dev_err(&pdev->dev, "no mv643xx_eth_platform_data\n");
3092 return -ENODEV;
3095 if (pd->shared == NULL) {
3096 dev_err(&pdev->dev, "no mv643xx_eth_platform_data->shared\n");
3097 return -ENODEV;
3100 dev = alloc_etherdev_mq(sizeof(struct mv643xx_eth_private), 8);
3101 if (!dev)
3102 return -ENOMEM;
3104 SET_NETDEV_DEV(dev, &pdev->dev);
3105 mp = netdev_priv(dev);
3106 platform_set_drvdata(pdev, mp);
3108 mp->shared = platform_get_drvdata(pd->shared);
3109 mp->base = mp->shared->base + 0x0400 + (pd->port_number << 10);
3110 mp->port_num = pd->port_number;
3112 mp->dev = dev;
3114 /* Kirkwood resets some registers on gated clocks. Especially
3115 * CLK125_BYPASS_EN must be cleared but is not available on
3116 * all other SoCs/System Controllers using this driver.
3118 if (of_device_is_compatible(pdev->dev.of_node,
3119 "marvell,kirkwood-eth-port"))
3120 wrlp(mp, PORT_SERIAL_CONTROL1,
3121 rdlp(mp, PORT_SERIAL_CONTROL1) & ~CLK125_BYPASS_EN);
3124 * Start with a default rate, and if there is a clock, allow
3125 * it to override the default.
3127 mp->t_clk = 133000000;
3128 mp->clk = devm_clk_get(&pdev->dev, NULL);
3129 if (!IS_ERR(mp->clk)) {
3130 clk_prepare_enable(mp->clk);
3131 mp->t_clk = clk_get_rate(mp->clk);
3132 } else if (!IS_ERR(mp->shared->clk)) {
3133 mp->t_clk = clk_get_rate(mp->shared->clk);
3136 set_params(mp, pd);
3137 netif_set_real_num_tx_queues(dev, mp->txq_count);
3138 netif_set_real_num_rx_queues(dev, mp->rxq_count);
3140 err = 0;
3141 if (pd->phy_node) {
3142 phydev = of_phy_connect(mp->dev, pd->phy_node,
3143 mv643xx_eth_adjust_link, 0,
3144 get_phy_mode(mp));
3145 if (!phydev)
3146 err = -ENODEV;
3147 else
3148 phy_addr_set(mp, phydev->mdio.addr);
3149 } else if (pd->phy_addr != MV643XX_ETH_PHY_NONE) {
3150 phydev = phy_scan(mp, pd->phy_addr);
3152 if (IS_ERR(phydev))
3153 err = PTR_ERR(phydev);
3154 else
3155 phy_init(mp, pd->speed, pd->duplex);
3157 if (err == -ENODEV) {
3158 err = -EPROBE_DEFER;
3159 goto out;
3161 if (err)
3162 goto out;
3164 dev->ethtool_ops = &mv643xx_eth_ethtool_ops;
3166 init_pscr(mp, pd->speed, pd->duplex);
3169 mib_counters_clear(mp);
3171 timer_setup(&mp->mib_counters_timer, mib_counters_timer_wrapper, 0);
3172 mp->mib_counters_timer.expires = jiffies + 30 * HZ;
3174 spin_lock_init(&mp->mib_counters_lock);
3176 INIT_WORK(&mp->tx_timeout_task, tx_timeout_task);
3178 netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, NAPI_POLL_WEIGHT);
3180 timer_setup(&mp->rx_oom, oom_timer_wrapper, 0);
3183 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
3184 BUG_ON(!res);
3185 dev->irq = res->start;
3187 dev->netdev_ops = &mv643xx_eth_netdev_ops;
3189 dev->watchdog_timeo = 2 * HZ;
3190 dev->base_addr = 0;
3192 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
3193 dev->vlan_features = dev->features;
3195 dev->features |= NETIF_F_RXCSUM;
3196 dev->hw_features = dev->features;
3198 dev->priv_flags |= IFF_UNICAST_FLT;
3199 dev->gso_max_segs = MV643XX_MAX_TSO_SEGS;
3201 /* MTU range: 64 - 9500 */
3202 dev->min_mtu = 64;
3203 dev->max_mtu = 9500;
3205 if (mp->shared->win_protect)
3206 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
3208 netif_carrier_off(dev);
3210 wrlp(mp, SDMA_CONFIG, PORT_SDMA_CONFIG_DEFAULT_VALUE);
3212 set_rx_coal(mp, 250);
3213 set_tx_coal(mp, 0);
3215 err = register_netdev(dev);
3216 if (err)
3217 goto out;
3219 netdev_notice(dev, "port %d with MAC address %pM\n",
3220 mp->port_num, dev->dev_addr);
3222 if (mp->tx_desc_sram_size > 0)
3223 netdev_notice(dev, "configured with sram\n");
3225 return 0;
3227 out:
3228 if (!IS_ERR(mp->clk))
3229 clk_disable_unprepare(mp->clk);
3230 free_netdev(dev);
3232 return err;
3235 static int mv643xx_eth_remove(struct platform_device *pdev)
3237 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
3238 struct net_device *dev = mp->dev;
3240 unregister_netdev(mp->dev);
3241 if (dev->phydev)
3242 phy_disconnect(dev->phydev);
3243 cancel_work_sync(&mp->tx_timeout_task);
3245 if (!IS_ERR(mp->clk))
3246 clk_disable_unprepare(mp->clk);
3248 free_netdev(mp->dev);
3250 return 0;
3253 static void mv643xx_eth_shutdown(struct platform_device *pdev)
3255 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
3257 /* Mask all interrupts on ethernet port */
3258 wrlp(mp, INT_MASK, 0);
3259 rdlp(mp, INT_MASK);
3261 if (netif_running(mp->dev))
3262 port_reset(mp);
3265 static struct platform_driver mv643xx_eth_driver = {
3266 .probe = mv643xx_eth_probe,
3267 .remove = mv643xx_eth_remove,
3268 .shutdown = mv643xx_eth_shutdown,
3269 .driver = {
3270 .name = MV643XX_ETH_NAME,
3274 static struct platform_driver * const drivers[] = {
3275 &mv643xx_eth_shared_driver,
3276 &mv643xx_eth_driver,
3279 static int __init mv643xx_eth_init_module(void)
3281 return platform_register_drivers(drivers, ARRAY_SIZE(drivers));
3283 module_init(mv643xx_eth_init_module);
3285 static void __exit mv643xx_eth_cleanup_module(void)
3287 platform_unregister_drivers(drivers, ARRAY_SIZE(drivers));
3289 module_exit(mv643xx_eth_cleanup_module);
3291 MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, "
3292 "Manish Lachwani, Dale Farnsworth and Lennert Buytenhek");
3293 MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
3294 MODULE_LICENSE("GPL");
3295 MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
3296 MODULE_ALIAS("platform:" MV643XX_ETH_NAME);