blob: 6118ea799a6550c74f8c29a09c1a0bb78666c533 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/net/mv643xx_eth.c - Driver for MV643XX ethernet ports
3 * Copyright (C) 2002 Matthew Dharm <mdharm@momenco.com>
4 *
5 * Based on the 64360 driver from:
6 * Copyright (C) 2002 rabeeh@galileo.co.il
7 *
8 * Copyright (C) 2003 PMC-Sierra, Inc.,
Olaf Hering3bb8a18a2006-01-05 22:45:45 -08009 * written by Manish Lachwani
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org>
12 *
13 * Copyright (C) 2004-2005 MontaVista Software, Inc.
14 * Dale Farnsworth <dale@farnsworth.org>
15 *
16 * Copyright (C) 2004 Steven J. Hill <sjhill1@rockwellcollins.com>
17 * <sjhill@realitydiluted.com>
18 *
19 * This program is free software; you can redistribute it and/or
20 * modify it under the terms of the GNU General Public License
21 * as published by the Free Software Foundation; either version 2
22 * of the License, or (at your option) any later version.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32 */
33#include <linux/init.h>
34#include <linux/dma-mapping.h>
35#include <linux/tcp.h>
36#include <linux/udp.h>
37#include <linux/etherdevice.h>
Olaf Hering78a5e532006-01-16 16:47:00 -070038#include <linux/in.h>
39#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <linux/bitops.h>
42#include <linux/delay.h>
43#include <linux/ethtool.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010044#include <linux/platform_device.h>
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/io.h>
47#include <asm/types.h>
48#include <asm/pgtable.h>
49#include <asm/system.h>
50#include <asm/delay.h>
51#include "mv643xx_eth.h"
52
53/*
54 * The first part is the high level driver of the gigE ethernet ports.
55 */
56
57/* Constants */
58#define VLAN_HLEN 4
59#define FCS_LEN 4
Dale Farnsworthb44cd572006-01-16 16:51:22 -070060#define DMA_ALIGN 8 /* hw requires 8-byte alignment */
61#define HW_IP_ALIGN 2 /* hw aligns IP header */
62#define WRAP HW_IP_ALIGN + ETH_HLEN + VLAN_HLEN + FCS_LEN
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define RX_SKB_SIZE ((dev->mtu + WRAP + 7) & ~0x7)
64
65#define INT_CAUSE_UNMASK_ALL 0x0007ffff
66#define INT_CAUSE_UNMASK_ALL_EXT 0x0011ffff
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#define INT_CAUSE_MASK_ALL 0x00000000
Dale Farnsworth63c9e542005-09-02 13:49:10 -070068#define INT_CAUSE_MASK_ALL_EXT 0x00000000
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define INT_CAUSE_CHECK_BITS INT_CAUSE_UNMASK_ALL
70#define INT_CAUSE_CHECK_BITS_EXT INT_CAUSE_UNMASK_ALL_EXT
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
73#define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1)
74#else
75#define MAX_DESCS_PER_SKB 1
76#endif
77
78#define PHY_WAIT_ITERATIONS 1000 /* 1000 iterations * 10uS = 10mS max */
79#define PHY_WAIT_MICRO_SECONDS 10
80
81/* Static function declarations */
82static int eth_port_link_is_up(unsigned int eth_port_num);
83static void eth_port_uc_addr_get(struct net_device *dev,
84 unsigned char *MacAddr);
Dale Farnsworth16e03012006-01-16 16:50:02 -070085static void eth_port_set_multicast_list(struct net_device *);
Dale Farnsworthab4384a2006-01-16 16:59:21 -070086static int mv643xx_eth_open(struct net_device *);
87static int mv643xx_eth_stop(struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static int mv643xx_eth_change_mtu(struct net_device *, int);
89static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *);
90static void eth_port_init_mac_tables(unsigned int eth_port_num);
91#ifdef MV643XX_NAPI
92static int mv643xx_poll(struct net_device *dev, int *budget);
93#endif
94static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr);
95static int ethernet_phy_detect(unsigned int eth_port_num);
96static struct ethtool_ops mv643xx_ethtool_ops;
97
98static char mv643xx_driver_name[] = "mv643xx_eth";
99static char mv643xx_driver_version[] = "1.0";
100
101static void __iomem *mv643xx_eth_shared_base;
102
103/* used to protect MV643XX_ETH_SMI_REG, which is shared across ports */
Ingo Molnara9f6a0d2005-09-09 13:10:41 -0700104static DEFINE_SPINLOCK(mv643xx_eth_phy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106static inline u32 mv_read(int offset)
107{
Al Virodc074a82005-04-25 07:55:58 -0700108 void __iomem *reg_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110 reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS;
111
112 return readl(reg_base + offset);
113}
114
115static inline void mv_write(int offset, u32 data)
116{
Al Virodc074a82005-04-25 07:55:58 -0700117 void __iomem *reg_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119 reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS;
120 writel(data, reg_base + offset);
121}
122
123/*
124 * Changes MTU (maximum transfer unit) of the gigabit ethenret port
125 *
126 * Input : pointer to ethernet interface network device structure
127 * new mtu size
128 * Output : 0 upon success, -EINVAL upon failure
129 */
130static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
131{
Dale Farnsworth8f518702006-01-16 16:56:30 -0700132 if ((new_mtu > 9500) || (new_mtu < 64))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 dev->mtu = new_mtu;
136 /*
137 * Stop then re-open the interface. This will allocate RX skb's with
138 * the new MTU.
139 * There is a possible danger that the open will not successed, due
140 * to memory is full, which might fail the open function.
141 */
142 if (netif_running(dev)) {
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700143 mv643xx_eth_stop(dev);
144 if (mv643xx_eth_open(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 printk(KERN_ERR
146 "%s: Fatal error on opening device\n",
147 dev->name);
148 }
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return 0;
151}
152
153/*
154 * mv643xx_eth_rx_task
155 *
156 * Fills / refills RX queue on a certain gigabit ethernet port
157 *
158 * Input : pointer to ethernet interface network device structure
159 * Output : N/A
160 */
161static void mv643xx_eth_rx_task(void *data)
162{
163 struct net_device *dev = (struct net_device *)data;
164 struct mv643xx_private *mp = netdev_priv(dev);
165 struct pkt_info pkt_info;
166 struct sk_buff *skb;
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700167 int unaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 if (test_and_set_bit(0, &mp->rx_task_busy))
170 panic("%s: Error in test_set_bit / clear_bit", dev->name);
171
172 while (mp->rx_ring_skbs < (mp->rx_ring_size - 5)) {
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700173 skb = dev_alloc_skb(RX_SKB_SIZE + DMA_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (!skb)
175 break;
176 mp->rx_ring_skbs++;
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700177 unaligned = (u32)skb->data & (DMA_ALIGN - 1);
178 if (unaligned)
179 skb_reserve(skb, DMA_ALIGN - unaligned);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 pkt_info.cmd_sts = ETH_RX_ENABLE_INTERRUPT;
181 pkt_info.byte_cnt = RX_SKB_SIZE;
182 pkt_info.buf_ptr = dma_map_single(NULL, skb->data, RX_SKB_SIZE,
183 DMA_FROM_DEVICE);
184 pkt_info.return_info = skb;
185 if (eth_rx_return_buff(mp, &pkt_info) != ETH_OK) {
186 printk(KERN_ERR
187 "%s: Error allocating RX Ring\n", dev->name);
188 break;
189 }
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700190 skb_reserve(skb, HW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192 clear_bit(0, &mp->rx_task_busy);
193 /*
194 * If RX ring is empty of SKB, set a timer to try allocating
195 * again in a later time .
196 */
197 if ((mp->rx_ring_skbs == 0) && (mp->rx_timer_flag == 0)) {
198 printk(KERN_INFO "%s: Rx ring is empty\n", dev->name);
199 /* After 100mSec */
200 mp->timeout.expires = jiffies + (HZ / 10);
201 add_timer(&mp->timeout);
202 mp->rx_timer_flag = 1;
203 }
204#ifdef MV643XX_RX_QUEUE_FILL_ON_TASK
205 else {
206 /* Return interrupts */
207 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(mp->port_num),
208 INT_CAUSE_UNMASK_ALL);
209 }
210#endif
211}
212
213/*
214 * mv643xx_eth_rx_task_timer_wrapper
215 *
216 * Timer routine to wake up RX queue filling task. This function is
217 * used only in case the RX queue is empty, and all alloc_skb has
218 * failed (due to out of memory event).
219 *
220 * Input : pointer to ethernet interface network device structure
221 * Output : N/A
222 */
223static void mv643xx_eth_rx_task_timer_wrapper(unsigned long data)
224{
225 struct net_device *dev = (struct net_device *)data;
226 struct mv643xx_private *mp = netdev_priv(dev);
227
228 mp->rx_timer_flag = 0;
229 mv643xx_eth_rx_task((void *)data);
230}
231
232/*
233 * mv643xx_eth_update_mac_address
234 *
235 * Update the MAC address of the port in the address table
236 *
237 * Input : pointer to ethernet interface network device structure
238 * Output : N/A
239 */
240static void mv643xx_eth_update_mac_address(struct net_device *dev)
241{
242 struct mv643xx_private *mp = netdev_priv(dev);
243 unsigned int port_num = mp->port_num;
244
245 eth_port_init_mac_tables(port_num);
246 memcpy(mp->port_mac_addr, dev->dev_addr, 6);
247 eth_port_uc_addr_set(port_num, mp->port_mac_addr);
248}
249
250/*
251 * mv643xx_eth_set_rx_mode
252 *
253 * Change from promiscuos to regular rx mode
254 *
255 * Input : pointer to ethernet interface network device structure
256 * Output : N/A
257 */
258static void mv643xx_eth_set_rx_mode(struct net_device *dev)
259{
260 struct mv643xx_private *mp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 if (dev->flags & IFF_PROMISC)
Dale Farnsworth7342cd82005-09-02 12:36:48 -0700263 mp->port_config |= (u32) MV643XX_ETH_UNICAST_PROMISCUOUS_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 else
Dale Farnsworth7342cd82005-09-02 12:36:48 -0700265 mp->port_config &= ~(u32) MV643XX_ETH_UNICAST_PROMISCUOUS_MODE;
266
267 mv_write(MV643XX_ETH_PORT_CONFIG_REG(mp->port_num), mp->port_config);
Dale Farnsworth16e03012006-01-16 16:50:02 -0700268
269 eth_port_set_multicast_list(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
272/*
273 * mv643xx_eth_set_mac_address
274 *
275 * Change the interface's mac address.
276 * No special hardware thing should be done because interface is always
277 * put in promiscuous mode.
278 *
279 * Input : pointer to ethernet interface network device structure and
280 * a pointer to the designated entry to be added to the cache.
281 * Output : zero upon success, negative upon failure
282 */
283static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
284{
285 int i;
286
287 for (i = 0; i < 6; i++)
288 /* +2 is for the offset of the HW addr type */
289 dev->dev_addr[i] = ((unsigned char *)addr)[i + 2];
290 mv643xx_eth_update_mac_address(dev);
291 return 0;
292}
293
294/*
295 * mv643xx_eth_tx_timeout
296 *
297 * Called upon a timeout on transmitting a packet
298 *
299 * Input : pointer to ethernet interface network device structure.
300 * Output : N/A
301 */
302static void mv643xx_eth_tx_timeout(struct net_device *dev)
303{
304 struct mv643xx_private *mp = netdev_priv(dev);
305
306 printk(KERN_INFO "%s: TX timeout ", dev->name);
307
308 /* Do the reset outside of interrupt context */
309 schedule_work(&mp->tx_timeout_task);
310}
311
312/*
313 * mv643xx_eth_tx_timeout_task
314 *
315 * Actual routine to reset the adapter when a timeout on Tx has occurred
316 */
317static void mv643xx_eth_tx_timeout_task(struct net_device *dev)
318{
319 struct mv643xx_private *mp = netdev_priv(dev);
320
321 netif_device_detach(dev);
322 eth_port_reset(mp->port_num);
323 eth_port_start(mp);
324 netif_device_attach(dev);
325}
326
327/*
328 * mv643xx_eth_free_tx_queue
329 *
330 * Input : dev - a pointer to the required interface
331 *
332 * Output : 0 if was able to release skb , nonzero otherwise
333 */
334static int mv643xx_eth_free_tx_queue(struct net_device *dev,
335 unsigned int eth_int_cause_ext)
336{
337 struct mv643xx_private *mp = netdev_priv(dev);
338 struct net_device_stats *stats = &mp->stats;
339 struct pkt_info pkt_info;
340 int released = 1;
341
342 if (!(eth_int_cause_ext & (BIT0 | BIT8)))
343 return released;
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /* Check only queue 0 */
346 while (eth_tx_return_desc(mp, &pkt_info) == ETH_OK) {
347 if (pkt_info.cmd_sts & BIT0) {
348 printk("%s: Error in TX\n", dev->name);
349 stats->tx_errors++;
350 }
351
Paolo Galtiericb415d32006-01-16 16:48:02 -0700352 if (pkt_info.cmd_sts & ETH_TX_FIRST_DESC)
353 dma_unmap_single(NULL, pkt_info.buf_ptr,
354 pkt_info.byte_cnt,
355 DMA_TO_DEVICE);
356 else
357 dma_unmap_page(NULL, pkt_info.buf_ptr,
358 pkt_info.byte_cnt,
359 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Paolo Galtiericb415d32006-01-16 16:48:02 -0700361 if (pkt_info.return_info) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 dev_kfree_skb_irq(pkt_info.return_info);
363 released = 0;
Paolo Galtiericb415d32006-01-16 16:48:02 -0700364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return released;
368}
369
370/*
371 * mv643xx_eth_receive
372 *
373 * This function is forward packets that are received from the port's
374 * queues toward kernel core or FastRoute them to another interface.
375 *
376 * Input : dev - a pointer to the required interface
377 * max - maximum number to receive (0 means unlimted)
378 *
379 * Output : number of served packets
380 */
381#ifdef MV643XX_NAPI
382static int mv643xx_eth_receive_queue(struct net_device *dev, int budget)
383#else
384static int mv643xx_eth_receive_queue(struct net_device *dev)
385#endif
386{
387 struct mv643xx_private *mp = netdev_priv(dev);
388 struct net_device_stats *stats = &mp->stats;
389 unsigned int received_packets = 0;
390 struct sk_buff *skb;
391 struct pkt_info pkt_info;
392
393#ifdef MV643XX_NAPI
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700394 while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#else
396 while (eth_port_receive(mp, &pkt_info) == ETH_OK) {
397#endif
398 mp->rx_ring_skbs--;
399 received_packets++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* Update statistics. Note byte count includes 4 byte CRC count */
402 stats->rx_packets++;
403 stats->rx_bytes += pkt_info.byte_cnt;
404 skb = pkt_info.return_info;
405 /*
406 * In case received a packet without first / last bits on OR
407 * the error summary bit is on, the packets needs to be dropeed.
408 */
409 if (((pkt_info.cmd_sts
410 & (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) !=
411 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC))
412 || (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)) {
413 stats->rx_dropped++;
414 if ((pkt_info.cmd_sts & (ETH_RX_FIRST_DESC |
415 ETH_RX_LAST_DESC)) !=
416 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) {
417 if (net_ratelimit())
418 printk(KERN_ERR
419 "%s: Received packet spread "
420 "on multiple descriptors\n",
421 dev->name);
422 }
423 if (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)
424 stats->rx_errors++;
425
426 dev_kfree_skb_irq(skb);
427 } else {
428 /*
429 * The -4 is for the CRC in the trailer of the
430 * received packet
431 */
432 skb_put(skb, pkt_info.byte_cnt - 4);
433 skb->dev = dev;
434
435 if (pkt_info.cmd_sts & ETH_LAYER_4_CHECKSUM_OK) {
436 skb->ip_summed = CHECKSUM_UNNECESSARY;
437 skb->csum = htons(
438 (pkt_info.cmd_sts & 0x0007fff8) >> 3);
439 }
440 skb->protocol = eth_type_trans(skb, dev);
441#ifdef MV643XX_NAPI
442 netif_receive_skb(skb);
443#else
444 netif_rx(skb);
445#endif
446 }
447 }
448
449 return received_packets;
450}
451
452/*
453 * mv643xx_eth_int_handler
454 *
455 * Main interrupt handler for the gigbit ethernet ports
456 *
457 * Input : irq - irq number (not used)
458 * dev_id - a pointer to the required interface's data structure
459 * regs - not used
460 * Output : N/A
461 */
462
463static irqreturn_t mv643xx_eth_int_handler(int irq, void *dev_id,
464 struct pt_regs *regs)
465{
466 struct net_device *dev = (struct net_device *)dev_id;
467 struct mv643xx_private *mp = netdev_priv(dev);
468 u32 eth_int_cause, eth_int_cause_ext = 0;
469 unsigned int port_num = mp->port_num;
470
471 /* Read interrupt cause registers */
472 eth_int_cause = mv_read(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num)) &
473 INT_CAUSE_UNMASK_ALL;
474
475 if (eth_int_cause & BIT1)
476 eth_int_cause_ext = mv_read(
477 MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num)) &
478 INT_CAUSE_UNMASK_ALL_EXT;
479
480#ifdef MV643XX_NAPI
481 if (!(eth_int_cause & 0x0007fffd)) {
482 /* Dont ack the Rx interrupt */
483#endif
484 /*
485 * Clear specific ethernet port intrerrupt registers by
486 * acknowleding relevant bits.
487 */
488 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num),
489 ~eth_int_cause);
490 if (eth_int_cause_ext != 0x0)
491 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG
492 (port_num), ~eth_int_cause_ext);
493
494 /* UDP change : We may need this */
495 if ((eth_int_cause_ext & 0x0000ffff) &&
496 (mv643xx_eth_free_tx_queue(dev, eth_int_cause_ext) == 0) &&
497 (mp->tx_ring_size > mp->tx_ring_skbs + MAX_DESCS_PER_SKB))
498 netif_wake_queue(dev);
499#ifdef MV643XX_NAPI
500 } else {
501 if (netif_rx_schedule_prep(dev)) {
502 /* Mask all the interrupts */
503 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), 0);
504 mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG
505 (port_num), 0);
Dale Farnsworth8f518702006-01-16 16:56:30 -0700506 /* ensure previous writes have taken effect */
507 mv_read(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 __netif_rx_schedule(dev);
509 }
510#else
511 if (eth_int_cause & (BIT2 | BIT11))
512 mv643xx_eth_receive_queue(dev, 0);
513
514 /*
515 * After forwarded received packets to upper layer, add a task
516 * in an interrupts enabled context that refills the RX ring
517 * with skb's.
518 */
519#ifdef MV643XX_RX_QUEUE_FILL_ON_TASK
520 /* Unmask all interrupts on ethernet port */
521 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
522 INT_CAUSE_MASK_ALL);
Dale Farnsworth8f518702006-01-16 16:56:30 -0700523 /* wait for previous write to take effect */
524 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 queue_task(&mp->rx_task, &tq_immediate);
527 mark_bh(IMMEDIATE_BH);
528#else
529 mp->rx_task.func(dev);
530#endif
531#endif
532 }
533 /* PHY status changed */
534 if (eth_int_cause_ext & (BIT16 | BIT20)) {
535 if (eth_port_link_is_up(port_num)) {
536 netif_carrier_on(dev);
537 netif_wake_queue(dev);
538 /* Start TX queue */
539 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG
540 (port_num), 1);
541 } else {
542 netif_carrier_off(dev);
543 netif_stop_queue(dev);
544 }
545 }
546
547 /*
548 * If no real interrupt occured, exit.
549 * This can happen when using gigE interrupt coalescing mechanism.
550 */
551 if ((eth_int_cause == 0x0) && (eth_int_cause_ext == 0x0))
552 return IRQ_NONE;
553
554 return IRQ_HANDLED;
555}
556
557#ifdef MV643XX_COAL
558
559/*
560 * eth_port_set_rx_coal - Sets coalescing interrupt mechanism on RX path
561 *
562 * DESCRIPTION:
563 * This routine sets the RX coalescing interrupt mechanism parameter.
564 * This parameter is a timeout counter, that counts in 64 t_clk
565 * chunks ; that when timeout event occurs a maskable interrupt
566 * occurs.
567 * The parameter is calculated using the tClk of the MV-643xx chip
568 * , and the required delay of the interrupt in usec.
569 *
570 * INPUT:
571 * unsigned int eth_port_num Ethernet port number
572 * unsigned int t_clk t_clk of the MV-643xx chip in HZ units
573 * unsigned int delay Delay in usec
574 *
575 * OUTPUT:
576 * Interrupt coalescing mechanism value is set in MV-643xx chip.
577 *
578 * RETURN:
579 * The interrupt coalescing value set in the gigE port.
580 *
581 */
582static unsigned int eth_port_set_rx_coal(unsigned int eth_port_num,
583 unsigned int t_clk, unsigned int delay)
584{
585 unsigned int coal = ((t_clk / 1000000) * delay) / 64;
586
587 /* Set RX Coalescing mechanism */
588 mv_write(MV643XX_ETH_SDMA_CONFIG_REG(eth_port_num),
589 ((coal & 0x3fff) << 8) |
590 (mv_read(MV643XX_ETH_SDMA_CONFIG_REG(eth_port_num))
591 & 0xffc000ff));
592
593 return coal;
594}
595#endif
596
597/*
598 * eth_port_set_tx_coal - Sets coalescing interrupt mechanism on TX path
599 *
600 * DESCRIPTION:
601 * This routine sets the TX coalescing interrupt mechanism parameter.
602 * This parameter is a timeout counter, that counts in 64 t_clk
603 * chunks ; that when timeout event occurs a maskable interrupt
604 * occurs.
605 * The parameter is calculated using the t_cLK frequency of the
606 * MV-643xx chip and the required delay in the interrupt in uSec
607 *
608 * INPUT:
609 * unsigned int eth_port_num Ethernet port number
610 * unsigned int t_clk t_clk of the MV-643xx chip in HZ units
611 * unsigned int delay Delay in uSeconds
612 *
613 * OUTPUT:
614 * Interrupt coalescing mechanism value is set in MV-643xx chip.
615 *
616 * RETURN:
617 * The interrupt coalescing value set in the gigE port.
618 *
619 */
620static unsigned int eth_port_set_tx_coal(unsigned int eth_port_num,
621 unsigned int t_clk, unsigned int delay)
622{
623 unsigned int coal;
624 coal = ((t_clk / 1000000) * delay) / 64;
625 /* Set TX Coalescing mechanism */
626 mv_write(MV643XX_ETH_TX_FIFO_URGENT_THRESHOLD_REG(eth_port_num),
627 coal << 4);
628 return coal;
629}
630
631/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 * ether_init_rx_desc_ring - Curve a Rx chain desc list and buffer in memory.
633 *
634 * DESCRIPTION:
635 * This function prepares a Rx chained list of descriptors and packet
636 * buffers in a form of a ring. The routine must be called after port
637 * initialization routine and before port start routine.
638 * The Ethernet SDMA engine uses CPU bus addresses to access the various
639 * devices in the system (i.e. DRAM). This function uses the ethernet
640 * struct 'virtual to physical' routine (set by the user) to set the ring
641 * with physical addresses.
642 *
643 * INPUT:
644 * struct mv643xx_private *mp Ethernet Port Control srtuct.
645 *
646 * OUTPUT:
647 * The routine updates the Ethernet port control struct with information
648 * regarding the Rx descriptors and buffers.
649 *
650 * RETURN:
651 * None.
652 */
653static void ether_init_rx_desc_ring(struct mv643xx_private *mp)
654{
655 volatile struct eth_rx_desc *p_rx_desc;
656 int rx_desc_num = mp->rx_ring_size;
657 int i;
658
659 /* initialize the next_desc_ptr links in the Rx descriptors ring */
660 p_rx_desc = (struct eth_rx_desc *)mp->p_rx_desc_area;
661 for (i = 0; i < rx_desc_num; i++) {
662 p_rx_desc[i].next_desc_ptr = mp->rx_desc_dma +
663 ((i + 1) % rx_desc_num) * sizeof(struct eth_rx_desc);
664 }
665
666 /* Save Rx desc pointer to driver struct. */
667 mp->rx_curr_desc_q = 0;
668 mp->rx_used_desc_q = 0;
669
670 mp->rx_desc_area_size = rx_desc_num * sizeof(struct eth_rx_desc);
671
672 /* Add the queue to the list of RX queues of this port */
673 mp->port_rx_queue_command |= 1;
674}
675
676/*
677 * ether_init_tx_desc_ring - Curve a Tx chain desc list and buffer in memory.
678 *
679 * DESCRIPTION:
680 * This function prepares a Tx chained list of descriptors and packet
681 * buffers in a form of a ring. The routine must be called after port
682 * initialization routine and before port start routine.
683 * The Ethernet SDMA engine uses CPU bus addresses to access the various
684 * devices in the system (i.e. DRAM). This function uses the ethernet
685 * struct 'virtual to physical' routine (set by the user) to set the ring
686 * with physical addresses.
687 *
688 * INPUT:
689 * struct mv643xx_private *mp Ethernet Port Control srtuct.
690 *
691 * OUTPUT:
692 * The routine updates the Ethernet port control struct with information
693 * regarding the Tx descriptors and buffers.
694 *
695 * RETURN:
696 * None.
697 */
698static void ether_init_tx_desc_ring(struct mv643xx_private *mp)
699{
700 int tx_desc_num = mp->tx_ring_size;
701 struct eth_tx_desc *p_tx_desc;
702 int i;
703
704 /* Initialize the next_desc_ptr links in the Tx descriptors ring */
705 p_tx_desc = (struct eth_tx_desc *)mp->p_tx_desc_area;
706 for (i = 0; i < tx_desc_num; i++) {
707 p_tx_desc[i].next_desc_ptr = mp->tx_desc_dma +
708 ((i + 1) % tx_desc_num) * sizeof(struct eth_tx_desc);
709 }
710
711 mp->tx_curr_desc_q = 0;
712 mp->tx_used_desc_q = 0;
713#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
714 mp->tx_first_desc_q = 0;
715#endif
716
717 mp->tx_desc_area_size = tx_desc_num * sizeof(struct eth_tx_desc);
718
719 /* Add the queue to the list of Tx queues of this port */
720 mp->port_tx_queue_command |= 1;
721}
722
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700723/*
724 * mv643xx_eth_open
725 *
726 * This function is called when openning the network device. The function
727 * should initialize all the hardware, initialize cyclic Rx/Tx
728 * descriptors chain and buffers and allocate an IRQ to the network
729 * device.
730 *
731 * Input : a pointer to the network device structure
732 *
733 * Output : zero of success , nonzero if fails.
734 */
735
736static int mv643xx_eth_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
738 struct mv643xx_private *mp = netdev_priv(dev);
739 unsigned int port_num = mp->port_num;
740 unsigned int size;
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700741 int err;
742
743 err = request_irq(dev->irq, mv643xx_eth_int_handler,
744 SA_SHIRQ | SA_SAMPLE_RANDOM, dev->name, dev);
745 if (err) {
746 printk(KERN_ERR "Can not assign IRQ number to MV643XX_eth%d\n",
747 port_num);
748 return -EAGAIN;
749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 /* Stop RX Queues */
752 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), 0x0000ff00);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /* Set the MAC Address */
755 memcpy(mp->port_mac_addr, dev->dev_addr, 6);
756
757 eth_port_init(mp);
758
759 INIT_WORK(&mp->rx_task, (void (*)(void *))mv643xx_eth_rx_task, dev);
760
761 memset(&mp->timeout, 0, sizeof(struct timer_list));
762 mp->timeout.function = mv643xx_eth_rx_task_timer_wrapper;
763 mp->timeout.data = (unsigned long)dev;
764
765 mp->rx_task_busy = 0;
766 mp->rx_timer_flag = 0;
767
768 /* Allocate RX and TX skb rings */
769 mp->rx_skb = kmalloc(sizeof(*mp->rx_skb) * mp->rx_ring_size,
770 GFP_KERNEL);
771 if (!mp->rx_skb) {
772 printk(KERN_ERR "%s: Cannot allocate Rx skb ring\n", dev->name);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700773 err = -ENOMEM;
774 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776 mp->tx_skb = kmalloc(sizeof(*mp->tx_skb) * mp->tx_ring_size,
777 GFP_KERNEL);
778 if (!mp->tx_skb) {
779 printk(KERN_ERR "%s: Cannot allocate Tx skb ring\n", dev->name);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700780 err = -ENOMEM;
781 goto out_free_rx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783
784 /* Allocate TX ring */
785 mp->tx_ring_skbs = 0;
786 size = mp->tx_ring_size * sizeof(struct eth_tx_desc);
787 mp->tx_desc_area_size = size;
788
789 if (mp->tx_sram_size) {
790 mp->p_tx_desc_area = ioremap(mp->tx_sram_addr,
791 mp->tx_sram_size);
792 mp->tx_desc_dma = mp->tx_sram_addr;
793 } else
794 mp->p_tx_desc_area = dma_alloc_coherent(NULL, size,
795 &mp->tx_desc_dma,
796 GFP_KERNEL);
797
798 if (!mp->p_tx_desc_area) {
799 printk(KERN_ERR "%s: Cannot allocate Tx Ring (size %d bytes)\n",
800 dev->name, size);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700801 err = -ENOMEM;
802 goto out_free_tx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804 BUG_ON((u32) mp->p_tx_desc_area & 0xf); /* check 16-byte alignment */
805 memset((void *)mp->p_tx_desc_area, 0, mp->tx_desc_area_size);
806
807 ether_init_tx_desc_ring(mp);
808
809 /* Allocate RX ring */
810 mp->rx_ring_skbs = 0;
811 size = mp->rx_ring_size * sizeof(struct eth_rx_desc);
812 mp->rx_desc_area_size = size;
813
814 if (mp->rx_sram_size) {
815 mp->p_rx_desc_area = ioremap(mp->rx_sram_addr,
816 mp->rx_sram_size);
817 mp->rx_desc_dma = mp->rx_sram_addr;
818 } else
819 mp->p_rx_desc_area = dma_alloc_coherent(NULL, size,
820 &mp->rx_desc_dma,
821 GFP_KERNEL);
822
823 if (!mp->p_rx_desc_area) {
824 printk(KERN_ERR "%s: Cannot allocate Rx ring (size %d bytes)\n",
825 dev->name, size);
826 printk(KERN_ERR "%s: Freeing previously allocated TX queues...",
827 dev->name);
828 if (mp->rx_sram_size)
Dale Farnsworthdd09b1d2006-01-16 16:53:15 -0700829 iounmap(mp->p_tx_desc_area);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 else
831 dma_free_coherent(NULL, mp->tx_desc_area_size,
832 mp->p_tx_desc_area, mp->tx_desc_dma);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700833 err = -ENOMEM;
834 goto out_free_tx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
836 memset((void *)mp->p_rx_desc_area, 0, size);
837
838 ether_init_rx_desc_ring(mp);
839
840 mv643xx_eth_rx_task(dev); /* Fill RX ring with skb's */
841
842 eth_port_start(mp);
843
844 /* Interrupt Coalescing */
845
846#ifdef MV643XX_COAL
847 mp->rx_int_coal =
848 eth_port_set_rx_coal(port_num, 133000000, MV643XX_RX_COAL);
849#endif
850
851 mp->tx_int_coal =
852 eth_port_set_tx_coal(port_num, 133000000, MV643XX_TX_COAL);
853
Dale Farnsworth8f518702006-01-16 16:56:30 -0700854 /* Clear any pending ethernet port interrupts */
855 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0);
856 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Dale Farnsworth8f518702006-01-16 16:56:30 -0700858 /* Unmask phy and link status changes interrupts */
859 mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num),
860 INT_CAUSE_UNMASK_ALL_EXT);
861
862 /* Unmask RX buffer and TX end interrupt */
863 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
864 INT_CAUSE_UNMASK_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return 0;
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700866
867out_free_tx_skb:
868 kfree(mp->tx_skb);
869out_free_rx_skb:
870 kfree(mp->rx_skb);
871out_free_irq:
872 free_irq(dev->irq, dev);
873
874 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
877static void mv643xx_eth_free_tx_rings(struct net_device *dev)
878{
879 struct mv643xx_private *mp = netdev_priv(dev);
880 unsigned int port_num = mp->port_num;
881 unsigned int curr;
Dale Farnsworth4476e0e42006-01-16 16:58:24 -0700882 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 /* Stop Tx Queues */
885 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num), 0x0000ff00);
886
887 /* Free outstanding skb's on TX rings */
888 for (curr = 0; mp->tx_ring_skbs && curr < mp->tx_ring_size; curr++) {
Dale Farnsworth4476e0e42006-01-16 16:58:24 -0700889 skb = mp->tx_skb[curr];
890 if (skb) {
891 mp->tx_ring_skbs -= skb_shinfo(skb)->nr_frags;
892 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 mp->tx_ring_skbs--;
894 }
895 }
896 if (mp->tx_ring_skbs)
897 printk("%s: Error on Tx descriptor free - could not free %d"
898 " descriptors\n", dev->name, mp->tx_ring_skbs);
899
900 /* Free TX ring */
901 if (mp->tx_sram_size)
902 iounmap(mp->p_tx_desc_area);
903 else
904 dma_free_coherent(NULL, mp->tx_desc_area_size,
905 mp->p_tx_desc_area, mp->tx_desc_dma);
906}
907
908static void mv643xx_eth_free_rx_rings(struct net_device *dev)
909{
910 struct mv643xx_private *mp = netdev_priv(dev);
911 unsigned int port_num = mp->port_num;
912 int curr;
913
914 /* Stop RX Queues */
915 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), 0x0000ff00);
916
917 /* Free preallocated skb's on RX rings */
918 for (curr = 0; mp->rx_ring_skbs && curr < mp->rx_ring_size; curr++) {
919 if (mp->rx_skb[curr]) {
920 dev_kfree_skb(mp->rx_skb[curr]);
921 mp->rx_ring_skbs--;
922 }
923 }
924
925 if (mp->rx_ring_skbs)
926 printk(KERN_ERR
927 "%s: Error in freeing Rx Ring. %d skb's still"
928 " stuck in RX Ring - ignoring them\n", dev->name,
929 mp->rx_ring_skbs);
930 /* Free RX ring */
931 if (mp->rx_sram_size)
932 iounmap(mp->p_rx_desc_area);
933 else
934 dma_free_coherent(NULL, mp->rx_desc_area_size,
935 mp->p_rx_desc_area, mp->rx_desc_dma);
936}
937
938/*
939 * mv643xx_eth_stop
940 *
941 * This function is used when closing the network device.
942 * It updates the hardware,
943 * release all memory that holds buffers and descriptors and release the IRQ.
944 * Input : a pointer to the device structure
945 * Output : zero if success , nonzero if fails
946 */
947
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700948static int mv643xx_eth_stop(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
950 struct mv643xx_private *mp = netdev_priv(dev);
951 unsigned int port_num = mp->port_num;
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /* Mask RX buffer and TX end interrupt */
954 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), 0);
955
956 /* Mask phy and link status changes interrupts */
957 mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num), 0);
958
Dale Farnsworth8f518702006-01-16 16:56:30 -0700959 /* ensure previous writes have taken effect */
960 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
961
962#ifdef MV643XX_NAPI
963 netif_poll_disable(dev);
964#endif
965 netif_carrier_off(dev);
966 netif_stop_queue(dev);
967
968 eth_port_reset(mp->port_num);
969
970 mv643xx_eth_free_tx_rings(dev);
971 mv643xx_eth_free_rx_rings(dev);
972
973#ifdef MV643XX_NAPI
974 netif_poll_enable(dev);
975#endif
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 free_irq(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 return 0;
980}
981
982#ifdef MV643XX_NAPI
983static void mv643xx_tx(struct net_device *dev)
984{
985 struct mv643xx_private *mp = netdev_priv(dev);
986 struct pkt_info pkt_info;
987
988 while (eth_tx_return_desc(mp, &pkt_info) == ETH_OK) {
Paolo Galtiericb415d32006-01-16 16:48:02 -0700989 if (pkt_info.cmd_sts & ETH_TX_FIRST_DESC)
990 dma_unmap_single(NULL, pkt_info.buf_ptr,
991 pkt_info.byte_cnt,
992 DMA_TO_DEVICE);
993 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 dma_unmap_page(NULL, pkt_info.buf_ptr,
Paolo Galtiericb415d32006-01-16 16:48:02 -0700995 pkt_info.byte_cnt,
996 DMA_TO_DEVICE);
997
998 if (pkt_info.return_info)
999 dev_kfree_skb_irq(pkt_info.return_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001
1002 if (netif_queue_stopped(dev) &&
1003 mp->tx_ring_size > mp->tx_ring_skbs + MAX_DESCS_PER_SKB)
1004 netif_wake_queue(dev);
1005}
1006
1007/*
1008 * mv643xx_poll
1009 *
1010 * This function is used in case of NAPI
1011 */
1012static int mv643xx_poll(struct net_device *dev, int *budget)
1013{
1014 struct mv643xx_private *mp = netdev_priv(dev);
1015 int done = 1, orig_budget, work_done;
1016 unsigned int port_num = mp->port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018#ifdef MV643XX_TX_FAST_REFILL
1019 if (++mp->tx_clean_threshold > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 mv643xx_tx(dev);
1021 mp->tx_clean_threshold = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 }
1023#endif
1024
1025 if ((mv_read(MV643XX_ETH_RX_CURRENT_QUEUE_DESC_PTR_0(port_num)))
1026 != (u32) mp->rx_used_desc_q) {
1027 orig_budget = *budget;
1028 if (orig_budget > dev->quota)
1029 orig_budget = dev->quota;
1030 work_done = mv643xx_eth_receive_queue(dev, orig_budget);
1031 mp->rx_task.func(dev);
1032 *budget -= work_done;
1033 dev->quota -= work_done;
1034 if (work_done >= orig_budget)
1035 done = 0;
1036 }
1037
1038 if (done) {
Dale Farnsworth8f518702006-01-16 16:56:30 -07001039 netif_rx_complete(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0);
1041 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
1042 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
1043 INT_CAUSE_UNMASK_ALL);
1044 mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num),
1045 INT_CAUSE_UNMASK_ALL_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047
1048 return done ? 0 : 1;
1049}
1050#endif
1051
Paul Janzenf7ea3332006-01-16 16:52:13 -07001052/* Hardware can't handle unaligned fragments smaller than 9 bytes.
1053 * This helper function detects that case.
1054 */
1055
1056static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
1057{
1058 unsigned int frag;
1059 skb_frag_t *fragp;
1060
1061 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
1062 fragp = &skb_shinfo(skb)->frags[frag];
1063 if (fragp->size <= 8 && fragp->page_offset & 0x7)
1064 return 1;
1065
1066 }
1067 return 0;
1068}
1069
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071/*
1072 * mv643xx_eth_start_xmit
1073 *
1074 * This function is queues a packet in the Tx descriptor for
1075 * required port.
1076 *
1077 * Input : skb - a pointer to socket buffer
1078 * dev - a pointer to the required port
1079 *
1080 * Output : zero upon success
1081 */
1082static int mv643xx_eth_start_xmit(struct sk_buff *skb, struct net_device *dev)
1083{
1084 struct mv643xx_private *mp = netdev_priv(dev);
1085 struct net_device_stats *stats = &mp->stats;
1086 ETH_FUNC_RET_STATUS status;
1087 unsigned long flags;
1088 struct pkt_info pkt_info;
1089
1090 if (netif_queue_stopped(dev)) {
1091 printk(KERN_ERR
1092 "%s: Tried sending packet when interface is stopped\n",
1093 dev->name);
1094 return 1;
1095 }
1096
1097 /* This is a hard error, log it. */
1098 if ((mp->tx_ring_size - mp->tx_ring_skbs) <=
1099 (skb_shinfo(skb)->nr_frags + 1)) {
1100 netif_stop_queue(dev);
1101 printk(KERN_ERR
1102 "%s: Bug in mv643xx_eth - Trying to transmit when"
1103 " queue full !\n", dev->name);
1104 return 1;
1105 }
1106
1107 /* Paranoid check - this shouldn't happen */
1108 if (skb == NULL) {
1109 stats->tx_dropped++;
1110 printk(KERN_ERR "mv64320_eth paranoid check failed\n");
1111 return 1;
1112 }
1113
Paul Janzenf7ea3332006-01-16 16:52:13 -07001114#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1115 if (has_tiny_unaligned_frags(skb)) {
1116 if ((skb_linearize(skb, GFP_ATOMIC) != 0)) {
1117 stats->tx_dropped++;
1118 printk(KERN_DEBUG "%s: failed to linearize tiny "
1119 "unaligned fragment\n", dev->name);
1120 return 1;
1121 }
1122 }
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 spin_lock_irqsave(&mp->lock, flags);
1125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (!skb_shinfo(skb)->nr_frags) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (skb->ip_summed != CHECKSUM_HW) {
Dale Farnsworth26006362005-08-22 15:53:29 -07001128 /* Errata BTS #50, IHL must be 5 if no HW checksum */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT |
Dale Farnsworth26006362005-08-22 15:53:29 -07001130 ETH_TX_FIRST_DESC |
1131 ETH_TX_LAST_DESC |
1132 5 << ETH_TX_IHL_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 pkt_info.l4i_chk = 0;
1134 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT |
Dale Farnsworth26006362005-08-22 15:53:29 -07001136 ETH_TX_FIRST_DESC |
1137 ETH_TX_LAST_DESC |
1138 ETH_GEN_TCP_UDP_CHECKSUM |
1139 ETH_GEN_IP_V_4_CHECKSUM |
1140 skb->nh.iph->ihl << ETH_TX_IHL_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /* CPU already calculated pseudo header checksum. */
Wolfram Joost63890572006-01-16 16:57:41 -07001142 if ((skb->protocol == ETH_P_IP) &&
1143 (skb->nh.iph->protocol == IPPROTO_UDP) ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 pkt_info.cmd_sts |= ETH_UDP_FRAME;
1145 pkt_info.l4i_chk = skb->h.uh->check;
Wolfram Joost63890572006-01-16 16:57:41 -07001146 } else if ((skb->protocol == ETH_P_IP) &&
1147 (skb->nh.iph->protocol == IPPROTO_TCP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 pkt_info.l4i_chk = skb->h.th->check;
1149 else {
1150 printk(KERN_ERR
Wolfram Joost63890572006-01-16 16:57:41 -07001151 "%s: chksum proto != IPv4 TCP or UDP\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 dev->name);
1153 spin_unlock_irqrestore(&mp->lock, flags);
1154 return 1;
1155 }
1156 }
1157 pkt_info.byte_cnt = skb->len;
1158 pkt_info.buf_ptr = dma_map_single(NULL, skb->data, skb->len,
1159 DMA_TO_DEVICE);
1160 pkt_info.return_info = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 status = eth_port_send(mp, &pkt_info);
1162 if ((status == ETH_ERROR) || (status == ETH_QUEUE_FULL))
1163 printk(KERN_ERR "%s: Error on transmitting packet\n",
1164 dev->name);
1165 stats->tx_bytes += pkt_info.byte_cnt;
1166 } else {
1167 unsigned int frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /* first frag which is skb header */
1170 pkt_info.byte_cnt = skb_headlen(skb);
1171 pkt_info.buf_ptr = dma_map_single(NULL, skb->data,
1172 skb_headlen(skb),
1173 DMA_TO_DEVICE);
1174 pkt_info.l4i_chk = 0;
1175 pkt_info.return_info = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Dale Farnsworth26006362005-08-22 15:53:29 -07001177 if (skb->ip_summed != CHECKSUM_HW)
1178 /* Errata BTS #50, IHL must be 5 if no HW checksum */
1179 pkt_info.cmd_sts = ETH_TX_FIRST_DESC |
1180 5 << ETH_TX_IHL_SHIFT;
1181 else {
1182 pkt_info.cmd_sts = ETH_TX_FIRST_DESC |
1183 ETH_GEN_TCP_UDP_CHECKSUM |
1184 ETH_GEN_IP_V_4_CHECKSUM |
1185 skb->nh.iph->ihl << ETH_TX_IHL_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* CPU already calculated pseudo header checksum. */
Wolfram Joost63890572006-01-16 16:57:41 -07001187 if ((skb->protocol == ETH_P_IP) &&
1188 (skb->nh.iph->protocol == IPPROTO_UDP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 pkt_info.cmd_sts |= ETH_UDP_FRAME;
1190 pkt_info.l4i_chk = skb->h.uh->check;
Wolfram Joost63890572006-01-16 16:57:41 -07001191 } else if ((skb->protocol == ETH_P_IP) &&
1192 (skb->nh.iph->protocol == IPPROTO_TCP))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 pkt_info.l4i_chk = skb->h.th->check;
1194 else {
1195 printk(KERN_ERR
Wolfram Joost63890572006-01-16 16:57:41 -07001196 "%s: chksum proto != IPv4 TCP or UDP\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 dev->name);
1198 spin_unlock_irqrestore(&mp->lock, flags);
1199 return 1;
1200 }
1201 }
1202
1203 status = eth_port_send(mp, &pkt_info);
1204 if (status != ETH_OK) {
1205 if ((status == ETH_ERROR))
1206 printk(KERN_ERR
1207 "%s: Error on transmitting packet\n",
1208 dev->name);
1209 if (status == ETH_QUEUE_FULL)
1210 printk("Error on Queue Full \n");
1211 if (status == ETH_QUEUE_LAST_RESOURCE)
1212 printk("Tx resource error \n");
1213 }
1214 stats->tx_bytes += pkt_info.byte_cnt;
1215
1216 /* Check for the remaining frags */
1217 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
1218 skb_frag_t *this_frag = &skb_shinfo(skb)->frags[frag];
1219 pkt_info.l4i_chk = 0x0000;
1220 pkt_info.cmd_sts = 0x00000000;
1221
1222 /* Last Frag enables interrupt and frees the skb */
1223 if (frag == (skb_shinfo(skb)->nr_frags - 1)) {
1224 pkt_info.cmd_sts |= ETH_TX_ENABLE_INTERRUPT |
1225 ETH_TX_LAST_DESC;
1226 pkt_info.return_info = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 } else {
1228 pkt_info.return_info = 0;
1229 }
1230 pkt_info.l4i_chk = 0;
1231 pkt_info.byte_cnt = this_frag->size;
1232
1233 pkt_info.buf_ptr = dma_map_page(NULL, this_frag->page,
1234 this_frag->page_offset,
1235 this_frag->size,
1236 DMA_TO_DEVICE);
1237
1238 status = eth_port_send(mp, &pkt_info);
1239
1240 if (status != ETH_OK) {
1241 if ((status == ETH_ERROR))
1242 printk(KERN_ERR "%s: Error on "
1243 "transmitting packet\n",
1244 dev->name);
1245
1246 if (status == ETH_QUEUE_LAST_RESOURCE)
1247 printk("Tx resource error \n");
1248
1249 if (status == ETH_QUEUE_FULL)
1250 printk("Queue is full \n");
1251 }
1252 stats->tx_bytes += pkt_info.byte_cnt;
1253 }
1254 }
1255#else
Paul Janzenf7ea3332006-01-16 16:52:13 -07001256 spin_lock_irqsave(&mp->lock, flags);
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT | ETH_TX_FIRST_DESC |
1259 ETH_TX_LAST_DESC;
1260 pkt_info.l4i_chk = 0;
1261 pkt_info.byte_cnt = skb->len;
1262 pkt_info.buf_ptr = dma_map_single(NULL, skb->data, skb->len,
1263 DMA_TO_DEVICE);
1264 pkt_info.return_info = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 status = eth_port_send(mp, &pkt_info);
1266 if ((status == ETH_ERROR) || (status == ETH_QUEUE_FULL))
1267 printk(KERN_ERR "%s: Error on transmitting packet\n",
1268 dev->name);
1269 stats->tx_bytes += pkt_info.byte_cnt;
1270#endif
1271
1272 /* Check if TX queue can handle another skb. If not, then
1273 * signal higher layers to stop requesting TX
1274 */
1275 if (mp->tx_ring_size <= (mp->tx_ring_skbs + MAX_DESCS_PER_SKB))
1276 /*
1277 * Stop getting skb's from upper layers.
1278 * Getting skb's from upper layers will be enabled again after
1279 * packets are released.
1280 */
1281 netif_stop_queue(dev);
1282
1283 /* Update statistics and start of transmittion time */
1284 stats->tx_packets++;
1285 dev->trans_start = jiffies;
1286
1287 spin_unlock_irqrestore(&mp->lock, flags);
1288
1289 return 0; /* success */
1290}
1291
1292/*
1293 * mv643xx_eth_get_stats
1294 *
1295 * Returns a pointer to the interface statistics.
1296 *
1297 * Input : dev - a pointer to the required interface
1298 *
1299 * Output : a pointer to the interface's statistics
1300 */
1301
1302static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *dev)
1303{
1304 struct mv643xx_private *mp = netdev_priv(dev);
1305
1306 return &mp->stats;
1307}
1308
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001309#ifdef CONFIG_NET_POLL_CONTROLLER
1310static inline void mv643xx_enable_irq(struct mv643xx_private *mp)
1311{
1312 int port_num = mp->port_num;
1313 unsigned long flags;
1314
1315 spin_lock_irqsave(&mp->lock, flags);
1316 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
1317 INT_CAUSE_UNMASK_ALL);
1318 mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num),
1319 INT_CAUSE_UNMASK_ALL_EXT);
1320 spin_unlock_irqrestore(&mp->lock, flags);
1321}
1322
1323static inline void mv643xx_disable_irq(struct mv643xx_private *mp)
1324{
1325 int port_num = mp->port_num;
1326 unsigned long flags;
1327
1328 spin_lock_irqsave(&mp->lock, flags);
1329 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
1330 INT_CAUSE_MASK_ALL);
1331 mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num),
1332 INT_CAUSE_MASK_ALL_EXT);
1333 spin_unlock_irqrestore(&mp->lock, flags);
1334}
1335
1336static void mv643xx_netpoll(struct net_device *netdev)
1337{
1338 struct mv643xx_private *mp = netdev_priv(netdev);
1339
1340 mv643xx_disable_irq(mp);
1341 mv643xx_eth_int_handler(netdev->irq, netdev, NULL);
1342 mv643xx_enable_irq(mp);
1343}
1344#endif
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346/*/
1347 * mv643xx_eth_probe
1348 *
1349 * First function called after registering the network device.
1350 * It's purpose is to initialize the device as an ethernet device,
1351 * fill the ethernet device structure with pointers * to functions,
1352 * and set the MAC address of the interface
1353 *
1354 * Input : struct device *
1355 * Output : -ENOMEM if failed , 0 if success
1356 */
Russell King3ae5eae2005-11-09 22:32:44 +00001357static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 struct mv643xx_eth_platform_data *pd;
1360 int port_num = pdev->id;
1361 struct mv643xx_private *mp;
1362 struct net_device *dev;
1363 u8 *p;
1364 struct resource *res;
1365 int err;
1366
1367 dev = alloc_etherdev(sizeof(struct mv643xx_private));
1368 if (!dev)
1369 return -ENOMEM;
1370
Russell King3ae5eae2005-11-09 22:32:44 +00001371 platform_set_drvdata(pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 mp = netdev_priv(dev);
1374
1375 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1376 BUG_ON(!res);
1377 dev->irq = res->start;
1378
1379 mp->port_num = port_num;
1380
1381 dev->open = mv643xx_eth_open;
1382 dev->stop = mv643xx_eth_stop;
1383 dev->hard_start_xmit = mv643xx_eth_start_xmit;
1384 dev->get_stats = mv643xx_eth_get_stats;
1385 dev->set_mac_address = mv643xx_eth_set_mac_address;
1386 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
1387
1388 /* No need to Tx Timeout */
1389 dev->tx_timeout = mv643xx_eth_tx_timeout;
1390#ifdef MV643XX_NAPI
1391 dev->poll = mv643xx_poll;
1392 dev->weight = 64;
1393#endif
1394
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001395#ifdef CONFIG_NET_POLL_CONTROLLER
1396 dev->poll_controller = mv643xx_netpoll;
1397#endif
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 dev->watchdog_timeo = 2 * HZ;
1400 dev->tx_queue_len = mp->tx_ring_size;
1401 dev->base_addr = 0;
1402 dev->change_mtu = mv643xx_eth_change_mtu;
1403 SET_ETHTOOL_OPS(dev, &mv643xx_ethtool_ops);
1404
1405#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1406#ifdef MAX_SKB_FRAGS
1407 /*
1408 * Zero copy can only work if we use Discovery II memory. Else, we will
1409 * have to map the buffers to ISA memory which is only 16 MB
1410 */
Wolfram Joost63890572006-01-16 16:57:41 -07001411 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412#endif
1413#endif
1414
1415 /* Configure the timeout task */
1416 INIT_WORK(&mp->tx_timeout_task,
1417 (void (*)(void *))mv643xx_eth_tx_timeout_task, dev);
1418
1419 spin_lock_init(&mp->lock);
1420
1421 /* set default config values */
1422 eth_port_uc_addr_get(dev, dev->dev_addr);
1423 mp->port_config = MV643XX_ETH_PORT_CONFIG_DEFAULT_VALUE;
1424 mp->port_config_extend = MV643XX_ETH_PORT_CONFIG_EXTEND_DEFAULT_VALUE;
1425 mp->port_sdma_config = MV643XX_ETH_PORT_SDMA_CONFIG_DEFAULT_VALUE;
1426 mp->port_serial_control = MV643XX_ETH_PORT_SERIAL_CONTROL_DEFAULT_VALUE;
1427 mp->rx_ring_size = MV643XX_ETH_PORT_DEFAULT_RECEIVE_QUEUE_SIZE;
1428 mp->tx_ring_size = MV643XX_ETH_PORT_DEFAULT_TRANSMIT_QUEUE_SIZE;
1429
1430 pd = pdev->dev.platform_data;
1431 if (pd) {
1432 if (pd->mac_addr != NULL)
1433 memcpy(dev->dev_addr, pd->mac_addr, 6);
1434
1435 if (pd->phy_addr || pd->force_phy_addr)
1436 ethernet_phy_set(port_num, pd->phy_addr);
1437
1438 if (pd->port_config || pd->force_port_config)
1439 mp->port_config = pd->port_config;
1440
1441 if (pd->port_config_extend || pd->force_port_config_extend)
1442 mp->port_config_extend = pd->port_config_extend;
1443
1444 if (pd->port_sdma_config || pd->force_port_sdma_config)
1445 mp->port_sdma_config = pd->port_sdma_config;
1446
1447 if (pd->port_serial_control || pd->force_port_serial_control)
1448 mp->port_serial_control = pd->port_serial_control;
1449
1450 if (pd->rx_queue_size)
1451 mp->rx_ring_size = pd->rx_queue_size;
1452
1453 if (pd->tx_queue_size)
1454 mp->tx_ring_size = pd->tx_queue_size;
1455
1456 if (pd->tx_sram_size) {
1457 mp->tx_sram_size = pd->tx_sram_size;
1458 mp->tx_sram_addr = pd->tx_sram_addr;
1459 }
1460
1461 if (pd->rx_sram_size) {
1462 mp->rx_sram_size = pd->rx_sram_size;
1463 mp->rx_sram_addr = pd->rx_sram_addr;
1464 }
1465 }
1466
1467 err = ethernet_phy_detect(port_num);
1468 if (err) {
1469 pr_debug("MV643xx ethernet port %d: "
1470 "No PHY detected at addr %d\n",
1471 port_num, ethernet_phy_get(port_num));
1472 return err;
1473 }
1474
1475 err = register_netdev(dev);
1476 if (err)
1477 goto out;
1478
1479 p = dev->dev_addr;
1480 printk(KERN_NOTICE
1481 "%s: port %d with MAC address %02x:%02x:%02x:%02x:%02x:%02x\n",
1482 dev->name, port_num, p[0], p[1], p[2], p[3], p[4], p[5]);
1483
1484 if (dev->features & NETIF_F_SG)
1485 printk(KERN_NOTICE "%s: Scatter Gather Enabled\n", dev->name);
1486
1487 if (dev->features & NETIF_F_IP_CSUM)
1488 printk(KERN_NOTICE "%s: TX TCP/IP Checksumming Supported\n",
1489 dev->name);
1490
1491#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1492 printk(KERN_NOTICE "%s: RX TCP/UDP Checksum Offload ON \n", dev->name);
1493#endif
1494
1495#ifdef MV643XX_COAL
1496 printk(KERN_NOTICE "%s: TX and RX Interrupt Coalescing ON \n",
1497 dev->name);
1498#endif
1499
1500#ifdef MV643XX_NAPI
1501 printk(KERN_NOTICE "%s: RX NAPI Enabled \n", dev->name);
1502#endif
1503
Nicolas DETb1529872005-10-28 17:46:30 -07001504 if (mp->tx_sram_size > 0)
1505 printk(KERN_NOTICE "%s: Using SRAM\n", dev->name);
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return 0;
1508
1509out:
1510 free_netdev(dev);
1511
1512 return err;
1513}
1514
Russell King3ae5eae2005-11-09 22:32:44 +00001515static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Russell King3ae5eae2005-11-09 22:32:44 +00001517 struct net_device *dev = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 unregister_netdev(dev);
1520 flush_scheduled_work();
1521
1522 free_netdev(dev);
Russell King3ae5eae2005-11-09 22:32:44 +00001523 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 return 0;
1525}
1526
Russell King3ae5eae2005-11-09 22:32:44 +00001527static int mv643xx_eth_shared_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 struct resource *res;
1530
1531 printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n");
1532
1533 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1534 if (res == NULL)
1535 return -ENODEV;
1536
1537 mv643xx_eth_shared_base = ioremap(res->start,
1538 MV643XX_ETH_SHARED_REGS_SIZE);
1539 if (mv643xx_eth_shared_base == NULL)
1540 return -ENOMEM;
1541
1542 return 0;
1543
1544}
1545
Russell King3ae5eae2005-11-09 22:32:44 +00001546static int mv643xx_eth_shared_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 iounmap(mv643xx_eth_shared_base);
1549 mv643xx_eth_shared_base = NULL;
1550
1551 return 0;
1552}
1553
Russell King3ae5eae2005-11-09 22:32:44 +00001554static struct platform_driver mv643xx_eth_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 .probe = mv643xx_eth_probe,
1556 .remove = mv643xx_eth_remove,
Russell King3ae5eae2005-11-09 22:32:44 +00001557 .driver = {
1558 .name = MV643XX_ETH_NAME,
1559 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560};
1561
Russell King3ae5eae2005-11-09 22:32:44 +00001562static struct platform_driver mv643xx_eth_shared_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 .probe = mv643xx_eth_shared_probe,
1564 .remove = mv643xx_eth_shared_remove,
Russell King3ae5eae2005-11-09 22:32:44 +00001565 .driver = {
1566 .name = MV643XX_ETH_SHARED_NAME,
1567 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568};
1569
1570/*
1571 * mv643xx_init_module
1572 *
1573 * Registers the network drivers into the Linux kernel
1574 *
1575 * Input : N/A
1576 *
1577 * Output : N/A
1578 */
1579static int __init mv643xx_init_module(void)
1580{
1581 int rc;
1582
Russell King3ae5eae2005-11-09 22:32:44 +00001583 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00001585 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00001587 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
1589 return rc;
1590}
1591
1592/*
1593 * mv643xx_cleanup_module
1594 *
1595 * Registers the network drivers into the Linux kernel
1596 *
1597 * Input : N/A
1598 *
1599 * Output : N/A
1600 */
1601static void __exit mv643xx_cleanup_module(void)
1602{
Russell King3ae5eae2005-11-09 22:32:44 +00001603 platform_driver_unregister(&mv643xx_eth_driver);
1604 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
1607module_init(mv643xx_init_module);
1608module_exit(mv643xx_cleanup_module);
1609
1610MODULE_LICENSE("GPL");
1611MODULE_AUTHOR( "Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, Manish Lachwani"
1612 " and Dale Farnsworth");
1613MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
1614
1615/*
1616 * The second part is the low level driver of the gigE ethernet ports.
1617 */
1618
1619/*
1620 * Marvell's Gigabit Ethernet controller low level driver
1621 *
1622 * DESCRIPTION:
1623 * This file introduce low level API to Marvell's Gigabit Ethernet
1624 * controller. This Gigabit Ethernet Controller driver API controls
1625 * 1) Operations (i.e. port init, start, reset etc').
1626 * 2) Data flow (i.e. port send, receive etc').
1627 * Each Gigabit Ethernet port is controlled via
1628 * struct mv643xx_private.
1629 * This struct includes user configuration information as well as
1630 * driver internal data needed for its operations.
1631 *
1632 * Supported Features:
1633 * - This low level driver is OS independent. Allocating memory for
1634 * the descriptor rings and buffers are not within the scope of
1635 * this driver.
1636 * - The user is free from Rx/Tx queue managing.
1637 * - This low level driver introduce functionality API that enable
1638 * the to operate Marvell's Gigabit Ethernet Controller in a
1639 * convenient way.
1640 * - Simple Gigabit Ethernet port operation API.
1641 * - Simple Gigabit Ethernet port data flow API.
1642 * - Data flow and operation API support per queue functionality.
1643 * - Support cached descriptors for better performance.
1644 * - Enable access to all four DRAM banks and internal SRAM memory
1645 * spaces.
1646 * - PHY access and control API.
1647 * - Port control register configuration API.
1648 * - Full control over Unicast and Multicast MAC configurations.
1649 *
1650 * Operation flow:
1651 *
1652 * Initialization phase
1653 * This phase complete the initialization of the the
1654 * mv643xx_private struct.
1655 * User information regarding port configuration has to be set
1656 * prior to calling the port initialization routine.
1657 *
1658 * In this phase any port Tx/Rx activity is halted, MIB counters
1659 * are cleared, PHY address is set according to user parameter and
1660 * access to DRAM and internal SRAM memory spaces.
1661 *
1662 * Driver ring initialization
1663 * Allocating memory for the descriptor rings and buffers is not
1664 * within the scope of this driver. Thus, the user is required to
1665 * allocate memory for the descriptors ring and buffers. Those
1666 * memory parameters are used by the Rx and Tx ring initialization
1667 * routines in order to curve the descriptor linked list in a form
1668 * of a ring.
1669 * Note: Pay special attention to alignment issues when using
1670 * cached descriptors/buffers. In this phase the driver store
1671 * information in the mv643xx_private struct regarding each queue
1672 * ring.
1673 *
1674 * Driver start
1675 * This phase prepares the Ethernet port for Rx and Tx activity.
1676 * It uses the information stored in the mv643xx_private struct to
1677 * initialize the various port registers.
1678 *
1679 * Data flow:
1680 * All packet references to/from the driver are done using
1681 * struct pkt_info.
1682 * This struct is a unified struct used with Rx and Tx operations.
1683 * This way the user is not required to be familiar with neither
1684 * Tx nor Rx descriptors structures.
1685 * The driver's descriptors rings are management by indexes.
1686 * Those indexes controls the ring resources and used to indicate
1687 * a SW resource error:
1688 * 'current'
1689 * This index points to the current available resource for use. For
1690 * example in Rx process this index will point to the descriptor
1691 * that will be passed to the user upon calling the receive
1692 * routine. In Tx process, this index will point to the descriptor
1693 * that will be assigned with the user packet info and transmitted.
1694 * 'used'
1695 * This index points to the descriptor that need to restore its
1696 * resources. For example in Rx process, using the Rx buffer return
1697 * API will attach the buffer returned in packet info to the
1698 * descriptor pointed by 'used'. In Tx process, using the Tx
1699 * descriptor return will merely return the user packet info with
1700 * the command status of the transmitted buffer pointed by the
1701 * 'used' index. Nevertheless, it is essential to use this routine
1702 * to update the 'used' index.
1703 * 'first'
1704 * This index supports Tx Scatter-Gather. It points to the first
1705 * descriptor of a packet assembled of multiple buffers. For
1706 * example when in middle of Such packet we have a Tx resource
1707 * error the 'curr' index get the value of 'first' to indicate
1708 * that the ring returned to its state before trying to transmit
1709 * this packet.
1710 *
1711 * Receive operation:
1712 * The eth_port_receive API set the packet information struct,
1713 * passed by the caller, with received information from the
1714 * 'current' SDMA descriptor.
1715 * It is the user responsibility to return this resource back
1716 * to the Rx descriptor ring to enable the reuse of this source.
1717 * Return Rx resource is done using the eth_rx_return_buff API.
1718 *
1719 * Transmit operation:
1720 * The eth_port_send API supports Scatter-Gather which enables to
1721 * send a packet spanned over multiple buffers. This means that
1722 * for each packet info structure given by the user and put into
1723 * the Tx descriptors ring, will be transmitted only if the 'LAST'
1724 * bit will be set in the packet info command status field. This
1725 * API also consider restriction regarding buffer alignments and
1726 * sizes.
1727 * The user must return a Tx resource after ensuring the buffer
1728 * has been transmitted to enable the Tx ring indexes to update.
1729 *
1730 * BOARD LAYOUT
1731 * This device is on-board. No jumper diagram is necessary.
1732 *
1733 * EXTERNAL INTERFACE
1734 *
1735 * Prior to calling the initialization routine eth_port_init() the user
1736 * must set the following fields under mv643xx_private struct:
1737 * port_num User Ethernet port number.
1738 * port_mac_addr[6] User defined port MAC address.
1739 * port_config User port configuration value.
1740 * port_config_extend User port config extend value.
1741 * port_sdma_config User port SDMA config value.
1742 * port_serial_control User port serial control value.
1743 *
1744 * This driver data flow is done using the struct pkt_info which
1745 * is a unified struct for Rx and Tx operations:
1746 *
1747 * byte_cnt Tx/Rx descriptor buffer byte count.
1748 * l4i_chk CPU provided TCP Checksum. For Tx operation
1749 * only.
1750 * cmd_sts Tx/Rx descriptor command status.
1751 * buf_ptr Tx/Rx descriptor buffer pointer.
1752 * return_info Tx/Rx user resource return information.
1753 */
1754
1755/* defines */
1756/* SDMA command macros */
1757#define ETH_ENABLE_TX_QUEUE(eth_port) \
1758 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(eth_port), 1)
1759
1760/* locals */
1761
1762/* PHY routines */
1763static int ethernet_phy_get(unsigned int eth_port_num);
1764static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr);
1765
1766/* Ethernet Port routines */
1767static int eth_port_uc_addr(unsigned int eth_port_num, unsigned char uc_nibble,
1768 int option);
1769
1770/*
1771 * eth_port_init - Initialize the Ethernet port driver
1772 *
1773 * DESCRIPTION:
1774 * This function prepares the ethernet port to start its activity:
1775 * 1) Completes the ethernet port driver struct initialization toward port
1776 * start routine.
1777 * 2) Resets the device to a quiescent state in case of warm reboot.
1778 * 3) Enable SDMA access to all four DRAM banks as well as internal SRAM.
1779 * 4) Clean MAC tables. The reset status of those tables is unknown.
1780 * 5) Set PHY address.
1781 * Note: Call this routine prior to eth_port_start routine and after
1782 * setting user values in the user fields of Ethernet port control
1783 * struct.
1784 *
1785 * INPUT:
1786 * struct mv643xx_private *mp Ethernet port control struct
1787 *
1788 * OUTPUT:
1789 * See description.
1790 *
1791 * RETURN:
1792 * None.
1793 */
1794static void eth_port_init(struct mv643xx_private *mp)
1795{
1796 mp->port_rx_queue_command = 0;
1797 mp->port_tx_queue_command = 0;
1798
1799 mp->rx_resource_err = 0;
1800 mp->tx_resource_err = 0;
1801
1802 eth_port_reset(mp->port_num);
1803
1804 eth_port_init_mac_tables(mp->port_num);
1805
1806 ethernet_phy_reset(mp->port_num);
1807}
1808
1809/*
1810 * eth_port_start - Start the Ethernet port activity.
1811 *
1812 * DESCRIPTION:
1813 * This routine prepares the Ethernet port for Rx and Tx activity:
1814 * 1. Initialize Tx and Rx Current Descriptor Pointer for each queue that
1815 * has been initialized a descriptor's ring (using
1816 * ether_init_tx_desc_ring for Tx and ether_init_rx_desc_ring for Rx)
1817 * 2. Initialize and enable the Ethernet configuration port by writing to
1818 * the port's configuration and command registers.
1819 * 3. Initialize and enable the SDMA by writing to the SDMA's
1820 * configuration and command registers. After completing these steps,
1821 * the ethernet port SDMA can starts to perform Rx and Tx activities.
1822 *
1823 * Note: Each Rx and Tx queue descriptor's list must be initialized prior
1824 * to calling this function (use ether_init_tx_desc_ring for Tx queues
1825 * and ether_init_rx_desc_ring for Rx queues).
1826 *
1827 * INPUT:
1828 * struct mv643xx_private *mp Ethernet port control struct
1829 *
1830 * OUTPUT:
1831 * Ethernet port is ready to receive and transmit.
1832 *
1833 * RETURN:
1834 * None.
1835 */
1836static void eth_port_start(struct mv643xx_private *mp)
1837{
1838 unsigned int port_num = mp->port_num;
1839 int tx_curr_desc, rx_curr_desc;
1840
1841 /* Assignment of Tx CTRP of given queue */
1842 tx_curr_desc = mp->tx_curr_desc_q;
1843 mv_write(MV643XX_ETH_TX_CURRENT_QUEUE_DESC_PTR_0(port_num),
1844 (u32)((struct eth_tx_desc *)mp->tx_desc_dma + tx_curr_desc));
1845
1846 /* Assignment of Rx CRDP of given queue */
1847 rx_curr_desc = mp->rx_curr_desc_q;
1848 mv_write(MV643XX_ETH_RX_CURRENT_QUEUE_DESC_PTR_0(port_num),
1849 (u32)((struct eth_rx_desc *)mp->rx_desc_dma + rx_curr_desc));
1850
1851 /* Add the assigned Ethernet address to the port's address table */
1852 eth_port_uc_addr_set(port_num, mp->port_mac_addr);
1853
1854 /* Assign port configuration and command. */
1855 mv_write(MV643XX_ETH_PORT_CONFIG_REG(port_num), mp->port_config);
1856
1857 mv_write(MV643XX_ETH_PORT_CONFIG_EXTEND_REG(port_num),
1858 mp->port_config_extend);
1859
1860
1861 /* Increase the Rx side buffer size if supporting GigE */
1862 if (mp->port_serial_control & MV643XX_ETH_SET_GMII_SPEED_TO_1000)
1863 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
1864 (mp->port_serial_control & 0xfff1ffff) | (0x5 << 17));
1865 else
1866 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
1867 mp->port_serial_control);
1868
1869 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
1870 mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num)) |
1871 MV643XX_ETH_SERIAL_PORT_ENABLE);
1872
1873 /* Assign port SDMA configuration */
1874 mv_write(MV643XX_ETH_SDMA_CONFIG_REG(port_num),
1875 mp->port_sdma_config);
1876
1877 /* Enable port Rx. */
1878 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num),
1879 mp->port_rx_queue_command);
Dale Farnsworth8f543712005-09-02 12:34:35 -07001880
1881 /* Disable port bandwidth limits by clearing MTU register */
1882 mv_write(MV643XX_ETH_MAXIMUM_TRANSMIT_UNIT(port_num), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884
1885/*
1886 * eth_port_uc_addr_set - This function Set the port Unicast address.
1887 *
1888 * DESCRIPTION:
1889 * This function Set the port Ethernet MAC address.
1890 *
1891 * INPUT:
1892 * unsigned int eth_port_num Port number.
1893 * char * p_addr Address to be set
1894 *
1895 * OUTPUT:
1896 * Set MAC address low and high registers. also calls eth_port_uc_addr()
1897 * To set the unicast table with the proper information.
1898 *
1899 * RETURN:
1900 * N/A.
1901 *
1902 */
1903static void eth_port_uc_addr_set(unsigned int eth_port_num,
1904 unsigned char *p_addr)
1905{
1906 unsigned int mac_h;
1907 unsigned int mac_l;
1908
1909 mac_l = (p_addr[4] << 8) | (p_addr[5]);
1910 mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) |
1911 (p_addr[3] << 0);
1912
1913 mv_write(MV643XX_ETH_MAC_ADDR_LOW(eth_port_num), mac_l);
1914 mv_write(MV643XX_ETH_MAC_ADDR_HIGH(eth_port_num), mac_h);
1915
1916 /* Accept frames of this address */
1917 eth_port_uc_addr(eth_port_num, p_addr[5], ACCEPT_MAC_ADDR);
1918
1919 return;
1920}
1921
1922/*
1923 * eth_port_uc_addr_get - This function retrieves the port Unicast address
1924 * (MAC address) from the ethernet hw registers.
1925 *
1926 * DESCRIPTION:
1927 * This function retrieves the port Ethernet MAC address.
1928 *
1929 * INPUT:
1930 * unsigned int eth_port_num Port number.
1931 * char *MacAddr pointer where the MAC address is stored
1932 *
1933 * OUTPUT:
1934 * Copy the MAC address to the location pointed to by MacAddr
1935 *
1936 * RETURN:
1937 * N/A.
1938 *
1939 */
1940static void eth_port_uc_addr_get(struct net_device *dev, unsigned char *p_addr)
1941{
1942 struct mv643xx_private *mp = netdev_priv(dev);
1943 unsigned int mac_h;
1944 unsigned int mac_l;
1945
1946 mac_h = mv_read(MV643XX_ETH_MAC_ADDR_HIGH(mp->port_num));
1947 mac_l = mv_read(MV643XX_ETH_MAC_ADDR_LOW(mp->port_num));
1948
1949 p_addr[0] = (mac_h >> 24) & 0xff;
1950 p_addr[1] = (mac_h >> 16) & 0xff;
1951 p_addr[2] = (mac_h >> 8) & 0xff;
1952 p_addr[3] = mac_h & 0xff;
1953 p_addr[4] = (mac_l >> 8) & 0xff;
1954 p_addr[5] = mac_l & 0xff;
1955}
1956
1957/*
1958 * eth_port_uc_addr - This function Set the port unicast address table
1959 *
1960 * DESCRIPTION:
1961 * This function locates the proper entry in the Unicast table for the
1962 * specified MAC nibble and sets its properties according to function
1963 * parameters.
1964 *
1965 * INPUT:
1966 * unsigned int eth_port_num Port number.
1967 * unsigned char uc_nibble Unicast MAC Address last nibble.
1968 * int option 0 = Add, 1 = remove address.
1969 *
1970 * OUTPUT:
1971 * This function add/removes MAC addresses from the port unicast address
1972 * table.
1973 *
1974 * RETURN:
1975 * true is output succeeded.
1976 * false if option parameter is invalid.
1977 *
1978 */
1979static int eth_port_uc_addr(unsigned int eth_port_num, unsigned char uc_nibble,
1980 int option)
1981{
1982 unsigned int unicast_reg;
1983 unsigned int tbl_offset;
1984 unsigned int reg_offset;
1985
1986 /* Locate the Unicast table entry */
1987 uc_nibble = (0xf & uc_nibble);
1988 tbl_offset = (uc_nibble / 4) * 4; /* Register offset from unicast table base */
1989 reg_offset = uc_nibble % 4; /* Entry offset within the above register */
1990
1991 switch (option) {
1992 case REJECT_MAC_ADDR:
1993 /* Clear accepts frame bit at given unicast DA table entry */
1994 unicast_reg = mv_read((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
1995 (eth_port_num) + tbl_offset));
1996
1997 unicast_reg &= (0x0E << (8 * reg_offset));
1998
1999 mv_write((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
2000 (eth_port_num) + tbl_offset), unicast_reg);
2001 break;
2002
2003 case ACCEPT_MAC_ADDR:
2004 /* Set accepts frame bit at unicast DA filter table entry */
2005 unicast_reg =
2006 mv_read((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
2007 (eth_port_num) + tbl_offset));
2008
2009 unicast_reg |= (0x01 << (8 * reg_offset));
2010
2011 mv_write((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
2012 (eth_port_num) + tbl_offset), unicast_reg);
2013
2014 break;
2015
2016 default:
2017 return 0;
2018 }
2019
2020 return 1;
2021}
2022
2023/*
Dale Farnsworth16e03012006-01-16 16:50:02 -07002024 * The entries in each table are indexed by a hash of a packet's MAC
2025 * address. One bit in each entry determines whether the packet is
2026 * accepted. There are 4 entries (each 8 bits wide) in each register
2027 * of the table. The bits in each entry are defined as follows:
2028 * 0 Accept=1, Drop=0
2029 * 3-1 Queue (ETH_Q0=0)
2030 * 7-4 Reserved = 0;
2031 */
2032static void eth_port_set_filter_table_entry(int table, unsigned char entry)
2033{
2034 unsigned int table_reg;
2035 unsigned int tbl_offset;
2036 unsigned int reg_offset;
2037
2038 tbl_offset = (entry / 4) * 4; /* Register offset of DA table entry */
2039 reg_offset = entry % 4; /* Entry offset within the register */
2040
2041 /* Set "accepts frame bit" at specified table entry */
2042 table_reg = mv_read(table + tbl_offset);
2043 table_reg |= 0x01 << (8 * reg_offset);
2044 mv_write(table + tbl_offset, table_reg);
2045}
2046
2047/*
2048 * eth_port_mc_addr - Multicast address settings.
2049 *
2050 * The MV device supports multicast using two tables:
2051 * 1) Special Multicast Table for MAC addresses of the form
2052 * 0x01-00-5E-00-00-XX (where XX is between 0x00 and 0x_FF).
2053 * The MAC DA[7:0] bits are used as a pointer to the Special Multicast
2054 * Table entries in the DA-Filter table.
2055 * 2) Other Multicast Table for multicast of another type. A CRC-8bit
2056 * is used as an index to the Other Multicast Table entries in the
2057 * DA-Filter table. This function calculates the CRC-8bit value.
2058 * In either case, eth_port_set_filter_table_entry() is then called
2059 * to set to set the actual table entry.
2060 */
2061static void eth_port_mc_addr(unsigned int eth_port_num, unsigned char *p_addr)
2062{
2063 unsigned int mac_h;
2064 unsigned int mac_l;
2065 unsigned char crc_result = 0;
2066 int table;
2067 int mac_array[48];
2068 int crc[8];
2069 int i;
2070
2071 if ((p_addr[0] == 0x01) && (p_addr[1] == 0x00) &&
2072 (p_addr[2] == 0x5E) && (p_addr[3] == 0x00) && (p_addr[4] == 0x00)) {
2073 table = MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
2074 (eth_port_num);
2075 eth_port_set_filter_table_entry(table, p_addr[5]);
2076 return;
2077 }
2078
2079 /* Calculate CRC-8 out of the given address */
2080 mac_h = (p_addr[0] << 8) | (p_addr[1]);
2081 mac_l = (p_addr[2] << 24) | (p_addr[3] << 16) |
2082 (p_addr[4] << 8) | (p_addr[5] << 0);
2083
2084 for (i = 0; i < 32; i++)
2085 mac_array[i] = (mac_l >> i) & 0x1;
2086 for (i = 32; i < 48; i++)
2087 mac_array[i] = (mac_h >> (i - 32)) & 0x1;
2088
2089 crc[0] = mac_array[45] ^ mac_array[43] ^ mac_array[40] ^ mac_array[39] ^
2090 mac_array[35] ^ mac_array[34] ^ mac_array[31] ^ mac_array[30] ^
2091 mac_array[28] ^ mac_array[23] ^ mac_array[21] ^ mac_array[19] ^
2092 mac_array[18] ^ mac_array[16] ^ mac_array[14] ^ mac_array[12] ^
2093 mac_array[8] ^ mac_array[7] ^ mac_array[6] ^ mac_array[0];
2094
2095 crc[1] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
2096 mac_array[41] ^ mac_array[39] ^ mac_array[36] ^ mac_array[34] ^
2097 mac_array[32] ^ mac_array[30] ^ mac_array[29] ^ mac_array[28] ^
2098 mac_array[24] ^ mac_array[23] ^ mac_array[22] ^ mac_array[21] ^
2099 mac_array[20] ^ mac_array[18] ^ mac_array[17] ^ mac_array[16] ^
2100 mac_array[15] ^ mac_array[14] ^ mac_array[13] ^ mac_array[12] ^
2101 mac_array[9] ^ mac_array[6] ^ mac_array[1] ^ mac_array[0];
2102
2103 crc[2] = mac_array[47] ^ mac_array[46] ^ mac_array[44] ^ mac_array[43] ^
2104 mac_array[42] ^ mac_array[39] ^ mac_array[37] ^ mac_array[34] ^
2105 mac_array[33] ^ mac_array[29] ^ mac_array[28] ^ mac_array[25] ^
2106 mac_array[24] ^ mac_array[22] ^ mac_array[17] ^ mac_array[15] ^
2107 mac_array[13] ^ mac_array[12] ^ mac_array[10] ^ mac_array[8] ^
2108 mac_array[6] ^ mac_array[2] ^ mac_array[1] ^ mac_array[0];
2109
2110 crc[3] = mac_array[47] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
2111 mac_array[40] ^ mac_array[38] ^ mac_array[35] ^ mac_array[34] ^
2112 mac_array[30] ^ mac_array[29] ^ mac_array[26] ^ mac_array[25] ^
2113 mac_array[23] ^ mac_array[18] ^ mac_array[16] ^ mac_array[14] ^
2114 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[7] ^
2115 mac_array[3] ^ mac_array[2] ^ mac_array[1];
2116
2117 crc[4] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[41] ^
2118 mac_array[39] ^ mac_array[36] ^ mac_array[35] ^ mac_array[31] ^
2119 mac_array[30] ^ mac_array[27] ^ mac_array[26] ^ mac_array[24] ^
2120 mac_array[19] ^ mac_array[17] ^ mac_array[15] ^ mac_array[14] ^
2121 mac_array[12] ^ mac_array[10] ^ mac_array[8] ^ mac_array[4] ^
2122 mac_array[3] ^ mac_array[2];
2123
2124 crc[5] = mac_array[47] ^ mac_array[46] ^ mac_array[45] ^ mac_array[42] ^
2125 mac_array[40] ^ mac_array[37] ^ mac_array[36] ^ mac_array[32] ^
2126 mac_array[31] ^ mac_array[28] ^ mac_array[27] ^ mac_array[25] ^
2127 mac_array[20] ^ mac_array[18] ^ mac_array[16] ^ mac_array[15] ^
2128 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[5] ^
2129 mac_array[4] ^ mac_array[3];
2130
2131 crc[6] = mac_array[47] ^ mac_array[46] ^ mac_array[43] ^ mac_array[41] ^
2132 mac_array[38] ^ mac_array[37] ^ mac_array[33] ^ mac_array[32] ^
2133 mac_array[29] ^ mac_array[28] ^ mac_array[26] ^ mac_array[21] ^
2134 mac_array[19] ^ mac_array[17] ^ mac_array[16] ^ mac_array[14] ^
2135 mac_array[12] ^ mac_array[10] ^ mac_array[6] ^ mac_array[5] ^
2136 mac_array[4];
2137
2138 crc[7] = mac_array[47] ^ mac_array[44] ^ mac_array[42] ^ mac_array[39] ^
2139 mac_array[38] ^ mac_array[34] ^ mac_array[33] ^ mac_array[30] ^
2140 mac_array[29] ^ mac_array[27] ^ mac_array[22] ^ mac_array[20] ^
2141 mac_array[18] ^ mac_array[17] ^ mac_array[15] ^ mac_array[13] ^
2142 mac_array[11] ^ mac_array[7] ^ mac_array[6] ^ mac_array[5];
2143
2144 for (i = 0; i < 8; i++)
2145 crc_result = crc_result | (crc[i] << i);
2146
2147 table = MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num);
2148 eth_port_set_filter_table_entry(table, crc_result);
2149}
2150
2151/*
2152 * Set the entire multicast list based on dev->mc_list.
2153 */
2154static void eth_port_set_multicast_list(struct net_device *dev)
2155{
2156
2157 struct dev_mc_list *mc_list;
2158 int i;
2159 int table_index;
2160 struct mv643xx_private *mp = netdev_priv(dev);
2161 unsigned int eth_port_num = mp->port_num;
2162
2163 /* If the device is in promiscuous mode or in all multicast mode,
2164 * we will fully populate both multicast tables with accept.
2165 * This is guaranteed to yield a match on all multicast addresses...
2166 */
2167 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI)) {
2168 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2169 /* Set all entries in DA filter special multicast
2170 * table (Ex_dFSMT)
2171 * Set for ETH_Q0 for now
2172 * Bits
2173 * 0 Accept=1, Drop=0
2174 * 3-1 Queue ETH_Q0=0
2175 * 7-4 Reserved = 0;
2176 */
2177 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101);
2178
2179 /* Set all entries in DA filter other multicast
2180 * table (Ex_dFOMT)
2181 * Set for ETH_Q0 for now
2182 * Bits
2183 * 0 Accept=1, Drop=0
2184 * 3-1 Queue ETH_Q0=0
2185 * 7-4 Reserved = 0;
2186 */
2187 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101);
2188 }
2189 return;
2190 }
2191
2192 /* We will clear out multicast tables every time we get the list.
2193 * Then add the entire new list...
2194 */
2195 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2196 /* Clear DA filter special multicast table (Ex_dFSMT) */
2197 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
2198 (eth_port_num) + table_index, 0);
2199
2200 /* Clear DA filter other multicast table (Ex_dFOMT) */
2201 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE
2202 (eth_port_num) + table_index, 0);
2203 }
2204
2205 /* Get pointer to net_device multicast list and add each one... */
2206 for (i = 0, mc_list = dev->mc_list;
2207 (i < 256) && (mc_list != NULL) && (i < dev->mc_count);
2208 i++, mc_list = mc_list->next)
2209 if (mc_list->dmi_addrlen == 6)
2210 eth_port_mc_addr(eth_port_num, mc_list->dmi_addr);
2211}
2212
2213/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 * eth_port_init_mac_tables - Clear all entrance in the UC, SMC and OMC tables
2215 *
2216 * DESCRIPTION:
2217 * Go through all the DA filter tables (Unicast, Special Multicast &
2218 * Other Multicast) and set each entry to 0.
2219 *
2220 * INPUT:
2221 * unsigned int eth_port_num Ethernet Port number.
2222 *
2223 * OUTPUT:
2224 * Multicast and Unicast packets are rejected.
2225 *
2226 * RETURN:
2227 * None.
2228 */
2229static void eth_port_init_mac_tables(unsigned int eth_port_num)
2230{
2231 int table_index;
2232
2233 /* Clear DA filter unicast table (Ex_dFUT) */
2234 for (table_index = 0; table_index <= 0xC; table_index += 4)
2235 mv_write((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
2236 (eth_port_num) + table_index), 0);
2237
2238 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2239 /* Clear DA filter special multicast table (Ex_dFSMT) */
Dale Farnsworth16e03012006-01-16 16:50:02 -07002240 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
2241 (eth_port_num) + table_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 /* Clear DA filter other multicast table (Ex_dFOMT) */
Dale Farnsworth16e03012006-01-16 16:50:02 -07002243 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE
2244 (eth_port_num) + table_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 }
2246}
2247
2248/*
2249 * eth_clear_mib_counters - Clear all MIB counters
2250 *
2251 * DESCRIPTION:
2252 * This function clears all MIB counters of a specific ethernet port.
2253 * A read from the MIB counter will reset the counter.
2254 *
2255 * INPUT:
2256 * unsigned int eth_port_num Ethernet Port number.
2257 *
2258 * OUTPUT:
2259 * After reading all MIB counters, the counters resets.
2260 *
2261 * RETURN:
2262 * MIB counter value.
2263 *
2264 */
2265static void eth_clear_mib_counters(unsigned int eth_port_num)
2266{
2267 int i;
2268
2269 /* Perform dummy reads from MIB counters */
2270 for (i = ETH_MIB_GOOD_OCTETS_RECEIVED_LOW; i < ETH_MIB_LATE_COLLISION;
2271 i += 4)
2272 mv_read(MV643XX_ETH_MIB_COUNTERS_BASE(eth_port_num) + i);
2273}
2274
2275static inline u32 read_mib(struct mv643xx_private *mp, int offset)
2276{
2277 return mv_read(MV643XX_ETH_MIB_COUNTERS_BASE(mp->port_num) + offset);
2278}
2279
2280static void eth_update_mib_counters(struct mv643xx_private *mp)
2281{
2282 struct mv643xx_mib_counters *p = &mp->mib_counters;
2283 int offset;
2284
2285 p->good_octets_received +=
2286 read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_LOW);
2287 p->good_octets_received +=
2288 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH) << 32;
2289
2290 for (offset = ETH_MIB_BAD_OCTETS_RECEIVED;
2291 offset <= ETH_MIB_FRAMES_1024_TO_MAX_OCTETS;
2292 offset += 4)
2293 *(u32 *)((char *)p + offset) = read_mib(mp, offset);
2294
2295 p->good_octets_sent += read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_LOW);
2296 p->good_octets_sent +=
2297 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_HIGH) << 32;
2298
2299 for (offset = ETH_MIB_GOOD_FRAMES_SENT;
2300 offset <= ETH_MIB_LATE_COLLISION;
2301 offset += 4)
2302 *(u32 *)((char *)p + offset) = read_mib(mp, offset);
2303}
2304
2305/*
2306 * ethernet_phy_detect - Detect whether a phy is present
2307 *
2308 * DESCRIPTION:
2309 * This function tests whether there is a PHY present on
2310 * the specified port.
2311 *
2312 * INPUT:
2313 * unsigned int eth_port_num Ethernet Port number.
2314 *
2315 * OUTPUT:
2316 * None
2317 *
2318 * RETURN:
2319 * 0 on success
2320 * -ENODEV on failure
2321 *
2322 */
2323static int ethernet_phy_detect(unsigned int port_num)
2324{
2325 unsigned int phy_reg_data0;
2326 int auto_neg;
2327
2328 eth_port_read_smi_reg(port_num, 0, &phy_reg_data0);
2329 auto_neg = phy_reg_data0 & 0x1000;
2330 phy_reg_data0 ^= 0x1000; /* invert auto_neg */
2331 eth_port_write_smi_reg(port_num, 0, phy_reg_data0);
2332
2333 eth_port_read_smi_reg(port_num, 0, &phy_reg_data0);
2334 if ((phy_reg_data0 & 0x1000) == auto_neg)
2335 return -ENODEV; /* change didn't take */
2336
2337 phy_reg_data0 ^= 0x1000;
2338 eth_port_write_smi_reg(port_num, 0, phy_reg_data0);
2339 return 0;
2340}
2341
2342/*
2343 * ethernet_phy_get - Get the ethernet port PHY address.
2344 *
2345 * DESCRIPTION:
2346 * This routine returns the given ethernet port PHY address.
2347 *
2348 * INPUT:
2349 * unsigned int eth_port_num Ethernet Port number.
2350 *
2351 * OUTPUT:
2352 * None.
2353 *
2354 * RETURN:
2355 * PHY address.
2356 *
2357 */
2358static int ethernet_phy_get(unsigned int eth_port_num)
2359{
2360 unsigned int reg_data;
2361
2362 reg_data = mv_read(MV643XX_ETH_PHY_ADDR_REG);
2363
2364 return ((reg_data >> (5 * eth_port_num)) & 0x1f);
2365}
2366
2367/*
2368 * ethernet_phy_set - Set the ethernet port PHY address.
2369 *
2370 * DESCRIPTION:
2371 * This routine sets the given ethernet port PHY address.
2372 *
2373 * INPUT:
2374 * unsigned int eth_port_num Ethernet Port number.
2375 * int phy_addr PHY address.
2376 *
2377 * OUTPUT:
2378 * None.
2379 *
2380 * RETURN:
2381 * None.
2382 *
2383 */
2384static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr)
2385{
2386 u32 reg_data;
2387 int addr_shift = 5 * eth_port_num;
2388
2389 reg_data = mv_read(MV643XX_ETH_PHY_ADDR_REG);
2390 reg_data &= ~(0x1f << addr_shift);
2391 reg_data |= (phy_addr & 0x1f) << addr_shift;
2392 mv_write(MV643XX_ETH_PHY_ADDR_REG, reg_data);
2393}
2394
2395/*
2396 * ethernet_phy_reset - Reset Ethernet port PHY.
2397 *
2398 * DESCRIPTION:
2399 * This routine utilizes the SMI interface to reset the ethernet port PHY.
2400 *
2401 * INPUT:
2402 * unsigned int eth_port_num Ethernet Port number.
2403 *
2404 * OUTPUT:
2405 * The PHY is reset.
2406 *
2407 * RETURN:
2408 * None.
2409 *
2410 */
2411static void ethernet_phy_reset(unsigned int eth_port_num)
2412{
2413 unsigned int phy_reg_data;
2414
2415 /* Reset the PHY */
2416 eth_port_read_smi_reg(eth_port_num, 0, &phy_reg_data);
2417 phy_reg_data |= 0x8000; /* Set bit 15 to reset the PHY */
2418 eth_port_write_smi_reg(eth_port_num, 0, phy_reg_data);
2419}
2420
2421/*
2422 * eth_port_reset - Reset Ethernet port
2423 *
2424 * DESCRIPTION:
2425 * This routine resets the chip by aborting any SDMA engine activity and
2426 * clearing the MIB counters. The Receiver and the Transmit unit are in
2427 * idle state after this command is performed and the port is disabled.
2428 *
2429 * INPUT:
2430 * unsigned int eth_port_num Ethernet Port number.
2431 *
2432 * OUTPUT:
2433 * Channel activity is halted.
2434 *
2435 * RETURN:
2436 * None.
2437 *
2438 */
2439static void eth_port_reset(unsigned int port_num)
2440{
2441 unsigned int reg_data;
2442
2443 /* Stop Tx port activity. Check port Tx activity. */
2444 reg_data = mv_read(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num));
2445
2446 if (reg_data & 0xFF) {
2447 /* Issue stop command for active channels only */
2448 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num),
2449 (reg_data << 8));
2450
2451 /* Wait for all Tx activity to terminate. */
2452 /* Check port cause register that all Tx queues are stopped */
2453 while (mv_read(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num))
2454 & 0xFF)
2455 udelay(10);
2456 }
2457
2458 /* Stop Rx port activity. Check port Rx activity. */
2459 reg_data = mv_read(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num));
2460
2461 if (reg_data & 0xFF) {
2462 /* Issue stop command for active channels only */
2463 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num),
2464 (reg_data << 8));
2465
2466 /* Wait for all Rx activity to terminate. */
2467 /* Check port cause register that all Rx queues are stopped */
2468 while (mv_read(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num))
2469 & 0xFF)
2470 udelay(10);
2471 }
2472
2473 /* Clear all MIB counters */
2474 eth_clear_mib_counters(port_num);
2475
2476 /* Reset the Enable bit in the Configuration Register */
2477 reg_data = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num));
2478 reg_data &= ~MV643XX_ETH_SERIAL_PORT_ENABLE;
2479 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), reg_data);
2480}
2481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
2483static int eth_port_autoneg_supported(unsigned int eth_port_num)
2484{
2485 unsigned int phy_reg_data0;
2486
2487 eth_port_read_smi_reg(eth_port_num, 0, &phy_reg_data0);
2488
2489 return phy_reg_data0 & 0x1000;
2490}
2491
2492static int eth_port_link_is_up(unsigned int eth_port_num)
2493{
2494 unsigned int phy_reg_data1;
2495
2496 eth_port_read_smi_reg(eth_port_num, 1, &phy_reg_data1);
2497
2498 if (eth_port_autoneg_supported(eth_port_num)) {
2499 if (phy_reg_data1 & 0x20) /* auto-neg complete */
2500 return 1;
2501 } else if (phy_reg_data1 & 0x4) /* link up */
2502 return 1;
2503
2504 return 0;
2505}
2506
2507/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 * eth_port_read_smi_reg - Read PHY registers
2509 *
2510 * DESCRIPTION:
2511 * This routine utilize the SMI interface to interact with the PHY in
2512 * order to perform PHY register read.
2513 *
2514 * INPUT:
2515 * unsigned int port_num Ethernet Port number.
2516 * unsigned int phy_reg PHY register address offset.
2517 * unsigned int *value Register value buffer.
2518 *
2519 * OUTPUT:
2520 * Write the value of a specified PHY register into given buffer.
2521 *
2522 * RETURN:
2523 * false if the PHY is busy or read data is not in valid state.
2524 * true otherwise.
2525 *
2526 */
2527static void eth_port_read_smi_reg(unsigned int port_num,
2528 unsigned int phy_reg, unsigned int *value)
2529{
2530 int phy_addr = ethernet_phy_get(port_num);
2531 unsigned long flags;
2532 int i;
2533
2534 /* the SMI register is a shared resource */
2535 spin_lock_irqsave(&mv643xx_eth_phy_lock, flags);
2536
2537 /* wait for the SMI register to become available */
2538 for (i = 0; mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_BUSY; i++) {
2539 if (i == PHY_WAIT_ITERATIONS) {
2540 printk("mv643xx PHY busy timeout, port %d\n", port_num);
2541 goto out;
2542 }
2543 udelay(PHY_WAIT_MICRO_SECONDS);
2544 }
2545
2546 mv_write(MV643XX_ETH_SMI_REG,
2547 (phy_addr << 16) | (phy_reg << 21) | ETH_SMI_OPCODE_READ);
2548
2549 /* now wait for the data to be valid */
2550 for (i = 0; !(mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_READ_VALID); i++) {
2551 if (i == PHY_WAIT_ITERATIONS) {
2552 printk("mv643xx PHY read timeout, port %d\n", port_num);
2553 goto out;
2554 }
2555 udelay(PHY_WAIT_MICRO_SECONDS);
2556 }
2557
2558 *value = mv_read(MV643XX_ETH_SMI_REG) & 0xffff;
2559out:
2560 spin_unlock_irqrestore(&mv643xx_eth_phy_lock, flags);
2561}
2562
2563/*
2564 * eth_port_write_smi_reg - Write to PHY registers
2565 *
2566 * DESCRIPTION:
2567 * This routine utilize the SMI interface to interact with the PHY in
2568 * order to perform writes to PHY registers.
2569 *
2570 * INPUT:
2571 * unsigned int eth_port_num Ethernet Port number.
2572 * unsigned int phy_reg PHY register address offset.
2573 * unsigned int value Register value.
2574 *
2575 * OUTPUT:
2576 * Write the given value to the specified PHY register.
2577 *
2578 * RETURN:
2579 * false if the PHY is busy.
2580 * true otherwise.
2581 *
2582 */
2583static void eth_port_write_smi_reg(unsigned int eth_port_num,
2584 unsigned int phy_reg, unsigned int value)
2585{
2586 int phy_addr;
2587 int i;
2588 unsigned long flags;
2589
2590 phy_addr = ethernet_phy_get(eth_port_num);
2591
2592 /* the SMI register is a shared resource */
2593 spin_lock_irqsave(&mv643xx_eth_phy_lock, flags);
2594
2595 /* wait for the SMI register to become available */
2596 for (i = 0; mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_BUSY; i++) {
2597 if (i == PHY_WAIT_ITERATIONS) {
2598 printk("mv643xx PHY busy timeout, port %d\n",
2599 eth_port_num);
2600 goto out;
2601 }
2602 udelay(PHY_WAIT_MICRO_SECONDS);
2603 }
2604
2605 mv_write(MV643XX_ETH_SMI_REG, (phy_addr << 16) | (phy_reg << 21) |
2606 ETH_SMI_OPCODE_WRITE | (value & 0xffff));
2607out:
2608 spin_unlock_irqrestore(&mv643xx_eth_phy_lock, flags);
2609}
2610
2611/*
2612 * eth_port_send - Send an Ethernet packet
2613 *
2614 * DESCRIPTION:
2615 * This routine send a given packet described by p_pktinfo parameter. It
2616 * supports transmitting of a packet spaned over multiple buffers. The
2617 * routine updates 'curr' and 'first' indexes according to the packet
2618 * segment passed to the routine. In case the packet segment is first,
2619 * the 'first' index is update. In any case, the 'curr' index is updated.
2620 * If the routine get into Tx resource error it assigns 'curr' index as
2621 * 'first'. This way the function can abort Tx process of multiple
2622 * descriptors per packet.
2623 *
2624 * INPUT:
2625 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2626 * struct pkt_info *p_pkt_info User packet buffer.
2627 *
2628 * OUTPUT:
2629 * Tx ring 'curr' and 'first' indexes are updated.
2630 *
2631 * RETURN:
2632 * ETH_QUEUE_FULL in case of Tx resource error.
2633 * ETH_ERROR in case the routine can not access Tx desc ring.
2634 * ETH_QUEUE_LAST_RESOURCE if the routine uses the last Tx resource.
2635 * ETH_OK otherwise.
2636 *
2637 */
2638#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
2639/*
2640 * Modified to include the first descriptor pointer in case of SG
2641 */
2642static ETH_FUNC_RET_STATUS eth_port_send(struct mv643xx_private *mp,
2643 struct pkt_info *p_pkt_info)
2644{
2645 int tx_desc_curr, tx_desc_used, tx_first_desc, tx_next_desc;
2646 struct eth_tx_desc *current_descriptor;
2647 struct eth_tx_desc *first_descriptor;
2648 u32 command;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002649 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
2651 /* Do not process Tx ring in case of Tx ring resource error */
2652 if (mp->tx_resource_err)
2653 return ETH_QUEUE_FULL;
2654
2655 /*
2656 * The hardware requires that each buffer that is <= 8 bytes
2657 * in length must be aligned on an 8 byte boundary.
2658 */
2659 if (p_pkt_info->byte_cnt <= 8 && p_pkt_info->buf_ptr & 0x7) {
2660 printk(KERN_ERR
2661 "mv643xx_eth port %d: packet size <= 8 problem\n",
2662 mp->port_num);
2663 return ETH_ERROR;
2664 }
2665
Dale Farnsworth8f518702006-01-16 16:56:30 -07002666 spin_lock_irqsave(&mp->lock, flags);
2667
Dale Farnsworthb111ceb2005-09-02 10:25:24 -07002668 mp->tx_ring_skbs++;
2669 BUG_ON(mp->tx_ring_skbs > mp->tx_ring_size);
2670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 /* Get the Tx Desc ring indexes */
2672 tx_desc_curr = mp->tx_curr_desc_q;
2673 tx_desc_used = mp->tx_used_desc_q;
2674
2675 current_descriptor = &mp->p_tx_desc_area[tx_desc_curr];
2676
2677 tx_next_desc = (tx_desc_curr + 1) % mp->tx_ring_size;
2678
2679 current_descriptor->buf_ptr = p_pkt_info->buf_ptr;
2680 current_descriptor->byte_cnt = p_pkt_info->byte_cnt;
2681 current_descriptor->l4i_chk = p_pkt_info->l4i_chk;
2682 mp->tx_skb[tx_desc_curr] = p_pkt_info->return_info;
2683
2684 command = p_pkt_info->cmd_sts | ETH_ZERO_PADDING | ETH_GEN_CRC |
2685 ETH_BUFFER_OWNED_BY_DMA;
2686 if (command & ETH_TX_FIRST_DESC) {
2687 tx_first_desc = tx_desc_curr;
2688 mp->tx_first_desc_q = tx_first_desc;
2689 first_descriptor = current_descriptor;
2690 mp->tx_first_command = command;
2691 } else {
2692 tx_first_desc = mp->tx_first_desc_q;
2693 first_descriptor = &mp->p_tx_desc_area[tx_first_desc];
2694 BUG_ON(first_descriptor == NULL);
2695 current_descriptor->cmd_sts = command;
2696 }
2697
2698 if (command & ETH_TX_LAST_DESC) {
2699 wmb();
2700 first_descriptor->cmd_sts = mp->tx_first_command;
2701
2702 wmb();
2703 ETH_ENABLE_TX_QUEUE(mp->port_num);
2704
2705 /*
2706 * Finish Tx packet. Update first desc in case of Tx resource
2707 * error */
2708 tx_first_desc = tx_next_desc;
2709 mp->tx_first_desc_q = tx_first_desc;
2710 }
2711
2712 /* Check for ring index overlap in the Tx desc ring */
2713 if (tx_next_desc == tx_desc_used) {
2714 mp->tx_resource_err = 1;
2715 mp->tx_curr_desc_q = tx_first_desc;
2716
Dale Farnsworth8f518702006-01-16 16:56:30 -07002717 spin_unlock_irqrestore(&mp->lock, flags);
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 return ETH_QUEUE_LAST_RESOURCE;
2720 }
2721
2722 mp->tx_curr_desc_q = tx_next_desc;
2723
Dale Farnsworth8f518702006-01-16 16:56:30 -07002724 spin_unlock_irqrestore(&mp->lock, flags);
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 return ETH_OK;
2727}
2728#else
2729static ETH_FUNC_RET_STATUS eth_port_send(struct mv643xx_private *mp,
2730 struct pkt_info *p_pkt_info)
2731{
2732 int tx_desc_curr;
2733 int tx_desc_used;
2734 struct eth_tx_desc *current_descriptor;
2735 unsigned int command_status;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002736 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738 /* Do not process Tx ring in case of Tx ring resource error */
2739 if (mp->tx_resource_err)
2740 return ETH_QUEUE_FULL;
2741
Dale Farnsworth8f518702006-01-16 16:56:30 -07002742 spin_lock_irqsave(&mp->lock, flags);
2743
Dale Farnsworthb111ceb2005-09-02 10:25:24 -07002744 mp->tx_ring_skbs++;
2745 BUG_ON(mp->tx_ring_skbs > mp->tx_ring_size);
2746
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 /* Get the Tx Desc ring indexes */
2748 tx_desc_curr = mp->tx_curr_desc_q;
2749 tx_desc_used = mp->tx_used_desc_q;
2750 current_descriptor = &mp->p_tx_desc_area[tx_desc_curr];
2751
2752 command_status = p_pkt_info->cmd_sts | ETH_ZERO_PADDING | ETH_GEN_CRC;
2753 current_descriptor->buf_ptr = p_pkt_info->buf_ptr;
2754 current_descriptor->byte_cnt = p_pkt_info->byte_cnt;
2755 mp->tx_skb[tx_desc_curr] = p_pkt_info->return_info;
2756
2757 /* Set last desc with DMA ownership and interrupt enable. */
2758 wmb();
2759 current_descriptor->cmd_sts = command_status |
2760 ETH_BUFFER_OWNED_BY_DMA | ETH_TX_ENABLE_INTERRUPT;
2761
2762 wmb();
2763 ETH_ENABLE_TX_QUEUE(mp->port_num);
2764
2765 /* Finish Tx packet. Update first desc in case of Tx resource error */
2766 tx_desc_curr = (tx_desc_curr + 1) % mp->tx_ring_size;
2767
2768 /* Update the current descriptor */
2769 mp->tx_curr_desc_q = tx_desc_curr;
2770
2771 /* Check for ring index overlap in the Tx desc ring */
2772 if (tx_desc_curr == tx_desc_used) {
2773 mp->tx_resource_err = 1;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002774
2775 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 return ETH_QUEUE_LAST_RESOURCE;
2777 }
2778
Dale Farnsworth8f518702006-01-16 16:56:30 -07002779 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 return ETH_OK;
2781}
2782#endif
2783
2784/*
2785 * eth_tx_return_desc - Free all used Tx descriptors
2786 *
2787 * DESCRIPTION:
2788 * This routine returns the transmitted packet information to the caller.
2789 * It uses the 'first' index to support Tx desc return in case a transmit
2790 * of a packet spanned over multiple buffer still in process.
2791 * In case the Tx queue was in "resource error" condition, where there are
2792 * no available Tx resources, the function resets the resource error flag.
2793 *
2794 * INPUT:
2795 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2796 * struct pkt_info *p_pkt_info User packet buffer.
2797 *
2798 * OUTPUT:
2799 * Tx ring 'first' and 'used' indexes are updated.
2800 *
2801 * RETURN:
Dale Farnsworth8f518702006-01-16 16:56:30 -07002802 * ETH_OK on success
2803 * ETH_ERROR otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 *
2805 */
2806static ETH_FUNC_RET_STATUS eth_tx_return_desc(struct mv643xx_private *mp,
2807 struct pkt_info *p_pkt_info)
2808{
2809 int tx_desc_used;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002810 int tx_busy_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 struct eth_tx_desc *p_tx_desc_used;
2812 unsigned int command_status;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002813 unsigned long flags;
2814 int err = ETH_OK;
2815
2816 spin_lock_irqsave(&mp->lock, flags);
2817
2818#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
2819 tx_busy_desc = mp->tx_first_desc_q;
2820#else
2821 tx_busy_desc = mp->tx_curr_desc_q;
2822#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
2824 /* Get the Tx Desc ring indexes */
2825 tx_desc_used = mp->tx_used_desc_q;
2826
2827 p_tx_desc_used = &mp->p_tx_desc_area[tx_desc_used];
2828
2829 /* Sanity check */
Dale Farnsworth8f518702006-01-16 16:56:30 -07002830 if (p_tx_desc_used == NULL) {
2831 err = ETH_ERROR;
2832 goto out;
2833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
2835 /* Stop release. About to overlap the current available Tx descriptor */
Dale Farnsworth8f518702006-01-16 16:56:30 -07002836 if (tx_desc_used == tx_busy_desc && !mp->tx_resource_err) {
2837 err = ETH_ERROR;
2838 goto out;
2839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
2841 command_status = p_tx_desc_used->cmd_sts;
2842
2843 /* Still transmitting... */
Dale Farnsworth8f518702006-01-16 16:56:30 -07002844 if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) {
2845 err = ETH_ERROR;
2846 goto out;
2847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 /* Pass the packet information to the caller */
2850 p_pkt_info->cmd_sts = command_status;
2851 p_pkt_info->return_info = mp->tx_skb[tx_desc_used];
Paolo Galtieri4eaa3cb2006-01-16 16:48:58 -07002852 p_pkt_info->buf_ptr = p_tx_desc_used->buf_ptr;
2853 p_pkt_info->byte_cnt = p_tx_desc_used->byte_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 mp->tx_skb[tx_desc_used] = NULL;
2855
2856 /* Update the next descriptor to release. */
2857 mp->tx_used_desc_q = (tx_desc_used + 1) % mp->tx_ring_size;
2858
2859 /* Any Tx return cancels the Tx resource error status */
2860 mp->tx_resource_err = 0;
2861
Dale Farnsworthb111ceb2005-09-02 10:25:24 -07002862 BUG_ON(mp->tx_ring_skbs == 0);
2863 mp->tx_ring_skbs--;
2864
Dale Farnsworth8f518702006-01-16 16:56:30 -07002865out:
2866 spin_unlock_irqrestore(&mp->lock, flags);
2867
2868 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869}
2870
2871/*
2872 * eth_port_receive - Get received information from Rx ring.
2873 *
2874 * DESCRIPTION:
2875 * This routine returns the received data to the caller. There is no
2876 * data copying during routine operation. All information is returned
2877 * using pointer to packet information struct passed from the caller.
2878 * If the routine exhausts Rx ring resources then the resource error flag
2879 * is set.
2880 *
2881 * INPUT:
2882 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2883 * struct pkt_info *p_pkt_info User packet buffer.
2884 *
2885 * OUTPUT:
2886 * Rx ring current and used indexes are updated.
2887 *
2888 * RETURN:
2889 * ETH_ERROR in case the routine can not access Rx desc ring.
2890 * ETH_QUEUE_FULL if Rx ring resources are exhausted.
2891 * ETH_END_OF_JOB if there is no received data.
2892 * ETH_OK otherwise.
2893 */
2894static ETH_FUNC_RET_STATUS eth_port_receive(struct mv643xx_private *mp,
2895 struct pkt_info *p_pkt_info)
2896{
2897 int rx_next_curr_desc, rx_curr_desc, rx_used_desc;
2898 volatile struct eth_rx_desc *p_rx_desc;
2899 unsigned int command_status;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002900 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902 /* Do not process Rx ring in case of Rx ring resource error */
2903 if (mp->rx_resource_err)
2904 return ETH_QUEUE_FULL;
2905
Dale Farnsworth8f518702006-01-16 16:56:30 -07002906 spin_lock_irqsave(&mp->lock, flags);
2907
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 /* Get the Rx Desc ring 'curr and 'used' indexes */
2909 rx_curr_desc = mp->rx_curr_desc_q;
2910 rx_used_desc = mp->rx_used_desc_q;
2911
2912 p_rx_desc = &mp->p_rx_desc_area[rx_curr_desc];
2913
2914 /* The following parameters are used to save readings from memory */
2915 command_status = p_rx_desc->cmd_sts;
2916 rmb();
2917
2918 /* Nothing to receive... */
Dale Farnsworth8f518702006-01-16 16:56:30 -07002919 if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) {
2920 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 return ETH_END_OF_JOB;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
2924 p_pkt_info->byte_cnt = (p_rx_desc->byte_cnt) - RX_BUF_OFFSET;
2925 p_pkt_info->cmd_sts = command_status;
2926 p_pkt_info->buf_ptr = (p_rx_desc->buf_ptr) + RX_BUF_OFFSET;
2927 p_pkt_info->return_info = mp->rx_skb[rx_curr_desc];
2928 p_pkt_info->l4i_chk = p_rx_desc->buf_size;
2929
2930 /* Clean the return info field to indicate that the packet has been */
2931 /* moved to the upper layers */
2932 mp->rx_skb[rx_curr_desc] = NULL;
2933
2934 /* Update current index in data structure */
2935 rx_next_curr_desc = (rx_curr_desc + 1) % mp->rx_ring_size;
2936 mp->rx_curr_desc_q = rx_next_curr_desc;
2937
2938 /* Rx descriptors exhausted. Set the Rx ring resource error flag */
2939 if (rx_next_curr_desc == rx_used_desc)
2940 mp->rx_resource_err = 1;
2941
Dale Farnsworth8f518702006-01-16 16:56:30 -07002942 spin_unlock_irqrestore(&mp->lock, flags);
2943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 return ETH_OK;
2945}
2946
2947/*
2948 * eth_rx_return_buff - Returns a Rx buffer back to the Rx ring.
2949 *
2950 * DESCRIPTION:
2951 * This routine returns a Rx buffer back to the Rx ring. It retrieves the
2952 * next 'used' descriptor and attached the returned buffer to it.
2953 * In case the Rx ring was in "resource error" condition, where there are
2954 * no available Rx resources, the function resets the resource error flag.
2955 *
2956 * INPUT:
2957 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2958 * struct pkt_info *p_pkt_info Information on returned buffer.
2959 *
2960 * OUTPUT:
2961 * New available Rx resource in Rx descriptor ring.
2962 *
2963 * RETURN:
2964 * ETH_ERROR in case the routine can not access Rx desc ring.
2965 * ETH_OK otherwise.
2966 */
2967static ETH_FUNC_RET_STATUS eth_rx_return_buff(struct mv643xx_private *mp,
2968 struct pkt_info *p_pkt_info)
2969{
2970 int used_rx_desc; /* Where to return Rx resource */
2971 volatile struct eth_rx_desc *p_used_rx_desc;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002972 unsigned long flags;
2973
2974 spin_lock_irqsave(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975
2976 /* Get 'used' Rx descriptor */
2977 used_rx_desc = mp->rx_used_desc_q;
2978 p_used_rx_desc = &mp->p_rx_desc_area[used_rx_desc];
2979
2980 p_used_rx_desc->buf_ptr = p_pkt_info->buf_ptr;
2981 p_used_rx_desc->buf_size = p_pkt_info->byte_cnt;
2982 mp->rx_skb[used_rx_desc] = p_pkt_info->return_info;
2983
2984 /* Flush the write pipe */
2985
2986 /* Return the descriptor to DMA ownership */
2987 wmb();
2988 p_used_rx_desc->cmd_sts =
2989 ETH_BUFFER_OWNED_BY_DMA | ETH_RX_ENABLE_INTERRUPT;
2990 wmb();
2991
2992 /* Move the used descriptor pointer to the next descriptor */
2993 mp->rx_used_desc_q = (used_rx_desc + 1) % mp->rx_ring_size;
2994
2995 /* Any Rx return cancels the Rx resource error status */
2996 mp->rx_resource_err = 0;
2997
Dale Farnsworth8f518702006-01-16 16:56:30 -07002998 spin_unlock_irqrestore(&mp->lock, flags);
2999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 return ETH_OK;
3001}
3002
3003/************* Begin ethtool support *************************/
3004
3005struct mv643xx_stats {
3006 char stat_string[ETH_GSTRING_LEN];
3007 int sizeof_stat;
3008 int stat_offset;
3009};
3010
3011#define MV643XX_STAT(m) sizeof(((struct mv643xx_private *)0)->m), \
3012 offsetof(struct mv643xx_private, m)
3013
3014static const struct mv643xx_stats mv643xx_gstrings_stats[] = {
3015 { "rx_packets", MV643XX_STAT(stats.rx_packets) },
3016 { "tx_packets", MV643XX_STAT(stats.tx_packets) },
3017 { "rx_bytes", MV643XX_STAT(stats.rx_bytes) },
3018 { "tx_bytes", MV643XX_STAT(stats.tx_bytes) },
3019 { "rx_errors", MV643XX_STAT(stats.rx_errors) },
3020 { "tx_errors", MV643XX_STAT(stats.tx_errors) },
3021 { "rx_dropped", MV643XX_STAT(stats.rx_dropped) },
3022 { "tx_dropped", MV643XX_STAT(stats.tx_dropped) },
3023 { "good_octets_received", MV643XX_STAT(mib_counters.good_octets_received) },
3024 { "bad_octets_received", MV643XX_STAT(mib_counters.bad_octets_received) },
3025 { "internal_mac_transmit_err", MV643XX_STAT(mib_counters.internal_mac_transmit_err) },
3026 { "good_frames_received", MV643XX_STAT(mib_counters.good_frames_received) },
3027 { "bad_frames_received", MV643XX_STAT(mib_counters.bad_frames_received) },
3028 { "broadcast_frames_received", MV643XX_STAT(mib_counters.broadcast_frames_received) },
3029 { "multicast_frames_received", MV643XX_STAT(mib_counters.multicast_frames_received) },
3030 { "frames_64_octets", MV643XX_STAT(mib_counters.frames_64_octets) },
3031 { "frames_65_to_127_octets", MV643XX_STAT(mib_counters.frames_65_to_127_octets) },
3032 { "frames_128_to_255_octets", MV643XX_STAT(mib_counters.frames_128_to_255_octets) },
3033 { "frames_256_to_511_octets", MV643XX_STAT(mib_counters.frames_256_to_511_octets) },
3034 { "frames_512_to_1023_octets", MV643XX_STAT(mib_counters.frames_512_to_1023_octets) },
3035 { "frames_1024_to_max_octets", MV643XX_STAT(mib_counters.frames_1024_to_max_octets) },
3036 { "good_octets_sent", MV643XX_STAT(mib_counters.good_octets_sent) },
3037 { "good_frames_sent", MV643XX_STAT(mib_counters.good_frames_sent) },
3038 { "excessive_collision", MV643XX_STAT(mib_counters.excessive_collision) },
3039 { "multicast_frames_sent", MV643XX_STAT(mib_counters.multicast_frames_sent) },
3040 { "broadcast_frames_sent", MV643XX_STAT(mib_counters.broadcast_frames_sent) },
3041 { "unrec_mac_control_received", MV643XX_STAT(mib_counters.unrec_mac_control_received) },
3042 { "fc_sent", MV643XX_STAT(mib_counters.fc_sent) },
3043 { "good_fc_received", MV643XX_STAT(mib_counters.good_fc_received) },
3044 { "bad_fc_received", MV643XX_STAT(mib_counters.bad_fc_received) },
3045 { "undersize_received", MV643XX_STAT(mib_counters.undersize_received) },
3046 { "fragments_received", MV643XX_STAT(mib_counters.fragments_received) },
3047 { "oversize_received", MV643XX_STAT(mib_counters.oversize_received) },
3048 { "jabber_received", MV643XX_STAT(mib_counters.jabber_received) },
3049 { "mac_receive_error", MV643XX_STAT(mib_counters.mac_receive_error) },
3050 { "bad_crc_event", MV643XX_STAT(mib_counters.bad_crc_event) },
3051 { "collision", MV643XX_STAT(mib_counters.collision) },
3052 { "late_collision", MV643XX_STAT(mib_counters.late_collision) },
3053};
3054
3055#define MV643XX_STATS_LEN \
3056 sizeof(mv643xx_gstrings_stats) / sizeof(struct mv643xx_stats)
3057
3058static int
3059mv643xx_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
3060{
3061 struct mv643xx_private *mp = netdev->priv;
3062 int port_num = mp->port_num;
3063 int autoneg = eth_port_autoneg_supported(port_num);
3064 int mode_10_bit;
3065 int auto_duplex;
3066 int half_duplex = 0;
3067 int full_duplex = 0;
3068 int auto_speed;
3069 int speed_10 = 0;
3070 int speed_100 = 0;
3071 int speed_1000 = 0;
3072
3073 u32 pcs = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num));
3074 u32 psr = mv_read(MV643XX_ETH_PORT_STATUS_REG(port_num));
3075
3076 mode_10_bit = psr & MV643XX_ETH_PORT_STATUS_MODE_10_BIT;
3077
3078 if (mode_10_bit) {
3079 ecmd->supported = SUPPORTED_10baseT_Half;
3080 } else {
3081 ecmd->supported = (SUPPORTED_10baseT_Half |
3082 SUPPORTED_10baseT_Full |
3083 SUPPORTED_100baseT_Half |
3084 SUPPORTED_100baseT_Full |
3085 SUPPORTED_1000baseT_Full |
3086 (autoneg ? SUPPORTED_Autoneg : 0) |
3087 SUPPORTED_TP);
3088
3089 auto_duplex = !(pcs & MV643XX_ETH_DISABLE_AUTO_NEG_FOR_DUPLX);
3090 auto_speed = !(pcs & MV643XX_ETH_DISABLE_AUTO_NEG_SPEED_GMII);
3091
3092 ecmd->advertising = ADVERTISED_TP;
3093
3094 if (autoneg) {
3095 ecmd->advertising |= ADVERTISED_Autoneg;
3096
3097 if (auto_duplex) {
3098 half_duplex = 1;
3099 full_duplex = 1;
3100 } else {
3101 if (pcs & MV643XX_ETH_SET_FULL_DUPLEX_MODE)
3102 full_duplex = 1;
3103 else
3104 half_duplex = 1;
3105 }
3106
3107 if (auto_speed) {
3108 speed_10 = 1;
3109 speed_100 = 1;
3110 speed_1000 = 1;
3111 } else {
3112 if (pcs & MV643XX_ETH_SET_GMII_SPEED_TO_1000)
3113 speed_1000 = 1;
3114 else if (pcs & MV643XX_ETH_SET_MII_SPEED_TO_100)
3115 speed_100 = 1;
3116 else
3117 speed_10 = 1;
3118 }
3119
3120 if (speed_10 & half_duplex)
3121 ecmd->advertising |= ADVERTISED_10baseT_Half;
3122 if (speed_10 & full_duplex)
3123 ecmd->advertising |= ADVERTISED_10baseT_Full;
3124 if (speed_100 & half_duplex)
3125 ecmd->advertising |= ADVERTISED_100baseT_Half;
3126 if (speed_100 & full_duplex)
3127 ecmd->advertising |= ADVERTISED_100baseT_Full;
3128 if (speed_1000)
3129 ecmd->advertising |= ADVERTISED_1000baseT_Full;
3130 }
3131 }
3132
3133 ecmd->port = PORT_TP;
3134 ecmd->phy_address = ethernet_phy_get(port_num);
3135
3136 ecmd->transceiver = XCVR_EXTERNAL;
3137
3138 if (netif_carrier_ok(netdev)) {
3139 if (mode_10_bit)
3140 ecmd->speed = SPEED_10;
3141 else {
3142 if (psr & MV643XX_ETH_PORT_STATUS_GMII_1000)
3143 ecmd->speed = SPEED_1000;
3144 else if (psr & MV643XX_ETH_PORT_STATUS_MII_100)
3145 ecmd->speed = SPEED_100;
3146 else
3147 ecmd->speed = SPEED_10;
3148 }
3149
3150 if (psr & MV643XX_ETH_PORT_STATUS_FULL_DUPLEX)
3151 ecmd->duplex = DUPLEX_FULL;
3152 else
3153 ecmd->duplex = DUPLEX_HALF;
3154 } else {
3155 ecmd->speed = -1;
3156 ecmd->duplex = -1;
3157 }
3158
3159 ecmd->autoneg = autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE;
3160 return 0;
3161}
3162
3163static void
3164mv643xx_get_drvinfo(struct net_device *netdev,
3165 struct ethtool_drvinfo *drvinfo)
3166{
3167 strncpy(drvinfo->driver, mv643xx_driver_name, 32);
3168 strncpy(drvinfo->version, mv643xx_driver_version, 32);
3169 strncpy(drvinfo->fw_version, "N/A", 32);
3170 strncpy(drvinfo->bus_info, "mv643xx", 32);
3171 drvinfo->n_stats = MV643XX_STATS_LEN;
3172}
3173
3174static int
3175mv643xx_get_stats_count(struct net_device *netdev)
3176{
3177 return MV643XX_STATS_LEN;
3178}
3179
3180static void
3181mv643xx_get_ethtool_stats(struct net_device *netdev,
3182 struct ethtool_stats *stats, uint64_t *data)
3183{
3184 struct mv643xx_private *mp = netdev->priv;
3185 int i;
3186
3187 eth_update_mib_counters(mp);
3188
3189 for(i = 0; i < MV643XX_STATS_LEN; i++) {
3190 char *p = (char *)mp+mv643xx_gstrings_stats[i].stat_offset;
3191 data[i] = (mv643xx_gstrings_stats[i].sizeof_stat ==
3192 sizeof(uint64_t)) ? *(uint64_t *)p : *(uint32_t *)p;
3193 }
3194}
3195
3196static void
3197mv643xx_get_strings(struct net_device *netdev, uint32_t stringset, uint8_t *data)
3198{
3199 int i;
3200
3201 switch(stringset) {
3202 case ETH_SS_STATS:
3203 for (i=0; i < MV643XX_STATS_LEN; i++) {
3204 memcpy(data + i * ETH_GSTRING_LEN,
3205 mv643xx_gstrings_stats[i].stat_string,
3206 ETH_GSTRING_LEN);
3207 }
3208 break;
3209 }
3210}
3211
3212static struct ethtool_ops mv643xx_ethtool_ops = {
3213 .get_settings = mv643xx_get_settings,
3214 .get_drvinfo = mv643xx_get_drvinfo,
3215 .get_link = ethtool_op_get_link,
3216 .get_sg = ethtool_op_get_sg,
3217 .set_sg = ethtool_op_set_sg,
3218 .get_strings = mv643xx_get_strings,
3219 .get_stats_count = mv643xx_get_stats_count,
3220 .get_ethtool_stats = mv643xx_get_ethtool_stats,
3221};
3222
3223/************* End ethtool support *************************/