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