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