1 // SPDX-License-Identifier: GPL-2.0-or-later
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>
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>
47 #include <linux/interrupt.h>
48 #include <linux/types.h>
49 #include <linux/slab.h>
50 #include <linux/clk.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 | \
161 TX_BURST_SIZE_4_64BIT)
163 #error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
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
188 #if defined(__BIG_ENDIAN)
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 */
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)
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 */
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 */
221 #error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
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.
266 * Per-port MBUS window access register value.
271 * Hardware-specific parameters.
273 int extended_rx_coal_limit
;
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
;
309 u32 good_fc_received
;
311 u32 undersize_received
;
312 u32 fragments_received
;
313 u32 oversize_received
;
315 u32 mac_receive_error
;
319 /* Non MIB hardware counters */
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
;
348 int tx_stop_threshold
;
349 int tx_wake_threshold
;
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
;
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
;
394 unsigned long rx_desc_sram_addr
;
395 int rx_desc_sram_size
;
397 struct timer_list rx_oom
;
398 struct rx_queue rxq
[8];
404 unsigned long tx_desc_sram_addr
;
405 int tx_desc_sram_size
;
407 struct tx_queue txq
[8];
410 * Hardware-specific parameters.
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
)
466 static void txq_reset_hw_ptr(struct tx_queue
*txq
)
468 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
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
)
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
;
512 while (rx
< budget
&& rxq
->rx_desc_count
) {
513 struct rx_desc
*rx_desc
;
514 unsigned int cmd_sts
;
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
)
525 skb
= rxq
->rx_skb
[rxq
->rx_curr_desc
];
526 rxq
->rx_skb
[rxq
->rx_curr_desc
] = NULL
;
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
--;
537 mp
->work_rx_refill
|= 1 << rxq
->index
;
539 byte_cnt
= rx_desc
->byte_cnt
;
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).
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
557 if ((cmd_sts
& (RX_FIRST_DESC
| RX_LAST_DESC
| ERROR_SUMMARY
))
558 != (RX_FIRST_DESC
| RX_LAST_DESC
))
562 * The -4 is for the CRC in the trailer of the
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
);
578 if ((cmd_sts
& (RX_FIRST_DESC
| RX_LAST_DESC
)) !=
579 (RX_FIRST_DESC
| RX_LAST_DESC
)) {
582 "received packet spanning multiple descriptors\n");
585 if (cmd_sts
& ERROR_SUMMARY
)
592 mp
->work_rx
&= ~(1 << rxq
->index
);
597 static int rxq_refill(struct rx_queue
*rxq
, int budget
)
599 struct mv643xx_eth_private
*mp
= rxq_to_mp(rxq
);
603 while (refilled
< budget
&& rxq
->rx_desc_count
< rxq
->rx_ring_size
) {
606 struct rx_desc
*rx_desc
;
609 skb
= netdev_alloc_skb(mp
->dev
, mp
->skb_size
);
617 skb_reserve(skb
, SKB_DMA_REALIGN
);
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
,
632 rx_desc
->buf_size
= size
;
633 rxq
->rx_skb
[rx
] = skb
;
635 rx_desc
->cmd_sts
= BUFFER_OWNED_BY_DMA
| RX_ENABLE_INTERRUPT
;
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.
646 if (refilled
< budget
)
647 mp
->work_rx_refill
&= ~(1 << rxq
->index
);
654 /* tx ***********************************************************************/
655 static inline unsigned int has_tiny_unaligned_frags(struct sk_buff
*skb
)
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)
669 static int skb_tx_csum(struct mv643xx_eth_private
*mp
, struct sk_buff
*skb
,
670 u16
*l4i_chk
, u32
*command
, int length
)
675 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
679 BUG_ON(skb
->protocol
!= htons(ETH_P_IP
) &&
680 skb
->protocol
!= htons(ETH_P_8021Q
));
682 hdr_len
= (void *)ip_hdr(skb
) - (void *)skb
->data
;
683 tag_bytes
= hdr_len
- ETH_HLEN
;
685 if (length
- hdr_len
> mp
->shared
->tx_csum_limit
||
686 unlikely(tag_bytes
& ~12)) {
687 ret
= skb_checksum_help(skb
);
694 cmd
|= MAC_HDR_EXTRA_4_BYTES
;
696 cmd
|= MAC_HDR_EXTRA_8_BYTES
;
698 cmd
|= GEN_TCP_UDP_CHECKSUM
| GEN_TCP_UDP_CHK_FULL
|
700 ip_hdr(skb
)->ihl
<< TX_IHL_SHIFT
;
702 /* TODO: Revisit this. With the usage of GEN_TCP_UDP_CHK_FULL
703 * it seems we don't need to pass the initial checksum. */
704 switch (ip_hdr(skb
)->protocol
) {
713 WARN(1, "protocol not supported");
717 /* Errata BTS #50, IHL must be 5 if no HW checksum */
718 cmd
|= 5 << TX_IHL_SHIFT
;
725 txq_put_data_tso(struct net_device
*dev
, struct tx_queue
*txq
,
726 struct sk_buff
*skb
, char *data
, int length
,
727 bool last_tcp
, bool is_last
)
731 struct tx_desc
*desc
;
733 tx_index
= txq
->tx_curr_desc
++;
734 if (txq
->tx_curr_desc
== txq
->tx_ring_size
)
735 txq
->tx_curr_desc
= 0;
736 desc
= &txq
->tx_desc_area
[tx_index
];
737 txq
->tx_desc_mapping
[tx_index
] = DESC_DMA_MAP_SINGLE
;
740 desc
->byte_cnt
= length
;
742 if (length
<= 8 && (uintptr_t)data
& 0x7) {
743 /* Copy unaligned small data fragment to TSO header data area */
744 memcpy(txq
->tso_hdrs
+ tx_index
* TSO_HEADER_SIZE
,
746 desc
->buf_ptr
= txq
->tso_hdrs_dma
747 + tx_index
* TSO_HEADER_SIZE
;
749 /* Alignment is okay, map buffer and hand off to hardware */
750 txq
->tx_desc_mapping
[tx_index
] = DESC_DMA_MAP_SINGLE
;
751 desc
->buf_ptr
= dma_map_single(dev
->dev
.parent
, data
,
752 length
, DMA_TO_DEVICE
);
753 if (unlikely(dma_mapping_error(dev
->dev
.parent
,
755 WARN(1, "dma_map_single failed!\n");
760 cmd_sts
= BUFFER_OWNED_BY_DMA
;
762 /* last descriptor in the TCP packet */
763 cmd_sts
|= ZERO_PADDING
| TX_LAST_DESC
;
764 /* last descriptor in SKB */
766 cmd_sts
|= TX_ENABLE_INTERRUPT
;
768 desc
->cmd_sts
= cmd_sts
;
773 txq_put_hdr_tso(struct sk_buff
*skb
, struct tx_queue
*txq
, int length
,
774 u32
*first_cmd_sts
, bool first_desc
)
776 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
777 int hdr_len
= skb_transport_offset(skb
) + tcp_hdrlen(skb
);
779 struct tx_desc
*desc
;
785 tx_index
= txq
->tx_curr_desc
;
786 desc
= &txq
->tx_desc_area
[tx_index
];
788 ret
= skb_tx_csum(mp
, skb
, &l4i_chk
, &cmd_csum
, length
);
790 WARN(1, "failed to prepare checksum!");
792 /* Should we set this? Can't use the value from skb_tx_csum()
793 * as it's not the correct initial L4 checksum to use. */
796 desc
->byte_cnt
= hdr_len
;
797 desc
->buf_ptr
= txq
->tso_hdrs_dma
+
798 txq
->tx_curr_desc
* TSO_HEADER_SIZE
;
799 cmd_sts
= cmd_csum
| BUFFER_OWNED_BY_DMA
| TX_FIRST_DESC
|
802 /* Defer updating the first command descriptor until all
803 * following descriptors have been written.
806 *first_cmd_sts
= cmd_sts
;
808 desc
->cmd_sts
= cmd_sts
;
811 if (txq
->tx_curr_desc
== txq
->tx_ring_size
)
812 txq
->tx_curr_desc
= 0;
815 static int txq_submit_tso(struct tx_queue
*txq
, struct sk_buff
*skb
,
816 struct net_device
*dev
)
818 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
819 int hdr_len
, total_len
, data_left
, ret
;
822 struct tx_desc
*first_tx_desc
;
823 u32 first_cmd_sts
= 0;
825 /* Count needed descriptors */
826 if ((txq
->tx_desc_count
+ tso_count_descs(skb
)) >= txq
->tx_ring_size
) {
827 netdev_dbg(dev
, "not enough descriptors for TSO!\n");
831 first_tx_desc
= &txq
->tx_desc_area
[txq
->tx_curr_desc
];
833 /* Initialize the TSO handler, and prepare the first payload */
834 hdr_len
= tso_start(skb
, &tso
);
836 total_len
= skb
->len
- hdr_len
;
837 while (total_len
> 0) {
838 bool first_desc
= (desc_count
== 0);
841 data_left
= min_t(int, skb_shinfo(skb
)->gso_size
, total_len
);
842 total_len
-= data_left
;
845 /* prepare packet headers: MAC + IP + TCP */
846 hdr
= txq
->tso_hdrs
+ txq
->tx_curr_desc
* TSO_HEADER_SIZE
;
847 tso_build_hdr(skb
, hdr
, &tso
, data_left
, total_len
== 0);
848 txq_put_hdr_tso(skb
, txq
, data_left
, &first_cmd_sts
,
851 while (data_left
> 0) {
855 size
= min_t(int, tso
.size
, data_left
);
856 ret
= txq_put_data_tso(dev
, txq
, skb
, tso
.data
, size
,
862 tso_build_data(skb
, &tso
, size
);
866 __skb_queue_tail(&txq
->tx_skb
, skb
);
867 skb_tx_timestamp(skb
);
869 /* ensure all other descriptors are written before first cmd_sts */
871 first_tx_desc
->cmd_sts
= first_cmd_sts
;
873 /* clear TX_END status */
874 mp
->work_tx_end
&= ~(1 << txq
->index
);
876 /* ensure all descriptors are written before poking hardware */
879 txq
->tx_desc_count
+= desc_count
;
882 /* TODO: Release all used data descriptors; header descriptors must not
888 static void txq_submit_frag_skb(struct tx_queue
*txq
, struct sk_buff
*skb
)
890 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
891 int nr_frags
= skb_shinfo(skb
)->nr_frags
;
894 for (frag
= 0; frag
< nr_frags
; frag
++) {
895 skb_frag_t
*this_frag
;
897 struct tx_desc
*desc
;
899 this_frag
= &skb_shinfo(skb
)->frags
[frag
];
900 tx_index
= txq
->tx_curr_desc
++;
901 if (txq
->tx_curr_desc
== txq
->tx_ring_size
)
902 txq
->tx_curr_desc
= 0;
903 desc
= &txq
->tx_desc_area
[tx_index
];
904 txq
->tx_desc_mapping
[tx_index
] = DESC_DMA_MAP_PAGE
;
907 * The last fragment will generate an interrupt
908 * which will free the skb on TX completion.
910 if (frag
== nr_frags
- 1) {
911 desc
->cmd_sts
= BUFFER_OWNED_BY_DMA
|
912 ZERO_PADDING
| TX_LAST_DESC
|
915 desc
->cmd_sts
= BUFFER_OWNED_BY_DMA
;
919 desc
->byte_cnt
= skb_frag_size(this_frag
);
920 desc
->buf_ptr
= skb_frag_dma_map(mp
->dev
->dev
.parent
,
921 this_frag
, 0, desc
->byte_cnt
,
926 static int txq_submit_skb(struct tx_queue
*txq
, struct sk_buff
*skb
,
927 struct net_device
*dev
)
929 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
930 int nr_frags
= skb_shinfo(skb
)->nr_frags
;
932 struct tx_desc
*desc
;
940 if (txq
->tx_ring_size
- txq
->tx_desc_count
< MAX_SKB_FRAGS
+ 1) {
942 netdev_err(dev
, "tx queue full?!\n");
946 ret
= skb_tx_csum(mp
, skb
, &l4i_chk
, &cmd_sts
, skb
->len
);
949 cmd_sts
|= TX_FIRST_DESC
| GEN_CRC
| BUFFER_OWNED_BY_DMA
;
951 tx_index
= txq
->tx_curr_desc
++;
952 if (txq
->tx_curr_desc
== txq
->tx_ring_size
)
953 txq
->tx_curr_desc
= 0;
954 desc
= &txq
->tx_desc_area
[tx_index
];
955 txq
->tx_desc_mapping
[tx_index
] = DESC_DMA_MAP_SINGLE
;
958 txq_submit_frag_skb(txq
, skb
);
959 length
= skb_headlen(skb
);
961 cmd_sts
|= ZERO_PADDING
| TX_LAST_DESC
| TX_ENABLE_INTERRUPT
;
965 desc
->l4i_chk
= l4i_chk
;
966 desc
->byte_cnt
= length
;
967 desc
->buf_ptr
= dma_map_single(mp
->dev
->dev
.parent
, skb
->data
,
968 length
, DMA_TO_DEVICE
);
970 __skb_queue_tail(&txq
->tx_skb
, skb
);
972 skb_tx_timestamp(skb
);
974 /* ensure all other descriptors are written before first cmd_sts */
976 desc
->cmd_sts
= cmd_sts
;
978 /* clear TX_END status */
979 mp
->work_tx_end
&= ~(1 << txq
->index
);
981 /* ensure all descriptors are written before poking hardware */
985 txq
->tx_desc_count
+= nr_frags
+ 1;
990 static netdev_tx_t
mv643xx_eth_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
992 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
993 int length
, queue
, ret
;
994 struct tx_queue
*txq
;
995 struct netdev_queue
*nq
;
997 queue
= skb_get_queue_mapping(skb
);
998 txq
= mp
->txq
+ queue
;
999 nq
= netdev_get_tx_queue(dev
, queue
);
1001 if (has_tiny_unaligned_frags(skb
) && __skb_linearize(skb
)) {
1002 netdev_printk(KERN_DEBUG
, dev
,
1003 "failed to linearize skb with tiny unaligned fragment\n");
1004 return NETDEV_TX_BUSY
;
1009 if (skb_is_gso(skb
))
1010 ret
= txq_submit_tso(txq
, skb
, dev
);
1012 ret
= txq_submit_skb(txq
, skb
, dev
);
1014 txq
->tx_bytes
+= length
;
1017 if (txq
->tx_desc_count
>= txq
->tx_stop_threshold
)
1018 netif_tx_stop_queue(nq
);
1021 dev_kfree_skb_any(skb
);
1024 return NETDEV_TX_OK
;
1028 /* tx napi ******************************************************************/
1029 static void txq_kick(struct tx_queue
*txq
)
1031 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
1032 struct netdev_queue
*nq
= netdev_get_tx_queue(mp
->dev
, txq
->index
);
1036 __netif_tx_lock(nq
, smp_processor_id());
1038 if (rdlp(mp
, TXQ_COMMAND
) & (1 << txq
->index
))
1041 hw_desc_ptr
= rdlp(mp
, TXQ_CURRENT_DESC_PTR(txq
->index
));
1042 expected_ptr
= (u32
)txq
->tx_desc_dma
+
1043 txq
->tx_curr_desc
* sizeof(struct tx_desc
);
1045 if (hw_desc_ptr
!= expected_ptr
)
1049 __netif_tx_unlock(nq
);
1051 mp
->work_tx_end
&= ~(1 << txq
->index
);
1054 static int txq_reclaim(struct tx_queue
*txq
, int budget
, int force
)
1056 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
1057 struct netdev_queue
*nq
= netdev_get_tx_queue(mp
->dev
, txq
->index
);
1060 __netif_tx_lock_bh(nq
);
1063 while (reclaimed
< budget
&& txq
->tx_desc_count
> 0) {
1065 struct tx_desc
*desc
;
1069 tx_index
= txq
->tx_used_desc
;
1070 desc
= &txq
->tx_desc_area
[tx_index
];
1071 desc_dma_map
= txq
->tx_desc_mapping
[tx_index
];
1073 cmd_sts
= desc
->cmd_sts
;
1075 if (cmd_sts
& BUFFER_OWNED_BY_DMA
) {
1078 desc
->cmd_sts
= cmd_sts
& ~BUFFER_OWNED_BY_DMA
;
1081 txq
->tx_used_desc
= tx_index
+ 1;
1082 if (txq
->tx_used_desc
== txq
->tx_ring_size
)
1083 txq
->tx_used_desc
= 0;
1086 txq
->tx_desc_count
--;
1088 if (!IS_TSO_HEADER(txq
, desc
->buf_ptr
)) {
1090 if (desc_dma_map
== DESC_DMA_MAP_PAGE
)
1091 dma_unmap_page(mp
->dev
->dev
.parent
,
1096 dma_unmap_single(mp
->dev
->dev
.parent
,
1102 if (cmd_sts
& TX_ENABLE_INTERRUPT
) {
1103 struct sk_buff
*skb
= __skb_dequeue(&txq
->tx_skb
);
1106 dev_consume_skb_any(skb
);
1109 if (cmd_sts
& ERROR_SUMMARY
) {
1110 netdev_info(mp
->dev
, "tx error\n");
1111 mp
->dev
->stats
.tx_errors
++;
1116 __netif_tx_unlock_bh(nq
);
1118 if (reclaimed
< budget
)
1119 mp
->work_tx
&= ~(1 << txq
->index
);
1125 /* tx rate control **********************************************************/
1127 * Set total maximum TX rate (shared by all TX queues for this port)
1128 * to 'rate' bits per second, with a maximum burst of 'burst' bytes.
1130 static void tx_set_rate(struct mv643xx_eth_private
*mp
, int rate
, int burst
)
1136 token_rate
= ((rate
/ 1000) * 64) / (mp
->t_clk
/ 1000);
1137 if (token_rate
> 1023)
1140 mtu
= (mp
->dev
->mtu
+ 255) >> 8;
1144 bucket_size
= (burst
+ 255) >> 8;
1145 if (bucket_size
> 65535)
1146 bucket_size
= 65535;
1148 switch (mp
->shared
->tx_bw_control
) {
1149 case TX_BW_CONTROL_OLD_LAYOUT
:
1150 wrlp(mp
, TX_BW_RATE
, token_rate
);
1151 wrlp(mp
, TX_BW_MTU
, mtu
);
1152 wrlp(mp
, TX_BW_BURST
, bucket_size
);
1154 case TX_BW_CONTROL_NEW_LAYOUT
:
1155 wrlp(mp
, TX_BW_RATE_MOVED
, token_rate
);
1156 wrlp(mp
, TX_BW_MTU_MOVED
, mtu
);
1157 wrlp(mp
, TX_BW_BURST_MOVED
, bucket_size
);
1162 static void txq_set_rate(struct tx_queue
*txq
, int rate
, int burst
)
1164 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
1168 token_rate
= ((rate
/ 1000) * 64) / (mp
->t_clk
/ 1000);
1169 if (token_rate
> 1023)
1172 bucket_size
= (burst
+ 255) >> 8;
1173 if (bucket_size
> 65535)
1174 bucket_size
= 65535;
1176 wrlp(mp
, TXQ_BW_TOKENS(txq
->index
), token_rate
<< 14);
1177 wrlp(mp
, TXQ_BW_CONF(txq
->index
), (bucket_size
<< 10) | token_rate
);
1180 static void txq_set_fixed_prio_mode(struct tx_queue
*txq
)
1182 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
1187 * Turn on fixed priority mode.
1190 switch (mp
->shared
->tx_bw_control
) {
1191 case TX_BW_CONTROL_OLD_LAYOUT
:
1192 off
= TXQ_FIX_PRIO_CONF
;
1194 case TX_BW_CONTROL_NEW_LAYOUT
:
1195 off
= TXQ_FIX_PRIO_CONF_MOVED
;
1200 val
= rdlp(mp
, off
);
1201 val
|= 1 << txq
->index
;
1207 /* mii management interface *************************************************/
1208 static void mv643xx_eth_adjust_link(struct net_device
*dev
)
1210 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1211 u32 pscr
= rdlp(mp
, PORT_SERIAL_CONTROL
);
1212 u32 autoneg_disable
= FORCE_LINK_PASS
|
1213 DISABLE_AUTO_NEG_SPEED_GMII
|
1214 DISABLE_AUTO_NEG_FOR_FLOW_CTRL
|
1215 DISABLE_AUTO_NEG_FOR_DUPLEX
;
1217 if (dev
->phydev
->autoneg
== AUTONEG_ENABLE
) {
1218 /* enable auto negotiation */
1219 pscr
&= ~autoneg_disable
;
1223 pscr
|= autoneg_disable
;
1225 if (dev
->phydev
->speed
== SPEED_1000
) {
1226 /* force gigabit, half duplex not supported */
1227 pscr
|= SET_GMII_SPEED_TO_1000
;
1228 pscr
|= SET_FULL_DUPLEX_MODE
;
1232 pscr
&= ~SET_GMII_SPEED_TO_1000
;
1234 if (dev
->phydev
->speed
== SPEED_100
)
1235 pscr
|= SET_MII_SPEED_TO_100
;
1237 pscr
&= ~SET_MII_SPEED_TO_100
;
1239 if (dev
->phydev
->duplex
== DUPLEX_FULL
)
1240 pscr
|= SET_FULL_DUPLEX_MODE
;
1242 pscr
&= ~SET_FULL_DUPLEX_MODE
;
1245 wrlp(mp
, PORT_SERIAL_CONTROL
, pscr
);
1248 /* statistics ***************************************************************/
1249 static struct net_device_stats
*mv643xx_eth_get_stats(struct net_device
*dev
)
1251 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1252 struct net_device_stats
*stats
= &dev
->stats
;
1253 unsigned long tx_packets
= 0;
1254 unsigned long tx_bytes
= 0;
1255 unsigned long tx_dropped
= 0;
1258 for (i
= 0; i
< mp
->txq_count
; i
++) {
1259 struct tx_queue
*txq
= mp
->txq
+ i
;
1261 tx_packets
+= txq
->tx_packets
;
1262 tx_bytes
+= txq
->tx_bytes
;
1263 tx_dropped
+= txq
->tx_dropped
;
1266 stats
->tx_packets
= tx_packets
;
1267 stats
->tx_bytes
= tx_bytes
;
1268 stats
->tx_dropped
= tx_dropped
;
1273 static inline u32
mib_read(struct mv643xx_eth_private
*mp
, int offset
)
1275 return rdl(mp
, MIB_COUNTERS(mp
->port_num
) + offset
);
1278 static void mib_counters_clear(struct mv643xx_eth_private
*mp
)
1282 for (i
= 0; i
< 0x80; i
+= 4)
1285 /* Clear non MIB hw counters also */
1286 rdlp(mp
, RX_DISCARD_FRAME_CNT
);
1287 rdlp(mp
, RX_OVERRUN_FRAME_CNT
);
1290 static void mib_counters_update(struct mv643xx_eth_private
*mp
)
1292 struct mib_counters
*p
= &mp
->mib_counters
;
1294 spin_lock_bh(&mp
->mib_counters_lock
);
1295 p
->good_octets_received
+= mib_read(mp
, 0x00);
1296 p
->bad_octets_received
+= mib_read(mp
, 0x08);
1297 p
->internal_mac_transmit_err
+= mib_read(mp
, 0x0c);
1298 p
->good_frames_received
+= mib_read(mp
, 0x10);
1299 p
->bad_frames_received
+= mib_read(mp
, 0x14);
1300 p
->broadcast_frames_received
+= mib_read(mp
, 0x18);
1301 p
->multicast_frames_received
+= mib_read(mp
, 0x1c);
1302 p
->frames_64_octets
+= mib_read(mp
, 0x20);
1303 p
->frames_65_to_127_octets
+= mib_read(mp
, 0x24);
1304 p
->frames_128_to_255_octets
+= mib_read(mp
, 0x28);
1305 p
->frames_256_to_511_octets
+= mib_read(mp
, 0x2c);
1306 p
->frames_512_to_1023_octets
+= mib_read(mp
, 0x30);
1307 p
->frames_1024_to_max_octets
+= mib_read(mp
, 0x34);
1308 p
->good_octets_sent
+= mib_read(mp
, 0x38);
1309 p
->good_frames_sent
+= mib_read(mp
, 0x40);
1310 p
->excessive_collision
+= mib_read(mp
, 0x44);
1311 p
->multicast_frames_sent
+= mib_read(mp
, 0x48);
1312 p
->broadcast_frames_sent
+= mib_read(mp
, 0x4c);
1313 p
->unrec_mac_control_received
+= mib_read(mp
, 0x50);
1314 p
->fc_sent
+= mib_read(mp
, 0x54);
1315 p
->good_fc_received
+= mib_read(mp
, 0x58);
1316 p
->bad_fc_received
+= mib_read(mp
, 0x5c);
1317 p
->undersize_received
+= mib_read(mp
, 0x60);
1318 p
->fragments_received
+= mib_read(mp
, 0x64);
1319 p
->oversize_received
+= mib_read(mp
, 0x68);
1320 p
->jabber_received
+= mib_read(mp
, 0x6c);
1321 p
->mac_receive_error
+= mib_read(mp
, 0x70);
1322 p
->bad_crc_event
+= mib_read(mp
, 0x74);
1323 p
->collision
+= mib_read(mp
, 0x78);
1324 p
->late_collision
+= mib_read(mp
, 0x7c);
1325 /* Non MIB hardware counters */
1326 p
->rx_discard
+= rdlp(mp
, RX_DISCARD_FRAME_CNT
);
1327 p
->rx_overrun
+= rdlp(mp
, RX_OVERRUN_FRAME_CNT
);
1328 spin_unlock_bh(&mp
->mib_counters_lock
);
1331 static void mib_counters_timer_wrapper(struct timer_list
*t
)
1333 struct mv643xx_eth_private
*mp
= from_timer(mp
, t
, mib_counters_timer
);
1334 mib_counters_update(mp
);
1335 mod_timer(&mp
->mib_counters_timer
, jiffies
+ 30 * HZ
);
1339 /* interrupt coalescing *****************************************************/
1341 * Hardware coalescing parameters are set in units of 64 t_clk
1344 * coal_delay_in_usec = 64000000 * register_value / t_clk_rate
1346 * register_value = coal_delay_in_usec * t_clk_rate / 64000000
1348 * In the ->set*() methods, we round the computed register value
1349 * to the nearest integer.
1351 static unsigned int get_rx_coal(struct mv643xx_eth_private
*mp
)
1353 u32 val
= rdlp(mp
, SDMA_CONFIG
);
1356 if (mp
->shared
->extended_rx_coal_limit
)
1357 temp
= ((val
& 0x02000000) >> 10) | ((val
& 0x003fff80) >> 7);
1359 temp
= (val
& 0x003fff00) >> 8;
1362 temp
+= mp
->t_clk
/ 2;
1363 do_div(temp
, mp
->t_clk
);
1365 return (unsigned int)temp
;
1368 static void set_rx_coal(struct mv643xx_eth_private
*mp
, unsigned int usec
)
1373 temp
= (u64
)usec
* mp
->t_clk
;
1375 do_div(temp
, 64000000);
1377 val
= rdlp(mp
, SDMA_CONFIG
);
1378 if (mp
->shared
->extended_rx_coal_limit
) {
1382 val
|= (temp
& 0x8000) << 10;
1383 val
|= (temp
& 0x7fff) << 7;
1388 val
|= (temp
& 0x3fff) << 8;
1390 wrlp(mp
, SDMA_CONFIG
, val
);
1393 static unsigned int get_tx_coal(struct mv643xx_eth_private
*mp
)
1397 temp
= (rdlp(mp
, TX_FIFO_URGENT_THRESHOLD
) & 0x3fff0) >> 4;
1399 temp
+= mp
->t_clk
/ 2;
1400 do_div(temp
, mp
->t_clk
);
1402 return (unsigned int)temp
;
1405 static void set_tx_coal(struct mv643xx_eth_private
*mp
, unsigned int usec
)
1409 temp
= (u64
)usec
* mp
->t_clk
;
1411 do_div(temp
, 64000000);
1416 wrlp(mp
, TX_FIFO_URGENT_THRESHOLD
, temp
<< 4);
1420 /* ethtool ******************************************************************/
1421 struct mv643xx_eth_stats
{
1422 char stat_string
[ETH_GSTRING_LEN
];
1429 { #m, sizeof_field(struct net_device_stats, m), \
1430 offsetof(struct net_device, stats.m), -1 }
1432 #define MIBSTAT(m) \
1433 { #m, sizeof_field(struct mib_counters, m), \
1434 -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
1436 static const struct mv643xx_eth_stats mv643xx_eth_stats
[] = {
1445 MIBSTAT(good_octets_received
),
1446 MIBSTAT(bad_octets_received
),
1447 MIBSTAT(internal_mac_transmit_err
),
1448 MIBSTAT(good_frames_received
),
1449 MIBSTAT(bad_frames_received
),
1450 MIBSTAT(broadcast_frames_received
),
1451 MIBSTAT(multicast_frames_received
),
1452 MIBSTAT(frames_64_octets
),
1453 MIBSTAT(frames_65_to_127_octets
),
1454 MIBSTAT(frames_128_to_255_octets
),
1455 MIBSTAT(frames_256_to_511_octets
),
1456 MIBSTAT(frames_512_to_1023_octets
),
1457 MIBSTAT(frames_1024_to_max_octets
),
1458 MIBSTAT(good_octets_sent
),
1459 MIBSTAT(good_frames_sent
),
1460 MIBSTAT(excessive_collision
),
1461 MIBSTAT(multicast_frames_sent
),
1462 MIBSTAT(broadcast_frames_sent
),
1463 MIBSTAT(unrec_mac_control_received
),
1465 MIBSTAT(good_fc_received
),
1466 MIBSTAT(bad_fc_received
),
1467 MIBSTAT(undersize_received
),
1468 MIBSTAT(fragments_received
),
1469 MIBSTAT(oversize_received
),
1470 MIBSTAT(jabber_received
),
1471 MIBSTAT(mac_receive_error
),
1472 MIBSTAT(bad_crc_event
),
1474 MIBSTAT(late_collision
),
1475 MIBSTAT(rx_discard
),
1476 MIBSTAT(rx_overrun
),
1480 mv643xx_eth_get_link_ksettings_phy(struct mv643xx_eth_private
*mp
,
1481 struct ethtool_link_ksettings
*cmd
)
1483 struct net_device
*dev
= mp
->dev
;
1485 phy_ethtool_ksettings_get(dev
->phydev
, cmd
);
1488 * The MAC does not support 1000baseT_Half.
1490 linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT
,
1491 cmd
->link_modes
.supported
);
1492 linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT
,
1493 cmd
->link_modes
.advertising
);
1499 mv643xx_eth_get_link_ksettings_phyless(struct mv643xx_eth_private
*mp
,
1500 struct ethtool_link_ksettings
*cmd
)
1503 u32 supported
, advertising
;
1505 port_status
= rdlp(mp
, PORT_STATUS
);
1507 supported
= SUPPORTED_MII
;
1508 advertising
= ADVERTISED_MII
;
1509 switch (port_status
& PORT_SPEED_MASK
) {
1511 cmd
->base
.speed
= SPEED_10
;
1513 case PORT_SPEED_100
:
1514 cmd
->base
.speed
= SPEED_100
;
1516 case PORT_SPEED_1000
:
1517 cmd
->base
.speed
= SPEED_1000
;
1520 cmd
->base
.speed
= -1;
1523 cmd
->base
.duplex
= (port_status
& FULL_DUPLEX
) ?
1524 DUPLEX_FULL
: DUPLEX_HALF
;
1525 cmd
->base
.port
= PORT_MII
;
1526 cmd
->base
.phy_address
= 0;
1527 cmd
->base
.autoneg
= AUTONEG_DISABLE
;
1529 ethtool_convert_legacy_u32_to_link_mode(cmd
->link_modes
.supported
,
1531 ethtool_convert_legacy_u32_to_link_mode(cmd
->link_modes
.advertising
,
1538 mv643xx_eth_get_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1543 phy_ethtool_get_wol(dev
->phydev
, wol
);
1547 mv643xx_eth_set_wol(struct net_device
*dev
, struct ethtool_wolinfo
*wol
)
1554 err
= phy_ethtool_set_wol(dev
->phydev
, wol
);
1555 /* Given that mv643xx_eth works without the marvell-specific PHY driver,
1556 * this debugging hint is useful to have.
1558 if (err
== -EOPNOTSUPP
)
1559 netdev_info(dev
, "The PHY does not support set_wol, was CONFIG_MARVELL_PHY enabled?\n");
1564 mv643xx_eth_get_link_ksettings(struct net_device
*dev
,
1565 struct ethtool_link_ksettings
*cmd
)
1567 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1570 return mv643xx_eth_get_link_ksettings_phy(mp
, cmd
);
1572 return mv643xx_eth_get_link_ksettings_phyless(mp
, cmd
);
1576 mv643xx_eth_set_link_ksettings(struct net_device
*dev
,
1577 const struct ethtool_link_ksettings
*cmd
)
1579 struct ethtool_link_ksettings c
= *cmd
;
1587 * The MAC does not support 1000baseT_Half.
1589 ethtool_convert_link_mode_to_legacy_u32(&advertising
,
1590 c
.link_modes
.advertising
);
1591 advertising
&= ~ADVERTISED_1000baseT_Half
;
1592 ethtool_convert_legacy_u32_to_link_mode(c
.link_modes
.advertising
,
1595 ret
= phy_ethtool_ksettings_set(dev
->phydev
, &c
);
1597 mv643xx_eth_adjust_link(dev
);
1601 static void mv643xx_eth_get_drvinfo(struct net_device
*dev
,
1602 struct ethtool_drvinfo
*drvinfo
)
1604 strlcpy(drvinfo
->driver
, mv643xx_eth_driver_name
,
1605 sizeof(drvinfo
->driver
));
1606 strlcpy(drvinfo
->version
, mv643xx_eth_driver_version
,
1607 sizeof(drvinfo
->version
));
1608 strlcpy(drvinfo
->fw_version
, "N/A", sizeof(drvinfo
->fw_version
));
1609 strlcpy(drvinfo
->bus_info
, "platform", sizeof(drvinfo
->bus_info
));
1613 mv643xx_eth_get_coalesce(struct net_device
*dev
, struct ethtool_coalesce
*ec
)
1615 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1617 ec
->rx_coalesce_usecs
= get_rx_coal(mp
);
1618 ec
->tx_coalesce_usecs
= get_tx_coal(mp
);
1624 mv643xx_eth_set_coalesce(struct net_device
*dev
, struct ethtool_coalesce
*ec
)
1626 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1628 set_rx_coal(mp
, ec
->rx_coalesce_usecs
);
1629 set_tx_coal(mp
, ec
->tx_coalesce_usecs
);
1635 mv643xx_eth_get_ringparam(struct net_device
*dev
, struct ethtool_ringparam
*er
)
1637 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1639 er
->rx_max_pending
= 4096;
1640 er
->tx_max_pending
= 4096;
1642 er
->rx_pending
= mp
->rx_ring_size
;
1643 er
->tx_pending
= mp
->tx_ring_size
;
1647 mv643xx_eth_set_ringparam(struct net_device
*dev
, struct ethtool_ringparam
*er
)
1649 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1651 if (er
->rx_mini_pending
|| er
->rx_jumbo_pending
)
1654 mp
->rx_ring_size
= er
->rx_pending
< 4096 ? er
->rx_pending
: 4096;
1655 mp
->tx_ring_size
= clamp_t(unsigned int, er
->tx_pending
,
1656 MV643XX_MAX_SKB_DESCS
* 2, 4096);
1657 if (mp
->tx_ring_size
!= er
->tx_pending
)
1658 netdev_warn(dev
, "TX queue size set to %u (requested %u)\n",
1659 mp
->tx_ring_size
, er
->tx_pending
);
1661 if (netif_running(dev
)) {
1662 mv643xx_eth_stop(dev
);
1663 if (mv643xx_eth_open(dev
)) {
1665 "fatal error on re-opening device after ring param change\n");
1675 mv643xx_eth_set_features(struct net_device
*dev
, netdev_features_t features
)
1677 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1678 bool rx_csum
= features
& NETIF_F_RXCSUM
;
1680 wrlp(mp
, PORT_CONFIG
, rx_csum
? 0x02000000 : 0x00000000);
1685 static void mv643xx_eth_get_strings(struct net_device
*dev
,
1686 uint32_t stringset
, uint8_t *data
)
1690 if (stringset
== ETH_SS_STATS
) {
1691 for (i
= 0; i
< ARRAY_SIZE(mv643xx_eth_stats
); i
++) {
1692 memcpy(data
+ i
* ETH_GSTRING_LEN
,
1693 mv643xx_eth_stats
[i
].stat_string
,
1699 static void mv643xx_eth_get_ethtool_stats(struct net_device
*dev
,
1700 struct ethtool_stats
*stats
,
1703 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1706 mv643xx_eth_get_stats(dev
);
1707 mib_counters_update(mp
);
1709 for (i
= 0; i
< ARRAY_SIZE(mv643xx_eth_stats
); i
++) {
1710 const struct mv643xx_eth_stats
*stat
;
1713 stat
= mv643xx_eth_stats
+ i
;
1715 if (stat
->netdev_off
>= 0)
1716 p
= ((void *)mp
->dev
) + stat
->netdev_off
;
1718 p
= ((void *)mp
) + stat
->mp_off
;
1720 data
[i
] = (stat
->sizeof_stat
== 8) ?
1721 *(uint64_t *)p
: *(uint32_t *)p
;
1725 static int mv643xx_eth_get_sset_count(struct net_device
*dev
, int sset
)
1727 if (sset
== ETH_SS_STATS
)
1728 return ARRAY_SIZE(mv643xx_eth_stats
);
1733 static const struct ethtool_ops mv643xx_eth_ethtool_ops
= {
1734 .supported_coalesce_params
= ETHTOOL_COALESCE_USECS
,
1735 .get_drvinfo
= mv643xx_eth_get_drvinfo
,
1736 .nway_reset
= phy_ethtool_nway_reset
,
1737 .get_link
= ethtool_op_get_link
,
1738 .get_coalesce
= mv643xx_eth_get_coalesce
,
1739 .set_coalesce
= mv643xx_eth_set_coalesce
,
1740 .get_ringparam
= mv643xx_eth_get_ringparam
,
1741 .set_ringparam
= mv643xx_eth_set_ringparam
,
1742 .get_strings
= mv643xx_eth_get_strings
,
1743 .get_ethtool_stats
= mv643xx_eth_get_ethtool_stats
,
1744 .get_sset_count
= mv643xx_eth_get_sset_count
,
1745 .get_ts_info
= ethtool_op_get_ts_info
,
1746 .get_wol
= mv643xx_eth_get_wol
,
1747 .set_wol
= mv643xx_eth_set_wol
,
1748 .get_link_ksettings
= mv643xx_eth_get_link_ksettings
,
1749 .set_link_ksettings
= mv643xx_eth_set_link_ksettings
,
1753 /* address handling *********************************************************/
1754 static void uc_addr_get(struct mv643xx_eth_private
*mp
, unsigned char *addr
)
1756 unsigned int mac_h
= rdlp(mp
, MAC_ADDR_HIGH
);
1757 unsigned int mac_l
= rdlp(mp
, MAC_ADDR_LOW
);
1759 addr
[0] = (mac_h
>> 24) & 0xff;
1760 addr
[1] = (mac_h
>> 16) & 0xff;
1761 addr
[2] = (mac_h
>> 8) & 0xff;
1762 addr
[3] = mac_h
& 0xff;
1763 addr
[4] = (mac_l
>> 8) & 0xff;
1764 addr
[5] = mac_l
& 0xff;
1767 static void uc_addr_set(struct mv643xx_eth_private
*mp
, unsigned char *addr
)
1769 wrlp(mp
, MAC_ADDR_HIGH
,
1770 (addr
[0] << 24) | (addr
[1] << 16) | (addr
[2] << 8) | addr
[3]);
1771 wrlp(mp
, MAC_ADDR_LOW
, (addr
[4] << 8) | addr
[5]);
1774 static u32
uc_addr_filter_mask(struct net_device
*dev
)
1776 struct netdev_hw_addr
*ha
;
1779 if (dev
->flags
& IFF_PROMISC
)
1782 nibbles
= 1 << (dev
->dev_addr
[5] & 0x0f);
1783 netdev_for_each_uc_addr(ha
, dev
) {
1784 if (memcmp(dev
->dev_addr
, ha
->addr
, 5))
1786 if ((dev
->dev_addr
[5] ^ ha
->addr
[5]) & 0xf0)
1789 nibbles
|= 1 << (ha
->addr
[5] & 0x0f);
1795 static void mv643xx_eth_program_unicast_filter(struct net_device
*dev
)
1797 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1802 uc_addr_set(mp
, dev
->dev_addr
);
1804 port_config
= rdlp(mp
, PORT_CONFIG
) & ~UNICAST_PROMISCUOUS_MODE
;
1806 nibbles
= uc_addr_filter_mask(dev
);
1808 port_config
|= UNICAST_PROMISCUOUS_MODE
;
1812 for (i
= 0; i
< 16; i
+= 4) {
1813 int off
= UNICAST_TABLE(mp
->port_num
) + i
;
1830 wrlp(mp
, PORT_CONFIG
, port_config
);
1833 static int addr_crc(unsigned char *addr
)
1838 for (i
= 0; i
< 6; i
++) {
1841 crc
= (crc
^ addr
[i
]) << 8;
1842 for (j
= 7; j
>= 0; j
--) {
1843 if (crc
& (0x100 << j
))
1851 static void mv643xx_eth_program_multicast_filter(struct net_device
*dev
)
1853 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
1856 struct netdev_hw_addr
*ha
;
1859 if (dev
->flags
& (IFF_PROMISC
| IFF_ALLMULTI
))
1862 /* Allocate both mc_spec and mc_other tables */
1863 mc_spec
= kcalloc(128, sizeof(u32
), GFP_ATOMIC
);
1866 mc_other
= &mc_spec
[64];
1868 netdev_for_each_mc_addr(ha
, dev
) {
1873 if (memcmp(a
, "\x01\x00\x5e\x00\x00", 5) == 0) {
1878 entry
= addr_crc(a
);
1881 table
[entry
>> 2] |= 1 << (8 * (entry
& 3));
1884 for (i
= 0; i
< 64; i
++) {
1885 wrl(mp
, SPECIAL_MCAST_TABLE(mp
->port_num
) + i
* sizeof(u32
),
1887 wrl(mp
, OTHER_MCAST_TABLE(mp
->port_num
) + i
* sizeof(u32
),
1895 for (i
= 0; i
< 64; i
++) {
1896 wrl(mp
, SPECIAL_MCAST_TABLE(mp
->port_num
) + i
* sizeof(u32
),
1898 wrl(mp
, OTHER_MCAST_TABLE(mp
->port_num
) + i
* sizeof(u32
),
1903 static void mv643xx_eth_set_rx_mode(struct net_device
*dev
)
1905 mv643xx_eth_program_unicast_filter(dev
);
1906 mv643xx_eth_program_multicast_filter(dev
);
1909 static int mv643xx_eth_set_mac_address(struct net_device
*dev
, void *addr
)
1911 struct sockaddr
*sa
= addr
;
1913 if (!is_valid_ether_addr(sa
->sa_data
))
1914 return -EADDRNOTAVAIL
;
1916 memcpy(dev
->dev_addr
, sa
->sa_data
, ETH_ALEN
);
1918 netif_addr_lock_bh(dev
);
1919 mv643xx_eth_program_unicast_filter(dev
);
1920 netif_addr_unlock_bh(dev
);
1926 /* rx/tx queue initialisation ***********************************************/
1927 static int rxq_init(struct mv643xx_eth_private
*mp
, int index
)
1929 struct rx_queue
*rxq
= mp
->rxq
+ index
;
1930 struct rx_desc
*rx_desc
;
1936 rxq
->rx_ring_size
= mp
->rx_ring_size
;
1938 rxq
->rx_desc_count
= 0;
1939 rxq
->rx_curr_desc
= 0;
1940 rxq
->rx_used_desc
= 0;
1942 size
= rxq
->rx_ring_size
* sizeof(struct rx_desc
);
1944 if (index
== 0 && size
<= mp
->rx_desc_sram_size
) {
1945 rxq
->rx_desc_area
= ioremap(mp
->rx_desc_sram_addr
,
1946 mp
->rx_desc_sram_size
);
1947 rxq
->rx_desc_dma
= mp
->rx_desc_sram_addr
;
1949 rxq
->rx_desc_area
= dma_alloc_coherent(mp
->dev
->dev
.parent
,
1950 size
, &rxq
->rx_desc_dma
,
1954 if (rxq
->rx_desc_area
== NULL
) {
1956 "can't allocate rx ring (%d bytes)\n", size
);
1959 memset(rxq
->rx_desc_area
, 0, size
);
1961 rxq
->rx_desc_area_size
= size
;
1962 rxq
->rx_skb
= kcalloc(rxq
->rx_ring_size
, sizeof(*rxq
->rx_skb
),
1964 if (rxq
->rx_skb
== NULL
)
1967 rx_desc
= rxq
->rx_desc_area
;
1968 for (i
= 0; i
< rxq
->rx_ring_size
; i
++) {
1972 if (nexti
== rxq
->rx_ring_size
)
1975 rx_desc
[i
].next_desc_ptr
= rxq
->rx_desc_dma
+
1976 nexti
* sizeof(struct rx_desc
);
1983 if (index
== 0 && size
<= mp
->rx_desc_sram_size
)
1984 iounmap(rxq
->rx_desc_area
);
1986 dma_free_coherent(mp
->dev
->dev
.parent
, size
,
1994 static void rxq_deinit(struct rx_queue
*rxq
)
1996 struct mv643xx_eth_private
*mp
= rxq_to_mp(rxq
);
2001 for (i
= 0; i
< rxq
->rx_ring_size
; i
++) {
2002 if (rxq
->rx_skb
[i
]) {
2003 dev_consume_skb_any(rxq
->rx_skb
[i
]);
2004 rxq
->rx_desc_count
--;
2008 if (rxq
->rx_desc_count
) {
2009 netdev_err(mp
->dev
, "error freeing rx ring -- %d skbs stuck\n",
2010 rxq
->rx_desc_count
);
2013 if (rxq
->index
== 0 &&
2014 rxq
->rx_desc_area_size
<= mp
->rx_desc_sram_size
)
2015 iounmap(rxq
->rx_desc_area
);
2017 dma_free_coherent(mp
->dev
->dev
.parent
, rxq
->rx_desc_area_size
,
2018 rxq
->rx_desc_area
, rxq
->rx_desc_dma
);
2023 static int txq_init(struct mv643xx_eth_private
*mp
, int index
)
2025 struct tx_queue
*txq
= mp
->txq
+ index
;
2026 struct tx_desc
*tx_desc
;
2033 txq
->tx_ring_size
= mp
->tx_ring_size
;
2035 /* A queue must always have room for at least one skb.
2036 * Therefore, stop the queue when the free entries reaches
2037 * the maximum number of descriptors per skb.
2039 txq
->tx_stop_threshold
= txq
->tx_ring_size
- MV643XX_MAX_SKB_DESCS
;
2040 txq
->tx_wake_threshold
= txq
->tx_stop_threshold
/ 2;
2042 txq
->tx_desc_count
= 0;
2043 txq
->tx_curr_desc
= 0;
2044 txq
->tx_used_desc
= 0;
2046 size
= txq
->tx_ring_size
* sizeof(struct tx_desc
);
2048 if (index
== 0 && size
<= mp
->tx_desc_sram_size
) {
2049 txq
->tx_desc_area
= ioremap(mp
->tx_desc_sram_addr
,
2050 mp
->tx_desc_sram_size
);
2051 txq
->tx_desc_dma
= mp
->tx_desc_sram_addr
;
2053 txq
->tx_desc_area
= dma_alloc_coherent(mp
->dev
->dev
.parent
,
2054 size
, &txq
->tx_desc_dma
,
2058 if (txq
->tx_desc_area
== NULL
) {
2060 "can't allocate tx ring (%d bytes)\n", size
);
2063 memset(txq
->tx_desc_area
, 0, size
);
2065 txq
->tx_desc_area_size
= size
;
2067 tx_desc
= txq
->tx_desc_area
;
2068 for (i
= 0; i
< txq
->tx_ring_size
; i
++) {
2069 struct tx_desc
*txd
= tx_desc
+ i
;
2073 if (nexti
== txq
->tx_ring_size
)
2077 txd
->next_desc_ptr
= txq
->tx_desc_dma
+
2078 nexti
* sizeof(struct tx_desc
);
2081 txq
->tx_desc_mapping
= kcalloc(txq
->tx_ring_size
, sizeof(char),
2083 if (!txq
->tx_desc_mapping
) {
2085 goto err_free_desc_area
;
2088 /* Allocate DMA buffers for TSO MAC/IP/TCP headers */
2089 txq
->tso_hdrs
= dma_alloc_coherent(mp
->dev
->dev
.parent
,
2090 txq
->tx_ring_size
* TSO_HEADER_SIZE
,
2091 &txq
->tso_hdrs_dma
, GFP_KERNEL
);
2092 if (txq
->tso_hdrs
== NULL
) {
2094 goto err_free_desc_mapping
;
2096 skb_queue_head_init(&txq
->tx_skb
);
2100 err_free_desc_mapping
:
2101 kfree(txq
->tx_desc_mapping
);
2103 if (index
== 0 && size
<= mp
->tx_desc_sram_size
)
2104 iounmap(txq
->tx_desc_area
);
2106 dma_free_coherent(mp
->dev
->dev
.parent
, txq
->tx_desc_area_size
,
2107 txq
->tx_desc_area
, txq
->tx_desc_dma
);
2111 static void txq_deinit(struct tx_queue
*txq
)
2113 struct mv643xx_eth_private
*mp
= txq_to_mp(txq
);
2116 txq_reclaim(txq
, txq
->tx_ring_size
, 1);
2118 BUG_ON(txq
->tx_used_desc
!= txq
->tx_curr_desc
);
2120 if (txq
->index
== 0 &&
2121 txq
->tx_desc_area_size
<= mp
->tx_desc_sram_size
)
2122 iounmap(txq
->tx_desc_area
);
2124 dma_free_coherent(mp
->dev
->dev
.parent
, txq
->tx_desc_area_size
,
2125 txq
->tx_desc_area
, txq
->tx_desc_dma
);
2126 kfree(txq
->tx_desc_mapping
);
2129 dma_free_coherent(mp
->dev
->dev
.parent
,
2130 txq
->tx_ring_size
* TSO_HEADER_SIZE
,
2131 txq
->tso_hdrs
, txq
->tso_hdrs_dma
);
2135 /* netdev ops and related ***************************************************/
2136 static int mv643xx_eth_collect_events(struct mv643xx_eth_private
*mp
)
2141 int_cause
= rdlp(mp
, INT_CAUSE
) & mp
->int_mask
;
2146 if (int_cause
& INT_EXT
) {
2147 int_cause
&= ~INT_EXT
;
2148 int_cause_ext
= rdlp(mp
, INT_CAUSE_EXT
);
2152 wrlp(mp
, INT_CAUSE
, ~int_cause
);
2153 mp
->work_tx_end
|= ((int_cause
& INT_TX_END
) >> 19) &
2154 ~(rdlp(mp
, TXQ_COMMAND
) & 0xff);
2155 mp
->work_rx
|= (int_cause
& INT_RX
) >> 2;
2158 int_cause_ext
&= INT_EXT_LINK_PHY
| INT_EXT_TX
;
2159 if (int_cause_ext
) {
2160 wrlp(mp
, INT_CAUSE_EXT
, ~int_cause_ext
);
2161 if (int_cause_ext
& INT_EXT_LINK_PHY
)
2163 mp
->work_tx
|= int_cause_ext
& INT_EXT_TX
;
2169 static irqreturn_t
mv643xx_eth_irq(int irq
, void *dev_id
)
2171 struct net_device
*dev
= (struct net_device
*)dev_id
;
2172 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
2174 if (unlikely(!mv643xx_eth_collect_events(mp
)))
2177 wrlp(mp
, INT_MASK
, 0);
2178 napi_schedule(&mp
->napi
);
2183 static void handle_link_event(struct mv643xx_eth_private
*mp
)
2185 struct net_device
*dev
= mp
->dev
;
2191 port_status
= rdlp(mp
, PORT_STATUS
);
2192 if (!(port_status
& LINK_UP
)) {
2193 if (netif_carrier_ok(dev
)) {
2196 netdev_info(dev
, "link down\n");
2198 netif_carrier_off(dev
);
2200 for (i
= 0; i
< mp
->txq_count
; i
++) {
2201 struct tx_queue
*txq
= mp
->txq
+ i
;
2203 txq_reclaim(txq
, txq
->tx_ring_size
, 1);
2204 txq_reset_hw_ptr(txq
);
2210 switch (port_status
& PORT_SPEED_MASK
) {
2214 case PORT_SPEED_100
:
2217 case PORT_SPEED_1000
:
2224 duplex
= (port_status
& FULL_DUPLEX
) ? 1 : 0;
2225 fc
= (port_status
& FLOW_CONTROL_ENABLED
) ? 1 : 0;
2227 netdev_info(dev
, "link up, %d Mb/s, %s duplex, flow control %sabled\n",
2228 speed
, duplex
? "full" : "half", fc
? "en" : "dis");
2230 if (!netif_carrier_ok(dev
))
2231 netif_carrier_on(dev
);
2234 static int mv643xx_eth_poll(struct napi_struct
*napi
, int budget
)
2236 struct mv643xx_eth_private
*mp
;
2239 mp
= container_of(napi
, struct mv643xx_eth_private
, napi
);
2241 if (unlikely(mp
->oom
)) {
2243 del_timer(&mp
->rx_oom
);
2247 while (work_done
< budget
) {
2252 if (mp
->work_link
) {
2254 handle_link_event(mp
);
2259 queue_mask
= mp
->work_tx
| mp
->work_tx_end
| mp
->work_rx
;
2260 if (likely(!mp
->oom
))
2261 queue_mask
|= mp
->work_rx_refill
;
2264 if (mv643xx_eth_collect_events(mp
))
2269 queue
= fls(queue_mask
) - 1;
2270 queue_mask
= 1 << queue
;
2272 work_tbd
= budget
- work_done
;
2276 if (mp
->work_tx_end
& queue_mask
) {
2277 txq_kick(mp
->txq
+ queue
);
2278 } else if (mp
->work_tx
& queue_mask
) {
2279 work_done
+= txq_reclaim(mp
->txq
+ queue
, work_tbd
, 0);
2280 txq_maybe_wake(mp
->txq
+ queue
);
2281 } else if (mp
->work_rx
& queue_mask
) {
2282 work_done
+= rxq_process(mp
->rxq
+ queue
, work_tbd
);
2283 } else if (!mp
->oom
&& (mp
->work_rx_refill
& queue_mask
)) {
2284 work_done
+= rxq_refill(mp
->rxq
+ queue
, work_tbd
);
2290 if (work_done
< budget
) {
2292 mod_timer(&mp
->rx_oom
, jiffies
+ (HZ
/ 10));
2293 napi_complete_done(napi
, work_done
);
2294 wrlp(mp
, INT_MASK
, mp
->int_mask
);
2300 static inline void oom_timer_wrapper(struct timer_list
*t
)
2302 struct mv643xx_eth_private
*mp
= from_timer(mp
, t
, rx_oom
);
2304 napi_schedule(&mp
->napi
);
2307 static void port_start(struct mv643xx_eth_private
*mp
)
2309 struct net_device
*dev
= mp
->dev
;
2314 * Perform PHY reset, if there is a PHY.
2317 struct ethtool_link_ksettings cmd
;
2319 mv643xx_eth_get_link_ksettings(dev
, &cmd
);
2320 phy_init_hw(dev
->phydev
);
2321 mv643xx_eth_set_link_ksettings(
2322 dev
, (const struct ethtool_link_ksettings
*)&cmd
);
2323 phy_start(dev
->phydev
);
2327 * Configure basic link parameters.
2329 pscr
= rdlp(mp
, PORT_SERIAL_CONTROL
);
2331 pscr
|= SERIAL_PORT_ENABLE
;
2332 wrlp(mp
, PORT_SERIAL_CONTROL
, pscr
);
2334 pscr
|= DO_NOT_FORCE_LINK_FAIL
;
2336 pscr
|= FORCE_LINK_PASS
;
2337 wrlp(mp
, PORT_SERIAL_CONTROL
, pscr
);
2340 * Configure TX path and queues.
2342 tx_set_rate(mp
, 1000000000, 16777216);
2343 for (i
= 0; i
< mp
->txq_count
; i
++) {
2344 struct tx_queue
*txq
= mp
->txq
+ i
;
2346 txq_reset_hw_ptr(txq
);
2347 txq_set_rate(txq
, 1000000000, 16777216);
2348 txq_set_fixed_prio_mode(txq
);
2352 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
2353 * frames to RX queue #0, and include the pseudo-header when
2354 * calculating receive checksums.
2356 mv643xx_eth_set_features(mp
->dev
, mp
->dev
->features
);
2359 * Treat BPDUs as normal multicasts, and disable partition mode.
2361 wrlp(mp
, PORT_CONFIG_EXT
, 0x00000000);
2364 * Add configured unicast addresses to address filter table.
2366 mv643xx_eth_program_unicast_filter(mp
->dev
);
2369 * Enable the receive queues.
2371 for (i
= 0; i
< mp
->rxq_count
; i
++) {
2372 struct rx_queue
*rxq
= mp
->rxq
+ i
;
2375 addr
= (u32
)rxq
->rx_desc_dma
;
2376 addr
+= rxq
->rx_curr_desc
* sizeof(struct rx_desc
);
2377 wrlp(mp
, RXQ_CURRENT_DESC_PTR(i
), addr
);
2383 static void mv643xx_eth_recalc_skb_size(struct mv643xx_eth_private
*mp
)
2388 * Reserve 2+14 bytes for an ethernet header (the hardware
2389 * automatically prepends 2 bytes of dummy data to each
2390 * received packet), 16 bytes for up to four VLAN tags, and
2391 * 4 bytes for the trailing FCS -- 36 bytes total.
2393 skb_size
= mp
->dev
->mtu
+ 36;
2396 * Make sure that the skb size is a multiple of 8 bytes, as
2397 * the lower three bits of the receive descriptor's buffer
2398 * size field are ignored by the hardware.
2400 mp
->skb_size
= (skb_size
+ 7) & ~7;
2403 * If NET_SKB_PAD is smaller than a cache line,
2404 * netdev_alloc_skb() will cause skb->data to be misaligned
2405 * to a cache line boundary. If this is the case, include
2406 * some extra space to allow re-aligning the data area.
2408 mp
->skb_size
+= SKB_DMA_REALIGN
;
2411 static int mv643xx_eth_open(struct net_device
*dev
)
2413 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
2417 wrlp(mp
, INT_CAUSE
, 0);
2418 wrlp(mp
, INT_CAUSE_EXT
, 0);
2419 rdlp(mp
, INT_CAUSE_EXT
);
2421 err
= request_irq(dev
->irq
, mv643xx_eth_irq
,
2422 IRQF_SHARED
, dev
->name
, dev
);
2424 netdev_err(dev
, "can't assign irq\n");
2428 mv643xx_eth_recalc_skb_size(mp
);
2430 napi_enable(&mp
->napi
);
2432 mp
->int_mask
= INT_EXT
;
2434 for (i
= 0; i
< mp
->rxq_count
; i
++) {
2435 err
= rxq_init(mp
, i
);
2438 rxq_deinit(mp
->rxq
+ i
);
2442 rxq_refill(mp
->rxq
+ i
, INT_MAX
);
2443 mp
->int_mask
|= INT_RX_0
<< i
;
2447 mp
->rx_oom
.expires
= jiffies
+ (HZ
/ 10);
2448 add_timer(&mp
->rx_oom
);
2451 for (i
= 0; i
< mp
->txq_count
; i
++) {
2452 err
= txq_init(mp
, i
);
2455 txq_deinit(mp
->txq
+ i
);
2458 mp
->int_mask
|= INT_TX_END_0
<< i
;
2461 add_timer(&mp
->mib_counters_timer
);
2464 wrlp(mp
, INT_MASK_EXT
, INT_EXT_LINK_PHY
| INT_EXT_TX
);
2465 wrlp(mp
, INT_MASK
, mp
->int_mask
);
2471 for (i
= 0; i
< mp
->rxq_count
; i
++)
2472 rxq_deinit(mp
->rxq
+ i
);
2474 free_irq(dev
->irq
, dev
);
2479 static void port_reset(struct mv643xx_eth_private
*mp
)
2484 for (i
= 0; i
< mp
->rxq_count
; i
++)
2485 rxq_disable(mp
->rxq
+ i
);
2486 for (i
= 0; i
< mp
->txq_count
; i
++)
2487 txq_disable(mp
->txq
+ i
);
2490 u32 ps
= rdlp(mp
, PORT_STATUS
);
2492 if ((ps
& (TX_IN_PROGRESS
| TX_FIFO_EMPTY
)) == TX_FIFO_EMPTY
)
2497 /* Reset the Enable bit in the Configuration Register */
2498 data
= rdlp(mp
, PORT_SERIAL_CONTROL
);
2499 data
&= ~(SERIAL_PORT_ENABLE
|
2500 DO_NOT_FORCE_LINK_FAIL
|
2502 wrlp(mp
, PORT_SERIAL_CONTROL
, data
);
2505 static int mv643xx_eth_stop(struct net_device
*dev
)
2507 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
2510 wrlp(mp
, INT_MASK_EXT
, 0x00000000);
2511 wrlp(mp
, INT_MASK
, 0x00000000);
2514 napi_disable(&mp
->napi
);
2516 del_timer_sync(&mp
->rx_oom
);
2518 netif_carrier_off(dev
);
2520 phy_stop(dev
->phydev
);
2521 free_irq(dev
->irq
, dev
);
2524 mv643xx_eth_get_stats(dev
);
2525 mib_counters_update(mp
);
2526 del_timer_sync(&mp
->mib_counters_timer
);
2528 for (i
= 0; i
< mp
->rxq_count
; i
++)
2529 rxq_deinit(mp
->rxq
+ i
);
2530 for (i
= 0; i
< mp
->txq_count
; i
++)
2531 txq_deinit(mp
->txq
+ i
);
2536 static int mv643xx_eth_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
2543 ret
= phy_mii_ioctl(dev
->phydev
, ifr
, cmd
);
2545 mv643xx_eth_adjust_link(dev
);
2549 static int mv643xx_eth_change_mtu(struct net_device
*dev
, int new_mtu
)
2551 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
2554 mv643xx_eth_recalc_skb_size(mp
);
2555 tx_set_rate(mp
, 1000000000, 16777216);
2557 if (!netif_running(dev
))
2561 * Stop and then re-open the interface. This will allocate RX
2562 * skbs of the new MTU.
2563 * There is a possible danger that the open will not succeed,
2564 * due to memory being full.
2566 mv643xx_eth_stop(dev
);
2567 if (mv643xx_eth_open(dev
)) {
2569 "fatal error on re-opening device after MTU change\n");
2575 static void tx_timeout_task(struct work_struct
*ugly
)
2577 struct mv643xx_eth_private
*mp
;
2579 mp
= container_of(ugly
, struct mv643xx_eth_private
, tx_timeout_task
);
2580 if (netif_running(mp
->dev
)) {
2581 netif_tx_stop_all_queues(mp
->dev
);
2584 netif_tx_wake_all_queues(mp
->dev
);
2588 static void mv643xx_eth_tx_timeout(struct net_device
*dev
, unsigned int txqueue
)
2590 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
2592 netdev_info(dev
, "tx timeout\n");
2594 schedule_work(&mp
->tx_timeout_task
);
2597 #ifdef CONFIG_NET_POLL_CONTROLLER
2598 static void mv643xx_eth_netpoll(struct net_device
*dev
)
2600 struct mv643xx_eth_private
*mp
= netdev_priv(dev
);
2602 wrlp(mp
, INT_MASK
, 0x00000000);
2605 mv643xx_eth_irq(dev
->irq
, dev
);
2607 wrlp(mp
, INT_MASK
, mp
->int_mask
);
2612 /* platform glue ************************************************************/
2614 mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private
*msp
,
2615 const struct mbus_dram_target_info
*dram
)
2617 void __iomem
*base
= msp
->base
;
2622 for (i
= 0; i
< 6; i
++) {
2623 writel(0, base
+ WINDOW_BASE(i
));
2624 writel(0, base
+ WINDOW_SIZE(i
));
2626 writel(0, base
+ WINDOW_REMAP_HIGH(i
));
2632 for (i
= 0; i
< dram
->num_cs
; i
++) {
2633 const struct mbus_dram_window
*cs
= dram
->cs
+ i
;
2635 writel((cs
->base
& 0xffff0000) |
2636 (cs
->mbus_attr
<< 8) |
2637 dram
->mbus_dram_target_id
, base
+ WINDOW_BASE(i
));
2638 writel((cs
->size
- 1) & 0xffff0000, base
+ WINDOW_SIZE(i
));
2640 win_enable
&= ~(1 << i
);
2641 win_protect
|= 3 << (2 * i
);
2644 writel(win_enable
, base
+ WINDOW_BAR_ENABLE
);
2645 msp
->win_protect
= win_protect
;
2648 static void infer_hw_params(struct mv643xx_eth_shared_private
*msp
)
2651 * Check whether we have a 14-bit coal limit field in bits
2652 * [21:8], or a 16-bit coal limit in bits [25,21:7] of the
2653 * SDMA config register.
2655 writel(0x02000000, msp
->base
+ 0x0400 + SDMA_CONFIG
);
2656 if (readl(msp
->base
+ 0x0400 + SDMA_CONFIG
) & 0x02000000)
2657 msp
->extended_rx_coal_limit
= 1;
2659 msp
->extended_rx_coal_limit
= 0;
2662 * Check whether the MAC supports TX rate control, and if
2663 * yes, whether its associated registers are in the old or
2666 writel(1, msp
->base
+ 0x0400 + TX_BW_MTU_MOVED
);
2667 if (readl(msp
->base
+ 0x0400 + TX_BW_MTU_MOVED
) & 1) {
2668 msp
->tx_bw_control
= TX_BW_CONTROL_NEW_LAYOUT
;
2670 writel(7, msp
->base
+ 0x0400 + TX_BW_RATE
);
2671 if (readl(msp
->base
+ 0x0400 + TX_BW_RATE
) & 7)
2672 msp
->tx_bw_control
= TX_BW_CONTROL_OLD_LAYOUT
;
2674 msp
->tx_bw_control
= TX_BW_CONTROL_ABSENT
;
2678 #if defined(CONFIG_OF)
2679 static const struct of_device_id mv643xx_eth_shared_ids
[] = {
2680 { .compatible
= "marvell,orion-eth", },
2681 { .compatible
= "marvell,kirkwood-eth", },
2684 MODULE_DEVICE_TABLE(of
, mv643xx_eth_shared_ids
);
2687 #if defined(CONFIG_OF_IRQ) && !defined(CONFIG_MV64X60)
2688 #define mv643xx_eth_property(_np, _name, _v) \
2691 if (!of_property_read_u32(_np, "marvell," _name, &tmp)) \
2695 static struct platform_device
*port_platdev
[3];
2697 static int mv643xx_eth_shared_of_add_port(struct platform_device
*pdev
,
2698 struct device_node
*pnp
)
2700 struct platform_device
*ppdev
;
2701 struct mv643xx_eth_platform_data ppd
;
2702 struct resource res
;
2703 const char *mac_addr
;
2707 memset(&ppd
, 0, sizeof(ppd
));
2710 memset(&res
, 0, sizeof(res
));
2711 if (of_irq_to_resource(pnp
, 0, &res
) <= 0) {
2712 dev_err(&pdev
->dev
, "missing interrupt on %pOFn\n", pnp
);
2716 if (of_property_read_u32(pnp
, "reg", &ppd
.port_number
)) {
2717 dev_err(&pdev
->dev
, "missing reg property on %pOFn\n", pnp
);
2721 if (ppd
.port_number
>= 3) {
2722 dev_err(&pdev
->dev
, "invalid reg property on %pOFn\n", pnp
);
2726 while (dev_num
< 3 && port_platdev
[dev_num
])
2730 dev_err(&pdev
->dev
, "too many ports registered\n");
2734 mac_addr
= of_get_mac_address(pnp
);
2735 if (!IS_ERR(mac_addr
))
2736 ether_addr_copy(ppd
.mac_addr
, mac_addr
);
2738 mv643xx_eth_property(pnp
, "tx-queue-size", ppd
.tx_queue_size
);
2739 mv643xx_eth_property(pnp
, "tx-sram-addr", ppd
.tx_sram_addr
);
2740 mv643xx_eth_property(pnp
, "tx-sram-size", ppd
.tx_sram_size
);
2741 mv643xx_eth_property(pnp
, "rx-queue-size", ppd
.rx_queue_size
);
2742 mv643xx_eth_property(pnp
, "rx-sram-addr", ppd
.rx_sram_addr
);
2743 mv643xx_eth_property(pnp
, "rx-sram-size", ppd
.rx_sram_size
);
2745 ppd
.phy_node
= of_parse_phandle(pnp
, "phy-handle", 0);
2746 if (!ppd
.phy_node
) {
2747 ppd
.phy_addr
= MV643XX_ETH_PHY_NONE
;
2748 of_property_read_u32(pnp
, "speed", &ppd
.speed
);
2749 of_property_read_u32(pnp
, "duplex", &ppd
.duplex
);
2752 ppdev
= platform_device_alloc(MV643XX_ETH_NAME
, dev_num
);
2755 ppdev
->dev
.coherent_dma_mask
= DMA_BIT_MASK(32);
2756 ppdev
->dev
.of_node
= pnp
;
2758 ret
= platform_device_add_resources(ppdev
, &res
, 1);
2762 ret
= platform_device_add_data(ppdev
, &ppd
, sizeof(ppd
));
2766 ret
= platform_device_add(ppdev
);
2770 port_platdev
[dev_num
] = ppdev
;
2775 platform_device_put(ppdev
);
2779 static int mv643xx_eth_shared_of_probe(struct platform_device
*pdev
)
2781 struct mv643xx_eth_shared_platform_data
*pd
;
2782 struct device_node
*pnp
, *np
= pdev
->dev
.of_node
;
2785 /* bail out if not registered from DT */
2789 pd
= devm_kzalloc(&pdev
->dev
, sizeof(*pd
), GFP_KERNEL
);
2792 pdev
->dev
.platform_data
= pd
;
2794 mv643xx_eth_property(np
, "tx-checksum-limit", pd
->tx_csum_limit
);
2796 for_each_available_child_of_node(np
, pnp
) {
2797 ret
= mv643xx_eth_shared_of_add_port(pdev
, pnp
);
2806 static void mv643xx_eth_shared_of_remove(void)
2810 for (n
= 0; n
< 3; n
++) {
2811 platform_device_del(port_platdev
[n
]);
2812 port_platdev
[n
] = NULL
;
2816 static inline int mv643xx_eth_shared_of_probe(struct platform_device
*pdev
)
2821 static inline void mv643xx_eth_shared_of_remove(void)
2826 static int mv643xx_eth_shared_probe(struct platform_device
*pdev
)
2828 static int mv643xx_eth_version_printed
;
2829 struct mv643xx_eth_shared_platform_data
*pd
;
2830 struct mv643xx_eth_shared_private
*msp
;
2831 const struct mbus_dram_target_info
*dram
;
2832 struct resource
*res
;
2835 if (!mv643xx_eth_version_printed
++)
2836 pr_notice("MV-643xx 10/100/1000 ethernet driver version %s\n",
2837 mv643xx_eth_driver_version
);
2839 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2843 msp
= devm_kzalloc(&pdev
->dev
, sizeof(*msp
), GFP_KERNEL
);
2846 platform_set_drvdata(pdev
, msp
);
2848 msp
->base
= devm_ioremap(&pdev
->dev
, res
->start
, resource_size(res
));
2849 if (msp
->base
== NULL
)
2852 msp
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
2853 if (!IS_ERR(msp
->clk
))
2854 clk_prepare_enable(msp
->clk
);
2857 * (Re-)program MBUS remapping windows if we are asked to.
2859 dram
= mv_mbus_dram_info();
2861 mv643xx_eth_conf_mbus_windows(msp
, dram
);
2863 ret
= mv643xx_eth_shared_of_probe(pdev
);
2866 pd
= dev_get_platdata(&pdev
->dev
);
2868 msp
->tx_csum_limit
= (pd
!= NULL
&& pd
->tx_csum_limit
) ?
2869 pd
->tx_csum_limit
: 9 * 1024;
2870 infer_hw_params(msp
);
2875 if (!IS_ERR(msp
->clk
))
2876 clk_disable_unprepare(msp
->clk
);
2880 static int mv643xx_eth_shared_remove(struct platform_device
*pdev
)
2882 struct mv643xx_eth_shared_private
*msp
= platform_get_drvdata(pdev
);
2884 mv643xx_eth_shared_of_remove();
2885 if (!IS_ERR(msp
->clk
))
2886 clk_disable_unprepare(msp
->clk
);
2890 static struct platform_driver mv643xx_eth_shared_driver
= {
2891 .probe
= mv643xx_eth_shared_probe
,
2892 .remove
= mv643xx_eth_shared_remove
,
2894 .name
= MV643XX_ETH_SHARED_NAME
,
2895 .of_match_table
= of_match_ptr(mv643xx_eth_shared_ids
),
2899 static void phy_addr_set(struct mv643xx_eth_private
*mp
, int phy_addr
)
2901 int addr_shift
= 5 * mp
->port_num
;
2904 data
= rdl(mp
, PHY_ADDR
);
2905 data
&= ~(0x1f << addr_shift
);
2906 data
|= (phy_addr
& 0x1f) << addr_shift
;
2907 wrl(mp
, PHY_ADDR
, data
);
2910 static int phy_addr_get(struct mv643xx_eth_private
*mp
)
2914 data
= rdl(mp
, PHY_ADDR
);
2916 return (data
>> (5 * mp
->port_num
)) & 0x1f;
2919 static void set_params(struct mv643xx_eth_private
*mp
,
2920 struct mv643xx_eth_platform_data
*pd
)
2922 struct net_device
*dev
= mp
->dev
;
2923 unsigned int tx_ring_size
;
2925 if (is_valid_ether_addr(pd
->mac_addr
))
2926 memcpy(dev
->dev_addr
, pd
->mac_addr
, ETH_ALEN
);
2928 uc_addr_get(mp
, dev
->dev_addr
);
2930 mp
->rx_ring_size
= DEFAULT_RX_QUEUE_SIZE
;
2931 if (pd
->rx_queue_size
)
2932 mp
->rx_ring_size
= pd
->rx_queue_size
;
2933 mp
->rx_desc_sram_addr
= pd
->rx_sram_addr
;
2934 mp
->rx_desc_sram_size
= pd
->rx_sram_size
;
2936 mp
->rxq_count
= pd
->rx_queue_count
? : 1;
2938 tx_ring_size
= DEFAULT_TX_QUEUE_SIZE
;
2939 if (pd
->tx_queue_size
)
2940 tx_ring_size
= pd
->tx_queue_size
;
2942 mp
->tx_ring_size
= clamp_t(unsigned int, tx_ring_size
,
2943 MV643XX_MAX_SKB_DESCS
* 2, 4096);
2944 if (mp
->tx_ring_size
!= tx_ring_size
)
2945 netdev_warn(dev
, "TX queue size set to %u (requested %u)\n",
2946 mp
->tx_ring_size
, tx_ring_size
);
2948 mp
->tx_desc_sram_addr
= pd
->tx_sram_addr
;
2949 mp
->tx_desc_sram_size
= pd
->tx_sram_size
;
2951 mp
->txq_count
= pd
->tx_queue_count
? : 1;
2954 static int get_phy_mode(struct mv643xx_eth_private
*mp
)
2956 struct device
*dev
= mp
->dev
->dev
.parent
;
2957 phy_interface_t iface
;
2961 err
= of_get_phy_mode(dev
->of_node
, &iface
);
2963 /* Historical default if unspecified. We could also read/write
2964 * the interface state in the PSC1
2966 if (!dev
->of_node
|| err
)
2967 iface
= PHY_INTERFACE_MODE_GMII
;
2971 static struct phy_device
*phy_scan(struct mv643xx_eth_private
*mp
,
2974 struct phy_device
*phydev
;
2978 char phy_id
[MII_BUS_ID_SIZE
+ 3];
2980 if (phy_addr
== MV643XX_ETH_PHY_ADDR_DEFAULT
) {
2981 start
= phy_addr_get(mp
) & 0x1f;
2984 start
= phy_addr
& 0x1f;
2988 /* Attempt to connect to the PHY using orion-mdio */
2989 phydev
= ERR_PTR(-ENODEV
);
2990 for (i
= 0; i
< num
; i
++) {
2991 int addr
= (start
+ i
) & 0x1f;
2993 snprintf(phy_id
, sizeof(phy_id
), PHY_ID_FMT
,
2994 "orion-mdio-mii", addr
);
2996 phydev
= phy_connect(mp
->dev
, phy_id
, mv643xx_eth_adjust_link
,
2998 if (!IS_ERR(phydev
)) {
2999 phy_addr_set(mp
, addr
);
3007 static void phy_init(struct mv643xx_eth_private
*mp
, int speed
, int duplex
)
3009 struct net_device
*dev
= mp
->dev
;
3010 struct phy_device
*phy
= dev
->phydev
;
3013 phy
->autoneg
= AUTONEG_ENABLE
;
3016 linkmode_copy(phy
->advertising
, phy
->supported
);
3017 linkmode_set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT
,
3020 phy
->autoneg
= AUTONEG_DISABLE
;
3021 linkmode_zero(phy
->advertising
);
3023 phy
->duplex
= duplex
;
3025 phy_start_aneg(phy
);
3028 static void init_pscr(struct mv643xx_eth_private
*mp
, int speed
, int duplex
)
3030 struct net_device
*dev
= mp
->dev
;
3033 pscr
= rdlp(mp
, PORT_SERIAL_CONTROL
);
3034 if (pscr
& SERIAL_PORT_ENABLE
) {
3035 pscr
&= ~SERIAL_PORT_ENABLE
;
3036 wrlp(mp
, PORT_SERIAL_CONTROL
, pscr
);
3039 pscr
= MAX_RX_PACKET_9700BYTE
| SERIAL_PORT_CONTROL_RESERVED
;
3041 pscr
|= DISABLE_AUTO_NEG_SPEED_GMII
;
3042 if (speed
== SPEED_1000
)
3043 pscr
|= SET_GMII_SPEED_TO_1000
;
3044 else if (speed
== SPEED_100
)
3045 pscr
|= SET_MII_SPEED_TO_100
;
3047 pscr
|= DISABLE_AUTO_NEG_FOR_FLOW_CTRL
;
3049 pscr
|= DISABLE_AUTO_NEG_FOR_DUPLEX
;
3050 if (duplex
== DUPLEX_FULL
)
3051 pscr
|= SET_FULL_DUPLEX_MODE
;
3054 wrlp(mp
, PORT_SERIAL_CONTROL
, pscr
);
3057 static const struct net_device_ops mv643xx_eth_netdev_ops
= {
3058 .ndo_open
= mv643xx_eth_open
,
3059 .ndo_stop
= mv643xx_eth_stop
,
3060 .ndo_start_xmit
= mv643xx_eth_xmit
,
3061 .ndo_set_rx_mode
= mv643xx_eth_set_rx_mode
,
3062 .ndo_set_mac_address
= mv643xx_eth_set_mac_address
,
3063 .ndo_validate_addr
= eth_validate_addr
,
3064 .ndo_do_ioctl
= mv643xx_eth_ioctl
,
3065 .ndo_change_mtu
= mv643xx_eth_change_mtu
,
3066 .ndo_set_features
= mv643xx_eth_set_features
,
3067 .ndo_tx_timeout
= mv643xx_eth_tx_timeout
,
3068 .ndo_get_stats
= mv643xx_eth_get_stats
,
3069 #ifdef CONFIG_NET_POLL_CONTROLLER
3070 .ndo_poll_controller
= mv643xx_eth_netpoll
,
3074 static int mv643xx_eth_probe(struct platform_device
*pdev
)
3076 struct mv643xx_eth_platform_data
*pd
;
3077 struct mv643xx_eth_private
*mp
;
3078 struct net_device
*dev
;
3079 struct phy_device
*phydev
= NULL
;
3080 struct resource
*res
;
3083 pd
= dev_get_platdata(&pdev
->dev
);
3085 dev_err(&pdev
->dev
, "no mv643xx_eth_platform_data\n");
3089 if (pd
->shared
== NULL
) {
3090 dev_err(&pdev
->dev
, "no mv643xx_eth_platform_data->shared\n");
3094 dev
= alloc_etherdev_mq(sizeof(struct mv643xx_eth_private
), 8);
3098 SET_NETDEV_DEV(dev
, &pdev
->dev
);
3099 mp
= netdev_priv(dev
);
3100 platform_set_drvdata(pdev
, mp
);
3102 mp
->shared
= platform_get_drvdata(pd
->shared
);
3103 mp
->base
= mp
->shared
->base
+ 0x0400 + (pd
->port_number
<< 10);
3104 mp
->port_num
= pd
->port_number
;
3108 /* Kirkwood resets some registers on gated clocks. Especially
3109 * CLK125_BYPASS_EN must be cleared but is not available on
3110 * all other SoCs/System Controllers using this driver.
3112 if (of_device_is_compatible(pdev
->dev
.of_node
,
3113 "marvell,kirkwood-eth-port"))
3114 wrlp(mp
, PORT_SERIAL_CONTROL1
,
3115 rdlp(mp
, PORT_SERIAL_CONTROL1
) & ~CLK125_BYPASS_EN
);
3118 * Start with a default rate, and if there is a clock, allow
3119 * it to override the default.
3121 mp
->t_clk
= 133000000;
3122 mp
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
3123 if (!IS_ERR(mp
->clk
)) {
3124 clk_prepare_enable(mp
->clk
);
3125 mp
->t_clk
= clk_get_rate(mp
->clk
);
3126 } else if (!IS_ERR(mp
->shared
->clk
)) {
3127 mp
->t_clk
= clk_get_rate(mp
->shared
->clk
);
3131 netif_set_real_num_tx_queues(dev
, mp
->txq_count
);
3132 netif_set_real_num_rx_queues(dev
, mp
->rxq_count
);
3136 phydev
= of_phy_connect(mp
->dev
, pd
->phy_node
,
3137 mv643xx_eth_adjust_link
, 0,
3142 phy_addr_set(mp
, phydev
->mdio
.addr
);
3143 } else if (pd
->phy_addr
!= MV643XX_ETH_PHY_NONE
) {
3144 phydev
= phy_scan(mp
, pd
->phy_addr
);
3147 err
= PTR_ERR(phydev
);
3149 phy_init(mp
, pd
->speed
, pd
->duplex
);
3151 if (err
== -ENODEV
) {
3152 err
= -EPROBE_DEFER
;
3158 dev
->ethtool_ops
= &mv643xx_eth_ethtool_ops
;
3160 init_pscr(mp
, pd
->speed
, pd
->duplex
);
3163 mib_counters_clear(mp
);
3165 timer_setup(&mp
->mib_counters_timer
, mib_counters_timer_wrapper
, 0);
3166 mp
->mib_counters_timer
.expires
= jiffies
+ 30 * HZ
;
3168 spin_lock_init(&mp
->mib_counters_lock
);
3170 INIT_WORK(&mp
->tx_timeout_task
, tx_timeout_task
);
3172 netif_napi_add(dev
, &mp
->napi
, mv643xx_eth_poll
, NAPI_POLL_WEIGHT
);
3174 timer_setup(&mp
->rx_oom
, oom_timer_wrapper
, 0);
3177 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
3179 dev
->irq
= res
->start
;
3181 dev
->netdev_ops
= &mv643xx_eth_netdev_ops
;
3183 dev
->watchdog_timeo
= 2 * HZ
;
3186 dev
->features
= NETIF_F_SG
| NETIF_F_IP_CSUM
| NETIF_F_TSO
;
3187 dev
->vlan_features
= dev
->features
;
3189 dev
->features
|= NETIF_F_RXCSUM
;
3190 dev
->hw_features
= dev
->features
;
3192 dev
->priv_flags
|= IFF_UNICAST_FLT
;
3193 dev
->gso_max_segs
= MV643XX_MAX_TSO_SEGS
;
3195 /* MTU range: 64 - 9500 */
3197 dev
->max_mtu
= 9500;
3199 if (mp
->shared
->win_protect
)
3200 wrl(mp
, WINDOW_PROTECT(mp
->port_num
), mp
->shared
->win_protect
);
3202 netif_carrier_off(dev
);
3204 wrlp(mp
, SDMA_CONFIG
, PORT_SDMA_CONFIG_DEFAULT_VALUE
);
3206 set_rx_coal(mp
, 250);
3209 err
= register_netdev(dev
);
3213 netdev_notice(dev
, "port %d with MAC address %pM\n",
3214 mp
->port_num
, dev
->dev_addr
);
3216 if (mp
->tx_desc_sram_size
> 0)
3217 netdev_notice(dev
, "configured with sram\n");
3222 if (!IS_ERR(mp
->clk
))
3223 clk_disable_unprepare(mp
->clk
);
3229 static int mv643xx_eth_remove(struct platform_device
*pdev
)
3231 struct mv643xx_eth_private
*mp
= platform_get_drvdata(pdev
);
3232 struct net_device
*dev
= mp
->dev
;
3234 unregister_netdev(mp
->dev
);
3236 phy_disconnect(dev
->phydev
);
3237 cancel_work_sync(&mp
->tx_timeout_task
);
3239 if (!IS_ERR(mp
->clk
))
3240 clk_disable_unprepare(mp
->clk
);
3242 free_netdev(mp
->dev
);
3247 static void mv643xx_eth_shutdown(struct platform_device
*pdev
)
3249 struct mv643xx_eth_private
*mp
= platform_get_drvdata(pdev
);
3251 /* Mask all interrupts on ethernet port */
3252 wrlp(mp
, INT_MASK
, 0);
3255 if (netif_running(mp
->dev
))
3259 static struct platform_driver mv643xx_eth_driver
= {
3260 .probe
= mv643xx_eth_probe
,
3261 .remove
= mv643xx_eth_remove
,
3262 .shutdown
= mv643xx_eth_shutdown
,
3264 .name
= MV643XX_ETH_NAME
,
3268 static struct platform_driver
* const drivers
[] = {
3269 &mv643xx_eth_shared_driver
,
3270 &mv643xx_eth_driver
,
3273 static int __init
mv643xx_eth_init_module(void)
3275 return platform_register_drivers(drivers
, ARRAY_SIZE(drivers
));
3277 module_init(mv643xx_eth_init_module
);
3279 static void __exit
mv643xx_eth_cleanup_module(void)
3281 platform_unregister_drivers(drivers
, ARRAY_SIZE(drivers
));
3283 module_exit(mv643xx_eth_cleanup_module
);
3285 MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, "
3286 "Manish Lachwani, Dale Farnsworth and Lennert Buytenhek");
3287 MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
3288 MODULE_LICENSE("GPL");
3289 MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME
);
3290 MODULE_ALIAS("platform:" MV643XX_ETH_NAME
);