2 * drivers/net/mv643xx_eth.c - Driver for MV643XX ethernet ports
3 * Copyright (C) 2002 Matthew Dharm <mdharm@momenco.com>
5 * Based on the 64360 driver from:
6 * Copyright (C) 2002 rabeeh@galileo.co.il
8 * Copyright (C) 2003 PMC-Sierra, Inc.,
9 * written by Manish Lachwani
11 * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org>
13 * Copyright (C) 2004-2005 MontaVista Software, Inc.
14 * Dale Farnsworth <dale@farnsworth.org>
16 * Copyright (C) 2004 Steven J. Hill <sjhill1@rockwellcollins.com>
17 * <sjhill@realitydiluted.com>
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.
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.
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.
33 #include <linux/init.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/tcp.h>
36 #include <linux/udp.h>
37 #include <linux/etherdevice.h>
41 #include <linux/bitops.h>
42 #include <linux/delay.h>
43 #include <linux/ethtool.h>
44 #include <linux/platform_device.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"
54 * The first part is the high level driver of the gigE ethernet ports.
60 #define DMA_ALIGN 8 /* hw requires 8-byte alignment */
61 #define HW_IP_ALIGN 2 /* hw aligns IP header */
62 #define WRAP HW_IP_ALIGN + ETH_HLEN + VLAN_HLEN + FCS_LEN
63 #define RX_SKB_SIZE ((dev->mtu + WRAP + 7) & ~0x7)
65 #define INT_UNMASK_ALL 0x0007ffff
66 #define INT_UNMASK_ALL_EXT 0x0011ffff
67 #define INT_MASK_ALL 0x00000000
68 #define INT_MASK_ALL_EXT 0x00000000
69 #define INT_CAUSE_CHECK_BITS INT_CAUSE_UNMASK_ALL
70 #define INT_CAUSE_CHECK_BITS_EXT INT_CAUSE_UNMASK_ALL_EXT
72 #ifdef MV643XX_CHECKSUM_OFFLOAD_TX
73 #define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1)
75 #define MAX_DESCS_PER_SKB 1
78 #define PHY_WAIT_ITERATIONS 1000 /* 1000 iterations * 10uS = 10mS max */
79 #define PHY_WAIT_MICRO_SECONDS 10
81 /* Static function declarations */
82 static int eth_port_link_is_up(unsigned int eth_port_num);
83 static void eth_port_uc_addr_get(struct net_device *dev,
84 unsigned char *MacAddr);
85 static void eth_port_set_multicast_list(struct net_device *);
86 static int mv643xx_eth_open(struct net_device *);
87 static int mv643xx_eth_stop(struct net_device *);
88 static int mv643xx_eth_change_mtu(struct net_device *, int);
89 static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *);
90 static void eth_port_init_mac_tables(unsigned int eth_port_num);
92 static int mv643xx_poll(struct net_device *dev, int *budget);
94 static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr);
95 static int ethernet_phy_detect(unsigned int eth_port_num);
96 static struct ethtool_ops mv643xx_ethtool_ops;
98 static char mv643xx_driver_name[] = "mv643xx_eth";
99 static char mv643xx_driver_version[] = "1.0";
101 static void __iomem *mv643xx_eth_shared_base;
103 /* used to protect MV643XX_ETH_SMI_REG, which is shared across ports */
104 static DEFINE_SPINLOCK(mv643xx_eth_phy_lock);
106 static inline u32 mv_read(int offset)
108 void __iomem *reg_base;
110 reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS;
112 return readl(reg_base + offset);
115 static inline void mv_write(int offset, u32 data)
117 void __iomem *reg_base;
119 reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS;
120 writel(data, reg_base + offset);
124 * Changes MTU (maximum transfer unit) of the gigabit ethenret port
126 * Input : pointer to ethernet interface network device structure
128 * Output : 0 upon success, -EINVAL upon failure
130 static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
132 if ((new_mtu > 9500) || (new_mtu < 64))
137 * Stop then re-open the interface. This will allocate RX skb's with
139 * There is a possible danger that the open will not successed, due
140 * to memory is full, which might fail the open function.
142 if (netif_running(dev)) {
143 mv643xx_eth_stop(dev);
144 if (mv643xx_eth_open(dev))
146 "%s: Fatal error on opening device\n",
154 * mv643xx_eth_rx_task
156 * Fills / refills RX queue on a certain gigabit ethernet port
158 * Input : pointer to ethernet interface network device structure
161 static void mv643xx_eth_rx_task(void *data)
163 struct net_device *dev = (struct net_device *)data;
164 struct mv643xx_private *mp = netdev_priv(dev);
165 struct pkt_info pkt_info;
169 if (test_and_set_bit(0, &mp->rx_task_busy))
170 panic("%s: Error in test_set_bit / clear_bit", dev->name);
172 while (mp->rx_ring_skbs < (mp->rx_ring_size - 5)) {
173 skb = dev_alloc_skb(RX_SKB_SIZE + DMA_ALIGN);
177 unaligned = (u32)skb->data & (DMA_ALIGN - 1);
179 skb_reserve(skb, DMA_ALIGN - unaligned);
180 pkt_info.cmd_sts = ETH_RX_ENABLE_INTERRUPT;
181 pkt_info.byte_cnt = RX_SKB_SIZE;
182 pkt_info.buf_ptr = dma_map_single(NULL, skb->data, RX_SKB_SIZE,
184 pkt_info.return_info = skb;
185 if (eth_rx_return_buff(mp, &pkt_info) != ETH_OK) {
187 "%s: Error allocating RX Ring\n", dev->name);
190 skb_reserve(skb, HW_IP_ALIGN);
192 clear_bit(0, &mp->rx_task_busy);
194 * If RX ring is empty of SKB, set a timer to try allocating
195 * again in a later time .
197 if ((mp->rx_ring_skbs == 0) && (mp->rx_timer_flag == 0)) {
198 printk(KERN_INFO "%s: Rx ring is empty\n", dev->name);
200 mp->timeout.expires = jiffies + (HZ / 10);
201 add_timer(&mp->timeout);
202 mp->rx_timer_flag = 1;
204 #ifdef MV643XX_RX_QUEUE_FILL_ON_TASK
206 /* Return interrupts */
207 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(mp->port_num),
214 * mv643xx_eth_rx_task_timer_wrapper
216 * Timer routine to wake up RX queue filling task. This function is
217 * used only in case the RX queue is empty, and all alloc_skb has
218 * failed (due to out of memory event).
220 * Input : pointer to ethernet interface network device structure
223 static void mv643xx_eth_rx_task_timer_wrapper(unsigned long data)
225 struct net_device *dev = (struct net_device *)data;
226 struct mv643xx_private *mp = netdev_priv(dev);
228 mp->rx_timer_flag = 0;
229 mv643xx_eth_rx_task((void *)data);
233 * mv643xx_eth_update_mac_address
235 * Update the MAC address of the port in the address table
237 * Input : pointer to ethernet interface network device structure
240 static void mv643xx_eth_update_mac_address(struct net_device *dev)
242 struct mv643xx_private *mp = netdev_priv(dev);
243 unsigned int port_num = mp->port_num;
245 eth_port_init_mac_tables(port_num);
246 memcpy(mp->port_mac_addr, dev->dev_addr, 6);
247 eth_port_uc_addr_set(port_num, mp->port_mac_addr);
251 * mv643xx_eth_set_rx_mode
253 * Change from promiscuos to regular rx mode
255 * Input : pointer to ethernet interface network device structure
258 static void mv643xx_eth_set_rx_mode(struct net_device *dev)
260 struct mv643xx_private *mp = netdev_priv(dev);
262 if (dev->flags & IFF_PROMISC)
263 mp->port_config |= (u32) MV643XX_ETH_UNICAST_PROMISCUOUS_MODE;
265 mp->port_config &= ~(u32) MV643XX_ETH_UNICAST_PROMISCUOUS_MODE;
267 mv_write(MV643XX_ETH_PORT_CONFIG_REG(mp->port_num), mp->port_config);
269 eth_port_set_multicast_list(dev);
273 * mv643xx_eth_set_mac_address
275 * Change the interface's mac address.
276 * No special hardware thing should be done because interface is always
277 * put in promiscuous mode.
279 * Input : pointer to ethernet interface network device structure and
280 * a pointer to the designated entry to be added to the cache.
281 * Output : zero upon success, negative upon failure
283 static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
287 for (i = 0; i < 6; i++)
288 /* +2 is for the offset of the HW addr type */
289 dev->dev_addr[i] = ((unsigned char *)addr)[i + 2];
290 mv643xx_eth_update_mac_address(dev);
295 * mv643xx_eth_tx_timeout
297 * Called upon a timeout on transmitting a packet
299 * Input : pointer to ethernet interface network device structure.
302 static void mv643xx_eth_tx_timeout(struct net_device *dev)
304 struct mv643xx_private *mp = netdev_priv(dev);
306 printk(KERN_INFO "%s: TX timeout ", dev->name);
308 /* Do the reset outside of interrupt context */
309 schedule_work(&mp->tx_timeout_task);
313 * mv643xx_eth_tx_timeout_task
315 * Actual routine to reset the adapter when a timeout on Tx has occurred
317 static void mv643xx_eth_tx_timeout_task(struct net_device *dev)
319 struct mv643xx_private *mp = netdev_priv(dev);
321 netif_device_detach(dev);
322 eth_port_reset(mp->port_num);
324 netif_device_attach(dev);
328 * mv643xx_eth_free_tx_queue
330 * Input : dev - a pointer to the required interface
332 * Output : 0 if was able to release skb , nonzero otherwise
334 static int mv643xx_eth_free_tx_queue(struct net_device *dev,
335 unsigned int eth_int_cause_ext)
337 struct mv643xx_private *mp = netdev_priv(dev);
338 struct net_device_stats *stats = &mp->stats;
339 struct pkt_info pkt_info;
342 if (!(eth_int_cause_ext & (BIT0 | BIT8)))
345 /* Check only queue 0 */
346 while (eth_tx_return_desc(mp, &pkt_info) == ETH_OK) {
347 if (pkt_info.cmd_sts & BIT0) {
348 printk("%s: Error in TX\n", dev->name);
352 if (pkt_info.cmd_sts & ETH_TX_FIRST_DESC)
353 dma_unmap_single(NULL, pkt_info.buf_ptr,
357 dma_unmap_page(NULL, pkt_info.buf_ptr,
361 if (pkt_info.return_info) {
362 dev_kfree_skb_irq(pkt_info.return_info);
371 * mv643xx_eth_receive
373 * This function is forward packets that are received from the port's
374 * queues toward kernel core or FastRoute them to another interface.
376 * Input : dev - a pointer to the required interface
377 * max - maximum number to receive (0 means unlimted)
379 * Output : number of served packets
382 static int mv643xx_eth_receive_queue(struct net_device *dev, int budget)
384 static int mv643xx_eth_receive_queue(struct net_device *dev)
387 struct mv643xx_private *mp = netdev_priv(dev);
388 struct net_device_stats *stats = &mp->stats;
389 unsigned int received_packets = 0;
391 struct pkt_info pkt_info;
394 while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) {
396 while (eth_port_receive(mp, &pkt_info) == ETH_OK) {
401 /* Update statistics. Note byte count includes 4 byte CRC count */
403 stats->rx_bytes += pkt_info.byte_cnt;
404 skb = pkt_info.return_info;
406 * In case received a packet without first / last bits on OR
407 * the error summary bit is on, the packets needs to be dropeed.
409 if (((pkt_info.cmd_sts
410 & (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) !=
411 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC))
412 || (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)) {
414 if ((pkt_info.cmd_sts & (ETH_RX_FIRST_DESC |
415 ETH_RX_LAST_DESC)) !=
416 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) {
419 "%s: Received packet spread "
420 "on multiple descriptors\n",
423 if (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)
426 dev_kfree_skb_irq(skb);
429 * The -4 is for the CRC in the trailer of the
432 skb_put(skb, pkt_info.byte_cnt - 4);
435 if (pkt_info.cmd_sts & ETH_LAYER_4_CHECKSUM_OK) {
436 skb->ip_summed = CHECKSUM_UNNECESSARY;
438 (pkt_info.cmd_sts & 0x0007fff8) >> 3);
440 skb->protocol = eth_type_trans(skb, dev);
442 netif_receive_skb(skb);
447 dev->last_rx = jiffies;
450 return received_packets;
454 * mv643xx_eth_int_handler
456 * Main interrupt handler for the gigbit ethernet ports
458 * Input : irq - irq number (not used)
459 * dev_id - a pointer to the required interface's data structure
464 static irqreturn_t mv643xx_eth_int_handler(int irq, void *dev_id,
465 struct pt_regs *regs)
467 struct net_device *dev = (struct net_device *)dev_id;
468 struct mv643xx_private *mp = netdev_priv(dev);
469 u32 eth_int_cause, eth_int_cause_ext = 0;
470 unsigned int port_num = mp->port_num;
472 /* Read interrupt cause registers */
473 eth_int_cause = mv_read(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num)) &
476 if (eth_int_cause & BIT1)
477 eth_int_cause_ext = mv_read(
478 MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num)) &
482 if (!(eth_int_cause & 0x0007fffd)) {
483 /* Dont ack the Rx interrupt */
486 * Clear specific ethernet port intrerrupt registers by
487 * acknowleding relevant bits.
489 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num),
491 if (eth_int_cause_ext != 0x0)
492 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG
493 (port_num), ~eth_int_cause_ext);
495 /* UDP change : We may need this */
496 if ((eth_int_cause_ext & 0x0000ffff) &&
497 (mv643xx_eth_free_tx_queue(dev, eth_int_cause_ext) == 0) &&
498 (mp->tx_ring_size > mp->tx_ring_skbs + MAX_DESCS_PER_SKB))
499 netif_wake_queue(dev);
502 if (netif_rx_schedule_prep(dev)) {
503 /* Mask all the interrupts */
504 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
506 /* wait for previous write to complete */
507 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
508 __netif_rx_schedule(dev);
511 if (eth_int_cause & (BIT2 | BIT11))
512 mv643xx_eth_receive_queue(dev, 0);
515 * After forwarded received packets to upper layer, add a task
516 * in an interrupts enabled context that refills the RX ring
519 #ifdef MV643XX_RX_QUEUE_FILL_ON_TASK
520 /* Mask all interrupts on ethernet port */
521 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
523 /* wait for previous write to take effect */
524 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
526 queue_task(&mp->rx_task, &tq_immediate);
527 mark_bh(IMMEDIATE_BH);
529 mp->rx_task.func(dev);
533 /* PHY status changed */
534 if (eth_int_cause_ext & (BIT16 | BIT20)) {
535 if (eth_port_link_is_up(port_num)) {
536 netif_carrier_on(dev);
537 netif_wake_queue(dev);
539 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG
542 netif_carrier_off(dev);
543 netif_stop_queue(dev);
548 * If no real interrupt occured, exit.
549 * This can happen when using gigE interrupt coalescing mechanism.
551 if ((eth_int_cause == 0x0) && (eth_int_cause_ext == 0x0))
560 * eth_port_set_rx_coal - Sets coalescing interrupt mechanism on RX path
563 * This routine sets the RX coalescing interrupt mechanism parameter.
564 * This parameter is a timeout counter, that counts in 64 t_clk
565 * chunks ; that when timeout event occurs a maskable interrupt
567 * The parameter is calculated using the tClk of the MV-643xx chip
568 * , and the required delay of the interrupt in usec.
571 * unsigned int eth_port_num Ethernet port number
572 * unsigned int t_clk t_clk of the MV-643xx chip in HZ units
573 * unsigned int delay Delay in usec
576 * Interrupt coalescing mechanism value is set in MV-643xx chip.
579 * The interrupt coalescing value set in the gigE port.
582 static unsigned int eth_port_set_rx_coal(unsigned int eth_port_num,
583 unsigned int t_clk, unsigned int delay)
585 unsigned int coal = ((t_clk / 1000000) * delay) / 64;
587 /* Set RX Coalescing mechanism */
588 mv_write(MV643XX_ETH_SDMA_CONFIG_REG(eth_port_num),
589 ((coal & 0x3fff) << 8) |
590 (mv_read(MV643XX_ETH_SDMA_CONFIG_REG(eth_port_num))
598 * eth_port_set_tx_coal - Sets coalescing interrupt mechanism on TX path
601 * This routine sets the TX coalescing interrupt mechanism parameter.
602 * This parameter is a timeout counter, that counts in 64 t_clk
603 * chunks ; that when timeout event occurs a maskable interrupt
605 * The parameter is calculated using the t_cLK frequency of the
606 * MV-643xx chip and the required delay in the interrupt in uSec
609 * unsigned int eth_port_num Ethernet port number
610 * unsigned int t_clk t_clk of the MV-643xx chip in HZ units
611 * unsigned int delay Delay in uSeconds
614 * Interrupt coalescing mechanism value is set in MV-643xx chip.
617 * The interrupt coalescing value set in the gigE port.
620 static unsigned int eth_port_set_tx_coal(unsigned int eth_port_num,
621 unsigned int t_clk, unsigned int delay)
624 coal = ((t_clk / 1000000) * delay) / 64;
625 /* Set TX Coalescing mechanism */
626 mv_write(MV643XX_ETH_TX_FIFO_URGENT_THRESHOLD_REG(eth_port_num),
632 * ether_init_rx_desc_ring - Curve a Rx chain desc list and buffer in memory.
635 * This function prepares a Rx chained list of descriptors and packet
636 * buffers in a form of a ring. The routine must be called after port
637 * initialization routine and before port start routine.
638 * The Ethernet SDMA engine uses CPU bus addresses to access the various
639 * devices in the system (i.e. DRAM). This function uses the ethernet
640 * struct 'virtual to physical' routine (set by the user) to set the ring
641 * with physical addresses.
644 * struct mv643xx_private *mp Ethernet Port Control srtuct.
647 * The routine updates the Ethernet port control struct with information
648 * regarding the Rx descriptors and buffers.
653 static void ether_init_rx_desc_ring(struct mv643xx_private *mp)
655 volatile struct eth_rx_desc *p_rx_desc;
656 int rx_desc_num = mp->rx_ring_size;
659 /* initialize the next_desc_ptr links in the Rx descriptors ring */
660 p_rx_desc = (struct eth_rx_desc *)mp->p_rx_desc_area;
661 for (i = 0; i < rx_desc_num; i++) {
662 p_rx_desc[i].next_desc_ptr = mp->rx_desc_dma +
663 ((i + 1) % rx_desc_num) * sizeof(struct eth_rx_desc);
666 /* Save Rx desc pointer to driver struct. */
667 mp->rx_curr_desc_q = 0;
668 mp->rx_used_desc_q = 0;
670 mp->rx_desc_area_size = rx_desc_num * sizeof(struct eth_rx_desc);
672 /* Add the queue to the list of RX queues of this port */
673 mp->port_rx_queue_command |= 1;
677 * ether_init_tx_desc_ring - Curve a Tx chain desc list and buffer in memory.
680 * This function prepares a Tx chained list of descriptors and packet
681 * buffers in a form of a ring. The routine must be called after port
682 * initialization routine and before port start routine.
683 * The Ethernet SDMA engine uses CPU bus addresses to access the various
684 * devices in the system (i.e. DRAM). This function uses the ethernet
685 * struct 'virtual to physical' routine (set by the user) to set the ring
686 * with physical addresses.
689 * struct mv643xx_private *mp Ethernet Port Control srtuct.
692 * The routine updates the Ethernet port control struct with information
693 * regarding the Tx descriptors and buffers.
698 static void ether_init_tx_desc_ring(struct mv643xx_private *mp)
700 int tx_desc_num = mp->tx_ring_size;
701 struct eth_tx_desc *p_tx_desc;
704 /* Initialize the next_desc_ptr links in the Tx descriptors ring */
705 p_tx_desc = (struct eth_tx_desc *)mp->p_tx_desc_area;
706 for (i = 0; i < tx_desc_num; i++) {
707 p_tx_desc[i].next_desc_ptr = mp->tx_desc_dma +
708 ((i + 1) % tx_desc_num) * sizeof(struct eth_tx_desc);
711 mp->tx_curr_desc_q = 0;
712 mp->tx_used_desc_q = 0;
713 #ifdef MV643XX_CHECKSUM_OFFLOAD_TX
714 mp->tx_first_desc_q = 0;
717 mp->tx_desc_area_size = tx_desc_num * sizeof(struct eth_tx_desc);
719 /* Add the queue to the list of Tx queues of this port */
720 mp->port_tx_queue_command |= 1;
726 * This function is called when openning the network device. The function
727 * should initialize all the hardware, initialize cyclic Rx/Tx
728 * descriptors chain and buffers and allocate an IRQ to the network
731 * Input : a pointer to the network device structure
733 * Output : zero of success , nonzero if fails.
736 static int mv643xx_eth_open(struct net_device *dev)
738 struct mv643xx_private *mp = netdev_priv(dev);
739 unsigned int port_num = mp->port_num;
743 err = request_irq(dev->irq, mv643xx_eth_int_handler,
744 SA_SHIRQ | SA_SAMPLE_RANDOM, dev->name, dev);
746 printk(KERN_ERR "Can not assign IRQ number to MV643XX_eth%d\n",
752 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), 0x0000ff00);
754 /* Set the MAC Address */
755 memcpy(mp->port_mac_addr, dev->dev_addr, 6);
759 INIT_WORK(&mp->rx_task, (void (*)(void *))mv643xx_eth_rx_task, dev);
761 memset(&mp->timeout, 0, sizeof(struct timer_list));
762 mp->timeout.function = mv643xx_eth_rx_task_timer_wrapper;
763 mp->timeout.data = (unsigned long)dev;
765 mp->rx_task_busy = 0;
766 mp->rx_timer_flag = 0;
768 /* Allocate RX and TX skb rings */
769 mp->rx_skb = kmalloc(sizeof(*mp->rx_skb) * mp->rx_ring_size,
772 printk(KERN_ERR "%s: Cannot allocate Rx skb ring\n", dev->name);
776 mp->tx_skb = kmalloc(sizeof(*mp->tx_skb) * mp->tx_ring_size,
779 printk(KERN_ERR "%s: Cannot allocate Tx skb ring\n", dev->name);
781 goto out_free_rx_skb;
784 /* Allocate TX ring */
785 mp->tx_ring_skbs = 0;
786 size = mp->tx_ring_size * sizeof(struct eth_tx_desc);
787 mp->tx_desc_area_size = size;
789 if (mp->tx_sram_size) {
790 mp->p_tx_desc_area = ioremap(mp->tx_sram_addr,
792 mp->tx_desc_dma = mp->tx_sram_addr;
794 mp->p_tx_desc_area = dma_alloc_coherent(NULL, size,
798 if (!mp->p_tx_desc_area) {
799 printk(KERN_ERR "%s: Cannot allocate Tx Ring (size %d bytes)\n",
802 goto out_free_tx_skb;
804 BUG_ON((u32) mp->p_tx_desc_area & 0xf); /* check 16-byte alignment */
805 memset((void *)mp->p_tx_desc_area, 0, mp->tx_desc_area_size);
807 ether_init_tx_desc_ring(mp);
809 /* Allocate RX ring */
810 mp->rx_ring_skbs = 0;
811 size = mp->rx_ring_size * sizeof(struct eth_rx_desc);
812 mp->rx_desc_area_size = size;
814 if (mp->rx_sram_size) {
815 mp->p_rx_desc_area = ioremap(mp->rx_sram_addr,
817 mp->rx_desc_dma = mp->rx_sram_addr;
819 mp->p_rx_desc_area = dma_alloc_coherent(NULL, size,
823 if (!mp->p_rx_desc_area) {
824 printk(KERN_ERR "%s: Cannot allocate Rx ring (size %d bytes)\n",
826 printk(KERN_ERR "%s: Freeing previously allocated TX queues...",
828 if (mp->rx_sram_size)
829 iounmap(mp->p_tx_desc_area);
831 dma_free_coherent(NULL, mp->tx_desc_area_size,
832 mp->p_tx_desc_area, mp->tx_desc_dma);
834 goto out_free_tx_skb;
836 memset((void *)mp->p_rx_desc_area, 0, size);
838 ether_init_rx_desc_ring(mp);
840 mv643xx_eth_rx_task(dev); /* Fill RX ring with skb's */
844 /* Interrupt Coalescing */
848 eth_port_set_rx_coal(port_num, 133000000, MV643XX_RX_COAL);
852 eth_port_set_tx_coal(port_num, 133000000, MV643XX_TX_COAL);
854 /* Clear any pending ethernet port interrupts */
855 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0);
856 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
858 /* Unmask phy and link status changes interrupts */
859 mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num),
862 /* Unmask RX buffer and TX end interrupt */
863 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), INT_UNMASK_ALL);
871 free_irq(dev->irq, dev);
876 static void mv643xx_eth_free_tx_rings(struct net_device *dev)
878 struct mv643xx_private *mp = netdev_priv(dev);
879 unsigned int port_num = mp->port_num;
884 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num), 0x0000ff00);
886 /* Free outstanding skb's on TX rings */
887 for (curr = 0; mp->tx_ring_skbs && curr < mp->tx_ring_size; curr++) {
888 skb = mp->tx_skb[curr];
890 mp->tx_ring_skbs -= skb_shinfo(skb)->nr_frags;
895 if (mp->tx_ring_skbs)
896 printk("%s: Error on Tx descriptor free - could not free %d"
897 " descriptors\n", dev->name, mp->tx_ring_skbs);
900 if (mp->tx_sram_size)
901 iounmap(mp->p_tx_desc_area);
903 dma_free_coherent(NULL, mp->tx_desc_area_size,
904 mp->p_tx_desc_area, mp->tx_desc_dma);
907 static void mv643xx_eth_free_rx_rings(struct net_device *dev)
909 struct mv643xx_private *mp = netdev_priv(dev);
910 unsigned int port_num = mp->port_num;
914 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), 0x0000ff00);
916 /* Free preallocated skb's on RX rings */
917 for (curr = 0; mp->rx_ring_skbs && curr < mp->rx_ring_size; curr++) {
918 if (mp->rx_skb[curr]) {
919 dev_kfree_skb(mp->rx_skb[curr]);
924 if (mp->rx_ring_skbs)
926 "%s: Error in freeing Rx Ring. %d skb's still"
927 " stuck in RX Ring - ignoring them\n", dev->name,
930 if (mp->rx_sram_size)
931 iounmap(mp->p_rx_desc_area);
933 dma_free_coherent(NULL, mp->rx_desc_area_size,
934 mp->p_rx_desc_area, mp->rx_desc_dma);
940 * This function is used when closing the network device.
941 * It updates the hardware,
942 * release all memory that holds buffers and descriptors and release the IRQ.
943 * Input : a pointer to the device structure
944 * Output : zero if success , nonzero if fails
947 static int mv643xx_eth_stop(struct net_device *dev)
949 struct mv643xx_private *mp = netdev_priv(dev);
950 unsigned int port_num = mp->port_num;
952 /* Mask all interrupts on ethernet port */
953 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), INT_MASK_ALL);
954 /* wait for previous write to complete */
955 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
958 netif_poll_disable(dev);
960 netif_carrier_off(dev);
961 netif_stop_queue(dev);
963 eth_port_reset(mp->port_num);
965 mv643xx_eth_free_tx_rings(dev);
966 mv643xx_eth_free_rx_rings(dev);
969 netif_poll_enable(dev);
972 free_irq(dev->irq, dev);
978 static void mv643xx_tx(struct net_device *dev)
980 struct mv643xx_private *mp = netdev_priv(dev);
981 struct pkt_info pkt_info;
983 while (eth_tx_return_desc(mp, &pkt_info) == ETH_OK) {
984 if (pkt_info.cmd_sts & ETH_TX_FIRST_DESC)
985 dma_unmap_single(NULL, pkt_info.buf_ptr,
989 dma_unmap_page(NULL, pkt_info.buf_ptr,
993 if (pkt_info.return_info)
994 dev_kfree_skb_irq(pkt_info.return_info);
997 if (netif_queue_stopped(dev) &&
998 mp->tx_ring_size > mp->tx_ring_skbs + MAX_DESCS_PER_SKB)
999 netif_wake_queue(dev);
1005 * This function is used in case of NAPI
1007 static int mv643xx_poll(struct net_device *dev, int *budget)
1009 struct mv643xx_private *mp = netdev_priv(dev);
1010 int done = 1, orig_budget, work_done;
1011 unsigned int port_num = mp->port_num;
1013 #ifdef MV643XX_TX_FAST_REFILL
1014 if (++mp->tx_clean_threshold > 5) {
1016 mp->tx_clean_threshold = 0;
1020 if ((mv_read(MV643XX_ETH_RX_CURRENT_QUEUE_DESC_PTR_0(port_num)))
1021 != (u32) mp->rx_used_desc_q) {
1022 orig_budget = *budget;
1023 if (orig_budget > dev->quota)
1024 orig_budget = dev->quota;
1025 work_done = mv643xx_eth_receive_queue(dev, orig_budget);
1026 mp->rx_task.func(dev);
1027 *budget -= work_done;
1028 dev->quota -= work_done;
1029 if (work_done >= orig_budget)
1034 netif_rx_complete(dev);
1035 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0);
1036 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
1037 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
1041 return done ? 0 : 1;
1045 /* Hardware can't handle unaligned fragments smaller than 9 bytes.
1046 * This helper function detects that case.
1049 static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
1054 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
1055 fragp = &skb_shinfo(skb)->frags[frag];
1056 if (fragp->size <= 8 && fragp->page_offset & 0x7)
1065 * mv643xx_eth_start_xmit
1067 * This function is queues a packet in the Tx descriptor for
1070 * Input : skb - a pointer to socket buffer
1071 * dev - a pointer to the required port
1073 * Output : zero upon success
1075 static int mv643xx_eth_start_xmit(struct sk_buff *skb, struct net_device *dev)
1077 struct mv643xx_private *mp = netdev_priv(dev);
1078 struct net_device_stats *stats = &mp->stats;
1079 ETH_FUNC_RET_STATUS status;
1080 unsigned long flags;
1081 struct pkt_info pkt_info;
1083 if (netif_queue_stopped(dev)) {
1085 "%s: Tried sending packet when interface is stopped\n",
1090 /* This is a hard error, log it. */
1091 if ((mp->tx_ring_size - mp->tx_ring_skbs) <=
1092 (skb_shinfo(skb)->nr_frags + 1)) {
1093 netif_stop_queue(dev);
1095 "%s: Bug in mv643xx_eth - Trying to transmit when"
1096 " queue full !\n", dev->name);
1100 /* Paranoid check - this shouldn't happen */
1102 stats->tx_dropped++;
1103 printk(KERN_ERR "mv64320_eth paranoid check failed\n");
1107 #ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1108 if (has_tiny_unaligned_frags(skb)) {
1109 if ((skb_linearize(skb, GFP_ATOMIC) != 0)) {
1110 stats->tx_dropped++;
1111 printk(KERN_DEBUG "%s: failed to linearize tiny "
1112 "unaligned fragment\n", dev->name);
1117 spin_lock_irqsave(&mp->lock, flags);
1119 if (!skb_shinfo(skb)->nr_frags) {
1120 if (skb->ip_summed != CHECKSUM_HW) {
1121 /* Errata BTS #50, IHL must be 5 if no HW checksum */
1122 pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT |
1125 5 << ETH_TX_IHL_SHIFT;
1126 pkt_info.l4i_chk = 0;
1128 pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT |
1131 ETH_GEN_TCP_UDP_CHECKSUM |
1132 ETH_GEN_IP_V_4_CHECKSUM |
1133 skb->nh.iph->ihl << ETH_TX_IHL_SHIFT;
1134 /* CPU already calculated pseudo header checksum. */
1135 if ((skb->protocol == ETH_P_IP) &&
1136 (skb->nh.iph->protocol == IPPROTO_UDP) ) {
1137 pkt_info.cmd_sts |= ETH_UDP_FRAME;
1138 pkt_info.l4i_chk = skb->h.uh->check;
1139 } else if ((skb->protocol == ETH_P_IP) &&
1140 (skb->nh.iph->protocol == IPPROTO_TCP))
1141 pkt_info.l4i_chk = skb->h.th->check;
1144 "%s: chksum proto != IPv4 TCP or UDP\n",
1146 spin_unlock_irqrestore(&mp->lock, flags);
1150 pkt_info.byte_cnt = skb->len;
1151 pkt_info.buf_ptr = dma_map_single(NULL, skb->data, skb->len,
1153 pkt_info.return_info = skb;
1154 status = eth_port_send(mp, &pkt_info);
1155 if ((status == ETH_ERROR) || (status == ETH_QUEUE_FULL))
1156 printk(KERN_ERR "%s: Error on transmitting packet\n",
1158 stats->tx_bytes += pkt_info.byte_cnt;
1162 /* first frag which is skb header */
1163 pkt_info.byte_cnt = skb_headlen(skb);
1164 pkt_info.buf_ptr = dma_map_single(NULL, skb->data,
1167 pkt_info.l4i_chk = 0;
1168 pkt_info.return_info = 0;
1170 if (skb->ip_summed != CHECKSUM_HW)
1171 /* Errata BTS #50, IHL must be 5 if no HW checksum */
1172 pkt_info.cmd_sts = ETH_TX_FIRST_DESC |
1173 5 << ETH_TX_IHL_SHIFT;
1175 pkt_info.cmd_sts = ETH_TX_FIRST_DESC |
1176 ETH_GEN_TCP_UDP_CHECKSUM |
1177 ETH_GEN_IP_V_4_CHECKSUM |
1178 skb->nh.iph->ihl << ETH_TX_IHL_SHIFT;
1179 /* CPU already calculated pseudo header checksum. */
1180 if ((skb->protocol == ETH_P_IP) &&
1181 (skb->nh.iph->protocol == IPPROTO_UDP)) {
1182 pkt_info.cmd_sts |= ETH_UDP_FRAME;
1183 pkt_info.l4i_chk = skb->h.uh->check;
1184 } else if ((skb->protocol == ETH_P_IP) &&
1185 (skb->nh.iph->protocol == IPPROTO_TCP))
1186 pkt_info.l4i_chk = skb->h.th->check;
1189 "%s: chksum proto != IPv4 TCP or UDP\n",
1191 spin_unlock_irqrestore(&mp->lock, flags);
1196 status = eth_port_send(mp, &pkt_info);
1197 if (status != ETH_OK) {
1198 if ((status == ETH_ERROR))
1200 "%s: Error on transmitting packet\n",
1202 if (status == ETH_QUEUE_FULL)
1203 printk("Error on Queue Full \n");
1204 if (status == ETH_QUEUE_LAST_RESOURCE)
1205 printk("Tx resource error \n");
1207 stats->tx_bytes += pkt_info.byte_cnt;
1209 /* Check for the remaining frags */
1210 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
1211 skb_frag_t *this_frag = &skb_shinfo(skb)->frags[frag];
1212 pkt_info.l4i_chk = 0x0000;
1213 pkt_info.cmd_sts = 0x00000000;
1215 /* Last Frag enables interrupt and frees the skb */
1216 if (frag == (skb_shinfo(skb)->nr_frags - 1)) {
1217 pkt_info.cmd_sts |= ETH_TX_ENABLE_INTERRUPT |
1219 pkt_info.return_info = skb;
1221 pkt_info.return_info = 0;
1223 pkt_info.l4i_chk = 0;
1224 pkt_info.byte_cnt = this_frag->size;
1226 pkt_info.buf_ptr = dma_map_page(NULL, this_frag->page,
1227 this_frag->page_offset,
1231 status = eth_port_send(mp, &pkt_info);
1233 if (status != ETH_OK) {
1234 if ((status == ETH_ERROR))
1235 printk(KERN_ERR "%s: Error on "
1236 "transmitting packet\n",
1239 if (status == ETH_QUEUE_LAST_RESOURCE)
1240 printk("Tx resource error \n");
1242 if (status == ETH_QUEUE_FULL)
1243 printk("Queue is full \n");
1245 stats->tx_bytes += pkt_info.byte_cnt;
1249 spin_lock_irqsave(&mp->lock, flags);
1251 pkt_info.cmd_sts = ETH_TX_ENABLE_INTERRUPT | ETH_TX_FIRST_DESC |
1253 pkt_info.l4i_chk = 0;
1254 pkt_info.byte_cnt = skb->len;
1255 pkt_info.buf_ptr = dma_map_single(NULL, skb->data, skb->len,
1257 pkt_info.return_info = skb;
1258 status = eth_port_send(mp, &pkt_info);
1259 if ((status == ETH_ERROR) || (status == ETH_QUEUE_FULL))
1260 printk(KERN_ERR "%s: Error on transmitting packet\n",
1262 stats->tx_bytes += pkt_info.byte_cnt;
1265 /* Check if TX queue can handle another skb. If not, then
1266 * signal higher layers to stop requesting TX
1268 if (mp->tx_ring_size <= (mp->tx_ring_skbs + MAX_DESCS_PER_SKB))
1270 * Stop getting skb's from upper layers.
1271 * Getting skb's from upper layers will be enabled again after
1272 * packets are released.
1274 netif_stop_queue(dev);
1276 /* Update statistics and start of transmittion time */
1277 stats->tx_packets++;
1278 dev->trans_start = jiffies;
1280 spin_unlock_irqrestore(&mp->lock, flags);
1282 return 0; /* success */
1286 * mv643xx_eth_get_stats
1288 * Returns a pointer to the interface statistics.
1290 * Input : dev - a pointer to the required interface
1292 * Output : a pointer to the interface's statistics
1295 static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *dev)
1297 struct mv643xx_private *mp = netdev_priv(dev);
1302 #ifdef CONFIG_NET_POLL_CONTROLLER
1303 static void mv643xx_netpoll(struct net_device *netdev)
1305 struct mv643xx_private *mp = netdev_priv(netdev);
1306 int port_num = mp->port_num;
1308 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), INT_MASK_ALL);
1309 /* wait for previous write to complete */
1310 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
1312 mv643xx_eth_int_handler(netdev->irq, netdev, NULL);
1314 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), INT_UNMASK_ALL);
1321 * First function called after registering the network device.
1322 * It's purpose is to initialize the device as an ethernet device,
1323 * fill the ethernet device structure with pointers * to functions,
1324 * and set the MAC address of the interface
1326 * Input : struct device *
1327 * Output : -ENOMEM if failed , 0 if success
1329 static int mv643xx_eth_probe(struct platform_device *pdev)
1331 struct mv643xx_eth_platform_data *pd;
1332 int port_num = pdev->id;
1333 struct mv643xx_private *mp;
1334 struct net_device *dev;
1336 struct resource *res;
1339 dev = alloc_etherdev(sizeof(struct mv643xx_private));
1343 platform_set_drvdata(pdev, dev);
1345 mp = netdev_priv(dev);
1347 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1349 dev->irq = res->start;
1351 mp->port_num = port_num;
1353 dev->open = mv643xx_eth_open;
1354 dev->stop = mv643xx_eth_stop;
1355 dev->hard_start_xmit = mv643xx_eth_start_xmit;
1356 dev->get_stats = mv643xx_eth_get_stats;
1357 dev->set_mac_address = mv643xx_eth_set_mac_address;
1358 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
1360 /* No need to Tx Timeout */
1361 dev->tx_timeout = mv643xx_eth_tx_timeout;
1363 dev->poll = mv643xx_poll;
1367 #ifdef CONFIG_NET_POLL_CONTROLLER
1368 dev->poll_controller = mv643xx_netpoll;
1371 dev->watchdog_timeo = 2 * HZ;
1372 dev->tx_queue_len = mp->tx_ring_size;
1374 dev->change_mtu = mv643xx_eth_change_mtu;
1375 SET_ETHTOOL_OPS(dev, &mv643xx_ethtool_ops);
1377 #ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1378 #ifdef MAX_SKB_FRAGS
1380 * Zero copy can only work if we use Discovery II memory. Else, we will
1381 * have to map the buffers to ISA memory which is only 16 MB
1383 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
1387 /* Configure the timeout task */
1388 INIT_WORK(&mp->tx_timeout_task,
1389 (void (*)(void *))mv643xx_eth_tx_timeout_task, dev);
1391 spin_lock_init(&mp->lock);
1393 /* set default config values */
1394 eth_port_uc_addr_get(dev, dev->dev_addr);
1395 mp->port_config = MV643XX_ETH_PORT_CONFIG_DEFAULT_VALUE;
1396 mp->port_config_extend = MV643XX_ETH_PORT_CONFIG_EXTEND_DEFAULT_VALUE;
1397 mp->port_sdma_config = MV643XX_ETH_PORT_SDMA_CONFIG_DEFAULT_VALUE;
1398 mp->port_serial_control = MV643XX_ETH_PORT_SERIAL_CONTROL_DEFAULT_VALUE;
1399 mp->rx_ring_size = MV643XX_ETH_PORT_DEFAULT_RECEIVE_QUEUE_SIZE;
1400 mp->tx_ring_size = MV643XX_ETH_PORT_DEFAULT_TRANSMIT_QUEUE_SIZE;
1402 pd = pdev->dev.platform_data;
1404 if (pd->mac_addr != NULL)
1405 memcpy(dev->dev_addr, pd->mac_addr, 6);
1407 if (pd->phy_addr || pd->force_phy_addr)
1408 ethernet_phy_set(port_num, pd->phy_addr);
1410 if (pd->port_config || pd->force_port_config)
1411 mp->port_config = pd->port_config;
1413 if (pd->port_config_extend || pd->force_port_config_extend)
1414 mp->port_config_extend = pd->port_config_extend;
1416 if (pd->port_sdma_config || pd->force_port_sdma_config)
1417 mp->port_sdma_config = pd->port_sdma_config;
1419 if (pd->port_serial_control || pd->force_port_serial_control)
1420 mp->port_serial_control = pd->port_serial_control;
1422 if (pd->rx_queue_size)
1423 mp->rx_ring_size = pd->rx_queue_size;
1425 if (pd->tx_queue_size)
1426 mp->tx_ring_size = pd->tx_queue_size;
1428 if (pd->tx_sram_size) {
1429 mp->tx_sram_size = pd->tx_sram_size;
1430 mp->tx_sram_addr = pd->tx_sram_addr;
1433 if (pd->rx_sram_size) {
1434 mp->rx_sram_size = pd->rx_sram_size;
1435 mp->rx_sram_addr = pd->rx_sram_addr;
1439 err = ethernet_phy_detect(port_num);
1441 pr_debug("MV643xx ethernet port %d: "
1442 "No PHY detected at addr %d\n",
1443 port_num, ethernet_phy_get(port_num));
1447 err = register_netdev(dev);
1453 "%s: port %d with MAC address %02x:%02x:%02x:%02x:%02x:%02x\n",
1454 dev->name, port_num, p[0], p[1], p[2], p[3], p[4], p[5]);
1456 if (dev->features & NETIF_F_SG)
1457 printk(KERN_NOTICE "%s: Scatter Gather Enabled\n", dev->name);
1459 if (dev->features & NETIF_F_IP_CSUM)
1460 printk(KERN_NOTICE "%s: TX TCP/IP Checksumming Supported\n",
1463 #ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1464 printk(KERN_NOTICE "%s: RX TCP/UDP Checksum Offload ON \n", dev->name);
1468 printk(KERN_NOTICE "%s: TX and RX Interrupt Coalescing ON \n",
1473 printk(KERN_NOTICE "%s: RX NAPI Enabled \n", dev->name);
1476 if (mp->tx_sram_size > 0)
1477 printk(KERN_NOTICE "%s: Using SRAM\n", dev->name);
1487 static int mv643xx_eth_remove(struct platform_device *pdev)
1489 struct net_device *dev = platform_get_drvdata(pdev);
1491 unregister_netdev(dev);
1492 flush_scheduled_work();
1495 platform_set_drvdata(pdev, NULL);
1499 static int mv643xx_eth_shared_probe(struct platform_device *pdev)
1501 struct resource *res;
1503 printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n");
1505 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1509 mv643xx_eth_shared_base = ioremap(res->start,
1510 MV643XX_ETH_SHARED_REGS_SIZE);
1511 if (mv643xx_eth_shared_base == NULL)
1518 static int mv643xx_eth_shared_remove(struct platform_device *pdev)
1520 iounmap(mv643xx_eth_shared_base);
1521 mv643xx_eth_shared_base = NULL;
1526 static struct platform_driver mv643xx_eth_driver = {
1527 .probe = mv643xx_eth_probe,
1528 .remove = mv643xx_eth_remove,
1530 .name = MV643XX_ETH_NAME,
1534 static struct platform_driver mv643xx_eth_shared_driver = {
1535 .probe = mv643xx_eth_shared_probe,
1536 .remove = mv643xx_eth_shared_remove,
1538 .name = MV643XX_ETH_SHARED_NAME,
1543 * mv643xx_init_module
1545 * Registers the network drivers into the Linux kernel
1551 static int __init mv643xx_init_module(void)
1555 rc = platform_driver_register(&mv643xx_eth_shared_driver);
1557 rc = platform_driver_register(&mv643xx_eth_driver);
1559 platform_driver_unregister(&mv643xx_eth_shared_driver);
1565 * mv643xx_cleanup_module
1567 * Registers the network drivers into the Linux kernel
1573 static void __exit mv643xx_cleanup_module(void)
1575 platform_driver_unregister(&mv643xx_eth_driver);
1576 platform_driver_unregister(&mv643xx_eth_shared_driver);
1579 module_init(mv643xx_init_module);
1580 module_exit(mv643xx_cleanup_module);
1582 MODULE_LICENSE("GPL");
1583 MODULE_AUTHOR( "Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, Manish Lachwani"
1584 " and Dale Farnsworth");
1585 MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
1588 * The second part is the low level driver of the gigE ethernet ports.
1592 * Marvell's Gigabit Ethernet controller low level driver
1595 * This file introduce low level API to Marvell's Gigabit Ethernet
1596 * controller. This Gigabit Ethernet Controller driver API controls
1597 * 1) Operations (i.e. port init, start, reset etc').
1598 * 2) Data flow (i.e. port send, receive etc').
1599 * Each Gigabit Ethernet port is controlled via
1600 * struct mv643xx_private.
1601 * This struct includes user configuration information as well as
1602 * driver internal data needed for its operations.
1604 * Supported Features:
1605 * - This low level driver is OS independent. Allocating memory for
1606 * the descriptor rings and buffers are not within the scope of
1608 * - The user is free from Rx/Tx queue managing.
1609 * - This low level driver introduce functionality API that enable
1610 * the to operate Marvell's Gigabit Ethernet Controller in a
1612 * - Simple Gigabit Ethernet port operation API.
1613 * - Simple Gigabit Ethernet port data flow API.
1614 * - Data flow and operation API support per queue functionality.
1615 * - Support cached descriptors for better performance.
1616 * - Enable access to all four DRAM banks and internal SRAM memory
1618 * - PHY access and control API.
1619 * - Port control register configuration API.
1620 * - Full control over Unicast and Multicast MAC configurations.
1624 * Initialization phase
1625 * This phase complete the initialization of the the
1626 * mv643xx_private struct.
1627 * User information regarding port configuration has to be set
1628 * prior to calling the port initialization routine.
1630 * In this phase any port Tx/Rx activity is halted, MIB counters
1631 * are cleared, PHY address is set according to user parameter and
1632 * access to DRAM and internal SRAM memory spaces.
1634 * Driver ring initialization
1635 * Allocating memory for the descriptor rings and buffers is not
1636 * within the scope of this driver. Thus, the user is required to
1637 * allocate memory for the descriptors ring and buffers. Those
1638 * memory parameters are used by the Rx and Tx ring initialization
1639 * routines in order to curve the descriptor linked list in a form
1641 * Note: Pay special attention to alignment issues when using
1642 * cached descriptors/buffers. In this phase the driver store
1643 * information in the mv643xx_private struct regarding each queue
1647 * This phase prepares the Ethernet port for Rx and Tx activity.
1648 * It uses the information stored in the mv643xx_private struct to
1649 * initialize the various port registers.
1652 * All packet references to/from the driver are done using
1654 * This struct is a unified struct used with Rx and Tx operations.
1655 * This way the user is not required to be familiar with neither
1656 * Tx nor Rx descriptors structures.
1657 * The driver's descriptors rings are management by indexes.
1658 * Those indexes controls the ring resources and used to indicate
1659 * a SW resource error:
1661 * This index points to the current available resource for use. For
1662 * example in Rx process this index will point to the descriptor
1663 * that will be passed to the user upon calling the receive
1664 * routine. In Tx process, this index will point to the descriptor
1665 * that will be assigned with the user packet info and transmitted.
1667 * This index points to the descriptor that need to restore its
1668 * resources. For example in Rx process, using the Rx buffer return
1669 * API will attach the buffer returned in packet info to the
1670 * descriptor pointed by 'used'. In Tx process, using the Tx
1671 * descriptor return will merely return the user packet info with
1672 * the command status of the transmitted buffer pointed by the
1673 * 'used' index. Nevertheless, it is essential to use this routine
1674 * to update the 'used' index.
1676 * This index supports Tx Scatter-Gather. It points to the first
1677 * descriptor of a packet assembled of multiple buffers. For
1678 * example when in middle of Such packet we have a Tx resource
1679 * error the 'curr' index get the value of 'first' to indicate
1680 * that the ring returned to its state before trying to transmit
1683 * Receive operation:
1684 * The eth_port_receive API set the packet information struct,
1685 * passed by the caller, with received information from the
1686 * 'current' SDMA descriptor.
1687 * It is the user responsibility to return this resource back
1688 * to the Rx descriptor ring to enable the reuse of this source.
1689 * Return Rx resource is done using the eth_rx_return_buff API.
1691 * Transmit operation:
1692 * The eth_port_send API supports Scatter-Gather which enables to
1693 * send a packet spanned over multiple buffers. This means that
1694 * for each packet info structure given by the user and put into
1695 * the Tx descriptors ring, will be transmitted only if the 'LAST'
1696 * bit will be set in the packet info command status field. This
1697 * API also consider restriction regarding buffer alignments and
1699 * The user must return a Tx resource after ensuring the buffer
1700 * has been transmitted to enable the Tx ring indexes to update.
1703 * This device is on-board. No jumper diagram is necessary.
1705 * EXTERNAL INTERFACE
1707 * Prior to calling the initialization routine eth_port_init() the user
1708 * must set the following fields under mv643xx_private struct:
1709 * port_num User Ethernet port number.
1710 * port_mac_addr[6] User defined port MAC address.
1711 * port_config User port configuration value.
1712 * port_config_extend User port config extend value.
1713 * port_sdma_config User port SDMA config value.
1714 * port_serial_control User port serial control value.
1716 * This driver data flow is done using the struct pkt_info which
1717 * is a unified struct for Rx and Tx operations:
1719 * byte_cnt Tx/Rx descriptor buffer byte count.
1720 * l4i_chk CPU provided TCP Checksum. For Tx operation
1722 * cmd_sts Tx/Rx descriptor command status.
1723 * buf_ptr Tx/Rx descriptor buffer pointer.
1724 * return_info Tx/Rx user resource return information.
1728 /* SDMA command macros */
1729 #define ETH_ENABLE_TX_QUEUE(eth_port) \
1730 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(eth_port), 1)
1735 static int ethernet_phy_get(unsigned int eth_port_num);
1736 static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr);
1738 /* Ethernet Port routines */
1739 static int eth_port_uc_addr(unsigned int eth_port_num, unsigned char uc_nibble,
1743 * eth_port_init - Initialize the Ethernet port driver
1746 * This function prepares the ethernet port to start its activity:
1747 * 1) Completes the ethernet port driver struct initialization toward port
1749 * 2) Resets the device to a quiescent state in case of warm reboot.
1750 * 3) Enable SDMA access to all four DRAM banks as well as internal SRAM.
1751 * 4) Clean MAC tables. The reset status of those tables is unknown.
1752 * 5) Set PHY address.
1753 * Note: Call this routine prior to eth_port_start routine and after
1754 * setting user values in the user fields of Ethernet port control
1758 * struct mv643xx_private *mp Ethernet port control struct
1766 static void eth_port_init(struct mv643xx_private *mp)
1768 mp->port_rx_queue_command = 0;
1769 mp->port_tx_queue_command = 0;
1771 mp->rx_resource_err = 0;
1772 mp->tx_resource_err = 0;
1774 eth_port_reset(mp->port_num);
1776 eth_port_init_mac_tables(mp->port_num);
1778 ethernet_phy_reset(mp->port_num);
1782 * eth_port_start - Start the Ethernet port activity.
1785 * This routine prepares the Ethernet port for Rx and Tx activity:
1786 * 1. Initialize Tx and Rx Current Descriptor Pointer for each queue that
1787 * has been initialized a descriptor's ring (using
1788 * ether_init_tx_desc_ring for Tx and ether_init_rx_desc_ring for Rx)
1789 * 2. Initialize and enable the Ethernet configuration port by writing to
1790 * the port's configuration and command registers.
1791 * 3. Initialize and enable the SDMA by writing to the SDMA's
1792 * configuration and command registers. After completing these steps,
1793 * the ethernet port SDMA can starts to perform Rx and Tx activities.
1795 * Note: Each Rx and Tx queue descriptor's list must be initialized prior
1796 * to calling this function (use ether_init_tx_desc_ring for Tx queues
1797 * and ether_init_rx_desc_ring for Rx queues).
1800 * struct mv643xx_private *mp Ethernet port control struct
1803 * Ethernet port is ready to receive and transmit.
1808 static void eth_port_start(struct mv643xx_private *mp)
1810 unsigned int port_num = mp->port_num;
1811 int tx_curr_desc, rx_curr_desc;
1813 /* Assignment of Tx CTRP of given queue */
1814 tx_curr_desc = mp->tx_curr_desc_q;
1815 mv_write(MV643XX_ETH_TX_CURRENT_QUEUE_DESC_PTR_0(port_num),
1816 (u32)((struct eth_tx_desc *)mp->tx_desc_dma + tx_curr_desc));
1818 /* Assignment of Rx CRDP of given queue */
1819 rx_curr_desc = mp->rx_curr_desc_q;
1820 mv_write(MV643XX_ETH_RX_CURRENT_QUEUE_DESC_PTR_0(port_num),
1821 (u32)((struct eth_rx_desc *)mp->rx_desc_dma + rx_curr_desc));
1823 /* Add the assigned Ethernet address to the port's address table */
1824 eth_port_uc_addr_set(port_num, mp->port_mac_addr);
1826 /* Assign port configuration and command. */
1827 mv_write(MV643XX_ETH_PORT_CONFIG_REG(port_num), mp->port_config);
1829 mv_write(MV643XX_ETH_PORT_CONFIG_EXTEND_REG(port_num),
1830 mp->port_config_extend);
1833 /* Increase the Rx side buffer size if supporting GigE */
1834 if (mp->port_serial_control & MV643XX_ETH_SET_GMII_SPEED_TO_1000)
1835 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
1836 (mp->port_serial_control & 0xfff1ffff) | (0x5 << 17));
1838 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
1839 mp->port_serial_control);
1841 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
1842 mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num)) |
1843 MV643XX_ETH_SERIAL_PORT_ENABLE);
1845 /* Assign port SDMA configuration */
1846 mv_write(MV643XX_ETH_SDMA_CONFIG_REG(port_num),
1847 mp->port_sdma_config);
1849 /* Enable port Rx. */
1850 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num),
1851 mp->port_rx_queue_command);
1853 /* Disable port bandwidth limits by clearing MTU register */
1854 mv_write(MV643XX_ETH_MAXIMUM_TRANSMIT_UNIT(port_num), 0);
1858 * eth_port_uc_addr_set - This function Set the port Unicast address.
1861 * This function Set the port Ethernet MAC address.
1864 * unsigned int eth_port_num Port number.
1865 * char * p_addr Address to be set
1868 * Set MAC address low and high registers. also calls eth_port_uc_addr()
1869 * To set the unicast table with the proper information.
1875 static void eth_port_uc_addr_set(unsigned int eth_port_num,
1876 unsigned char *p_addr)
1881 mac_l = (p_addr[4] << 8) | (p_addr[5]);
1882 mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) |
1885 mv_write(MV643XX_ETH_MAC_ADDR_LOW(eth_port_num), mac_l);
1886 mv_write(MV643XX_ETH_MAC_ADDR_HIGH(eth_port_num), mac_h);
1888 /* Accept frames of this address */
1889 eth_port_uc_addr(eth_port_num, p_addr[5], ACCEPT_MAC_ADDR);
1895 * eth_port_uc_addr_get - This function retrieves the port Unicast address
1896 * (MAC address) from the ethernet hw registers.
1899 * This function retrieves the port Ethernet MAC address.
1902 * unsigned int eth_port_num Port number.
1903 * char *MacAddr pointer where the MAC address is stored
1906 * Copy the MAC address to the location pointed to by MacAddr
1912 static void eth_port_uc_addr_get(struct net_device *dev, unsigned char *p_addr)
1914 struct mv643xx_private *mp = netdev_priv(dev);
1918 mac_h = mv_read(MV643XX_ETH_MAC_ADDR_HIGH(mp->port_num));
1919 mac_l = mv_read(MV643XX_ETH_MAC_ADDR_LOW(mp->port_num));
1921 p_addr[0] = (mac_h >> 24) & 0xff;
1922 p_addr[1] = (mac_h >> 16) & 0xff;
1923 p_addr[2] = (mac_h >> 8) & 0xff;
1924 p_addr[3] = mac_h & 0xff;
1925 p_addr[4] = (mac_l >> 8) & 0xff;
1926 p_addr[5] = mac_l & 0xff;
1930 * eth_port_uc_addr - This function Set the port unicast address table
1933 * This function locates the proper entry in the Unicast table for the
1934 * specified MAC nibble and sets its properties according to function
1938 * unsigned int eth_port_num Port number.
1939 * unsigned char uc_nibble Unicast MAC Address last nibble.
1940 * int option 0 = Add, 1 = remove address.
1943 * This function add/removes MAC addresses from the port unicast address
1947 * true is output succeeded.
1948 * false if option parameter is invalid.
1951 static int eth_port_uc_addr(unsigned int eth_port_num, unsigned char uc_nibble,
1954 unsigned int unicast_reg;
1955 unsigned int tbl_offset;
1956 unsigned int reg_offset;
1958 /* Locate the Unicast table entry */
1959 uc_nibble = (0xf & uc_nibble);
1960 tbl_offset = (uc_nibble / 4) * 4; /* Register offset from unicast table base */
1961 reg_offset = uc_nibble % 4; /* Entry offset within the above register */
1964 case REJECT_MAC_ADDR:
1965 /* Clear accepts frame bit at given unicast DA table entry */
1966 unicast_reg = mv_read((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
1967 (eth_port_num) + tbl_offset));
1969 unicast_reg &= (0x0E << (8 * reg_offset));
1971 mv_write((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
1972 (eth_port_num) + tbl_offset), unicast_reg);
1975 case ACCEPT_MAC_ADDR:
1976 /* Set accepts frame bit at unicast DA filter table entry */
1978 mv_read((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
1979 (eth_port_num) + tbl_offset));
1981 unicast_reg |= (0x01 << (8 * reg_offset));
1983 mv_write((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
1984 (eth_port_num) + tbl_offset), unicast_reg);
1996 * The entries in each table are indexed by a hash of a packet's MAC
1997 * address. One bit in each entry determines whether the packet is
1998 * accepted. There are 4 entries (each 8 bits wide) in each register
1999 * of the table. The bits in each entry are defined as follows:
2000 * 0 Accept=1, Drop=0
2001 * 3-1 Queue (ETH_Q0=0)
2004 static void eth_port_set_filter_table_entry(int table, unsigned char entry)
2006 unsigned int table_reg;
2007 unsigned int tbl_offset;
2008 unsigned int reg_offset;
2010 tbl_offset = (entry / 4) * 4; /* Register offset of DA table entry */
2011 reg_offset = entry % 4; /* Entry offset within the register */
2013 /* Set "accepts frame bit" at specified table entry */
2014 table_reg = mv_read(table + tbl_offset);
2015 table_reg |= 0x01 << (8 * reg_offset);
2016 mv_write(table + tbl_offset, table_reg);
2020 * eth_port_mc_addr - Multicast address settings.
2022 * The MV device supports multicast using two tables:
2023 * 1) Special Multicast Table for MAC addresses of the form
2024 * 0x01-00-5E-00-00-XX (where XX is between 0x00 and 0x_FF).
2025 * The MAC DA[7:0] bits are used as a pointer to the Special Multicast
2026 * Table entries in the DA-Filter table.
2027 * 2) Other Multicast Table for multicast of another type. A CRC-8bit
2028 * is used as an index to the Other Multicast Table entries in the
2029 * DA-Filter table. This function calculates the CRC-8bit value.
2030 * In either case, eth_port_set_filter_table_entry() is then called
2031 * to set to set the actual table entry.
2033 static void eth_port_mc_addr(unsigned int eth_port_num, unsigned char *p_addr)
2037 unsigned char crc_result = 0;
2043 if ((p_addr[0] == 0x01) && (p_addr[1] == 0x00) &&
2044 (p_addr[2] == 0x5E) && (p_addr[3] == 0x00) && (p_addr[4] == 0x00)) {
2045 table = MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
2047 eth_port_set_filter_table_entry(table, p_addr[5]);
2051 /* Calculate CRC-8 out of the given address */
2052 mac_h = (p_addr[0] << 8) | (p_addr[1]);
2053 mac_l = (p_addr[2] << 24) | (p_addr[3] << 16) |
2054 (p_addr[4] << 8) | (p_addr[5] << 0);
2056 for (i = 0; i < 32; i++)
2057 mac_array[i] = (mac_l >> i) & 0x1;
2058 for (i = 32; i < 48; i++)
2059 mac_array[i] = (mac_h >> (i - 32)) & 0x1;
2061 crc[0] = mac_array[45] ^ mac_array[43] ^ mac_array[40] ^ mac_array[39] ^
2062 mac_array[35] ^ mac_array[34] ^ mac_array[31] ^ mac_array[30] ^
2063 mac_array[28] ^ mac_array[23] ^ mac_array[21] ^ mac_array[19] ^
2064 mac_array[18] ^ mac_array[16] ^ mac_array[14] ^ mac_array[12] ^
2065 mac_array[8] ^ mac_array[7] ^ mac_array[6] ^ mac_array[0];
2067 crc[1] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
2068 mac_array[41] ^ mac_array[39] ^ mac_array[36] ^ mac_array[34] ^
2069 mac_array[32] ^ mac_array[30] ^ mac_array[29] ^ mac_array[28] ^
2070 mac_array[24] ^ mac_array[23] ^ mac_array[22] ^ mac_array[21] ^
2071 mac_array[20] ^ mac_array[18] ^ mac_array[17] ^ mac_array[16] ^
2072 mac_array[15] ^ mac_array[14] ^ mac_array[13] ^ mac_array[12] ^
2073 mac_array[9] ^ mac_array[6] ^ mac_array[1] ^ mac_array[0];
2075 crc[2] = mac_array[47] ^ mac_array[46] ^ mac_array[44] ^ mac_array[43] ^
2076 mac_array[42] ^ mac_array[39] ^ mac_array[37] ^ mac_array[34] ^
2077 mac_array[33] ^ mac_array[29] ^ mac_array[28] ^ mac_array[25] ^
2078 mac_array[24] ^ mac_array[22] ^ mac_array[17] ^ mac_array[15] ^
2079 mac_array[13] ^ mac_array[12] ^ mac_array[10] ^ mac_array[8] ^
2080 mac_array[6] ^ mac_array[2] ^ mac_array[1] ^ mac_array[0];
2082 crc[3] = mac_array[47] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
2083 mac_array[40] ^ mac_array[38] ^ mac_array[35] ^ mac_array[34] ^
2084 mac_array[30] ^ mac_array[29] ^ mac_array[26] ^ mac_array[25] ^
2085 mac_array[23] ^ mac_array[18] ^ mac_array[16] ^ mac_array[14] ^
2086 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[7] ^
2087 mac_array[3] ^ mac_array[2] ^ mac_array[1];
2089 crc[4] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[41] ^
2090 mac_array[39] ^ mac_array[36] ^ mac_array[35] ^ mac_array[31] ^
2091 mac_array[30] ^ mac_array[27] ^ mac_array[26] ^ mac_array[24] ^
2092 mac_array[19] ^ mac_array[17] ^ mac_array[15] ^ mac_array[14] ^
2093 mac_array[12] ^ mac_array[10] ^ mac_array[8] ^ mac_array[4] ^
2094 mac_array[3] ^ mac_array[2];
2096 crc[5] = mac_array[47] ^ mac_array[46] ^ mac_array[45] ^ mac_array[42] ^
2097 mac_array[40] ^ mac_array[37] ^ mac_array[36] ^ mac_array[32] ^
2098 mac_array[31] ^ mac_array[28] ^ mac_array[27] ^ mac_array[25] ^
2099 mac_array[20] ^ mac_array[18] ^ mac_array[16] ^ mac_array[15] ^
2100 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[5] ^
2101 mac_array[4] ^ mac_array[3];
2103 crc[6] = mac_array[47] ^ mac_array[46] ^ mac_array[43] ^ mac_array[41] ^
2104 mac_array[38] ^ mac_array[37] ^ mac_array[33] ^ mac_array[32] ^
2105 mac_array[29] ^ mac_array[28] ^ mac_array[26] ^ mac_array[21] ^
2106 mac_array[19] ^ mac_array[17] ^ mac_array[16] ^ mac_array[14] ^
2107 mac_array[12] ^ mac_array[10] ^ mac_array[6] ^ mac_array[5] ^
2110 crc[7] = mac_array[47] ^ mac_array[44] ^ mac_array[42] ^ mac_array[39] ^
2111 mac_array[38] ^ mac_array[34] ^ mac_array[33] ^ mac_array[30] ^
2112 mac_array[29] ^ mac_array[27] ^ mac_array[22] ^ mac_array[20] ^
2113 mac_array[18] ^ mac_array[17] ^ mac_array[15] ^ mac_array[13] ^
2114 mac_array[11] ^ mac_array[7] ^ mac_array[6] ^ mac_array[5];
2116 for (i = 0; i < 8; i++)
2117 crc_result = crc_result | (crc[i] << i);
2119 table = MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num);
2120 eth_port_set_filter_table_entry(table, crc_result);
2124 * Set the entire multicast list based on dev->mc_list.
2126 static void eth_port_set_multicast_list(struct net_device *dev)
2129 struct dev_mc_list *mc_list;
2132 struct mv643xx_private *mp = netdev_priv(dev);
2133 unsigned int eth_port_num = mp->port_num;
2135 /* If the device is in promiscuous mode or in all multicast mode,
2136 * we will fully populate both multicast tables with accept.
2137 * This is guaranteed to yield a match on all multicast addresses...
2139 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI)) {
2140 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2141 /* Set all entries in DA filter special multicast
2143 * Set for ETH_Q0 for now
2145 * 0 Accept=1, Drop=0
2146 * 3-1 Queue ETH_Q0=0
2149 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101);
2151 /* Set all entries in DA filter other multicast
2153 * Set for ETH_Q0 for now
2155 * 0 Accept=1, Drop=0
2156 * 3-1 Queue ETH_Q0=0
2159 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101);
2164 /* We will clear out multicast tables every time we get the list.
2165 * Then add the entire new list...
2167 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2168 /* Clear DA filter special multicast table (Ex_dFSMT) */
2169 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
2170 (eth_port_num) + table_index, 0);
2172 /* Clear DA filter other multicast table (Ex_dFOMT) */
2173 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE
2174 (eth_port_num) + table_index, 0);
2177 /* Get pointer to net_device multicast list and add each one... */
2178 for (i = 0, mc_list = dev->mc_list;
2179 (i < 256) && (mc_list != NULL) && (i < dev->mc_count);
2180 i++, mc_list = mc_list->next)
2181 if (mc_list->dmi_addrlen == 6)
2182 eth_port_mc_addr(eth_port_num, mc_list->dmi_addr);
2186 * eth_port_init_mac_tables - Clear all entrance in the UC, SMC and OMC tables
2189 * Go through all the DA filter tables (Unicast, Special Multicast &
2190 * Other Multicast) and set each entry to 0.
2193 * unsigned int eth_port_num Ethernet Port number.
2196 * Multicast and Unicast packets are rejected.
2201 static void eth_port_init_mac_tables(unsigned int eth_port_num)
2205 /* Clear DA filter unicast table (Ex_dFUT) */
2206 for (table_index = 0; table_index <= 0xC; table_index += 4)
2207 mv_write((MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
2208 (eth_port_num) + table_index), 0);
2210 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2211 /* Clear DA filter special multicast table (Ex_dFSMT) */
2212 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
2213 (eth_port_num) + table_index, 0);
2214 /* Clear DA filter other multicast table (Ex_dFOMT) */
2215 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE
2216 (eth_port_num) + table_index, 0);
2221 * eth_clear_mib_counters - Clear all MIB counters
2224 * This function clears all MIB counters of a specific ethernet port.
2225 * A read from the MIB counter will reset the counter.
2228 * unsigned int eth_port_num Ethernet Port number.
2231 * After reading all MIB counters, the counters resets.
2234 * MIB counter value.
2237 static void eth_clear_mib_counters(unsigned int eth_port_num)
2241 /* Perform dummy reads from MIB counters */
2242 for (i = ETH_MIB_GOOD_OCTETS_RECEIVED_LOW; i < ETH_MIB_LATE_COLLISION;
2244 mv_read(MV643XX_ETH_MIB_COUNTERS_BASE(eth_port_num) + i);
2247 static inline u32 read_mib(struct mv643xx_private *mp, int offset)
2249 return mv_read(MV643XX_ETH_MIB_COUNTERS_BASE(mp->port_num) + offset);
2252 static void eth_update_mib_counters(struct mv643xx_private *mp)
2254 struct mv643xx_mib_counters *p = &mp->mib_counters;
2257 p->good_octets_received +=
2258 read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_LOW);
2259 p->good_octets_received +=
2260 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH) << 32;
2262 for (offset = ETH_MIB_BAD_OCTETS_RECEIVED;
2263 offset <= ETH_MIB_FRAMES_1024_TO_MAX_OCTETS;
2265 *(u32 *)((char *)p + offset) = read_mib(mp, offset);
2267 p->good_octets_sent += read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_LOW);
2268 p->good_octets_sent +=
2269 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_HIGH) << 32;
2271 for (offset = ETH_MIB_GOOD_FRAMES_SENT;
2272 offset <= ETH_MIB_LATE_COLLISION;
2274 *(u32 *)((char *)p + offset) = read_mib(mp, offset);
2278 * ethernet_phy_detect - Detect whether a phy is present
2281 * This function tests whether there is a PHY present on
2282 * the specified port.
2285 * unsigned int eth_port_num Ethernet Port number.
2292 * -ENODEV on failure
2295 static int ethernet_phy_detect(unsigned int port_num)
2297 unsigned int phy_reg_data0;
2300 eth_port_read_smi_reg(port_num, 0, &phy_reg_data0);
2301 auto_neg = phy_reg_data0 & 0x1000;
2302 phy_reg_data0 ^= 0x1000; /* invert auto_neg */
2303 eth_port_write_smi_reg(port_num, 0, phy_reg_data0);
2305 eth_port_read_smi_reg(port_num, 0, &phy_reg_data0);
2306 if ((phy_reg_data0 & 0x1000) == auto_neg)
2307 return -ENODEV; /* change didn't take */
2309 phy_reg_data0 ^= 0x1000;
2310 eth_port_write_smi_reg(port_num, 0, phy_reg_data0);
2315 * ethernet_phy_get - Get the ethernet port PHY address.
2318 * This routine returns the given ethernet port PHY address.
2321 * unsigned int eth_port_num Ethernet Port number.
2330 static int ethernet_phy_get(unsigned int eth_port_num)
2332 unsigned int reg_data;
2334 reg_data = mv_read(MV643XX_ETH_PHY_ADDR_REG);
2336 return ((reg_data >> (5 * eth_port_num)) & 0x1f);
2340 * ethernet_phy_set - Set the ethernet port PHY address.
2343 * This routine sets the given ethernet port PHY address.
2346 * unsigned int eth_port_num Ethernet Port number.
2347 * int phy_addr PHY address.
2356 static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr)
2359 int addr_shift = 5 * eth_port_num;
2361 reg_data = mv_read(MV643XX_ETH_PHY_ADDR_REG);
2362 reg_data &= ~(0x1f << addr_shift);
2363 reg_data |= (phy_addr & 0x1f) << addr_shift;
2364 mv_write(MV643XX_ETH_PHY_ADDR_REG, reg_data);
2368 * ethernet_phy_reset - Reset Ethernet port PHY.
2371 * This routine utilizes the SMI interface to reset the ethernet port PHY.
2374 * unsigned int eth_port_num Ethernet Port number.
2383 static void ethernet_phy_reset(unsigned int eth_port_num)
2385 unsigned int phy_reg_data;
2388 eth_port_read_smi_reg(eth_port_num, 0, &phy_reg_data);
2389 phy_reg_data |= 0x8000; /* Set bit 15 to reset the PHY */
2390 eth_port_write_smi_reg(eth_port_num, 0, phy_reg_data);
2394 * eth_port_reset - Reset Ethernet port
2397 * This routine resets the chip by aborting any SDMA engine activity and
2398 * clearing the MIB counters. The Receiver and the Transmit unit are in
2399 * idle state after this command is performed and the port is disabled.
2402 * unsigned int eth_port_num Ethernet Port number.
2405 * Channel activity is halted.
2411 static void eth_port_reset(unsigned int port_num)
2413 unsigned int reg_data;
2415 /* Stop Tx port activity. Check port Tx activity. */
2416 reg_data = mv_read(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num));
2418 if (reg_data & 0xFF) {
2419 /* Issue stop command for active channels only */
2420 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num),
2423 /* Wait for all Tx activity to terminate. */
2424 /* Check port cause register that all Tx queues are stopped */
2425 while (mv_read(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num))
2430 /* Stop Rx port activity. Check port Rx activity. */
2431 reg_data = mv_read(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num));
2433 if (reg_data & 0xFF) {
2434 /* Issue stop command for active channels only */
2435 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num),
2438 /* Wait for all Rx activity to terminate. */
2439 /* Check port cause register that all Rx queues are stopped */
2440 while (mv_read(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num))
2445 /* Clear all MIB counters */
2446 eth_clear_mib_counters(port_num);
2448 /* Reset the Enable bit in the Configuration Register */
2449 reg_data = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num));
2450 reg_data &= ~MV643XX_ETH_SERIAL_PORT_ENABLE;
2451 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), reg_data);
2455 static int eth_port_autoneg_supported(unsigned int eth_port_num)
2457 unsigned int phy_reg_data0;
2459 eth_port_read_smi_reg(eth_port_num, 0, &phy_reg_data0);
2461 return phy_reg_data0 & 0x1000;
2464 static int eth_port_link_is_up(unsigned int eth_port_num)
2466 unsigned int phy_reg_data1;
2468 eth_port_read_smi_reg(eth_port_num, 1, &phy_reg_data1);
2470 if (eth_port_autoneg_supported(eth_port_num)) {
2471 if (phy_reg_data1 & 0x20) /* auto-neg complete */
2473 } else if (phy_reg_data1 & 0x4) /* link up */
2480 * eth_port_read_smi_reg - Read PHY registers
2483 * This routine utilize the SMI interface to interact with the PHY in
2484 * order to perform PHY register read.
2487 * unsigned int port_num Ethernet Port number.
2488 * unsigned int phy_reg PHY register address offset.
2489 * unsigned int *value Register value buffer.
2492 * Write the value of a specified PHY register into given buffer.
2495 * false if the PHY is busy or read data is not in valid state.
2499 static void eth_port_read_smi_reg(unsigned int port_num,
2500 unsigned int phy_reg, unsigned int *value)
2502 int phy_addr = ethernet_phy_get(port_num);
2503 unsigned long flags;
2506 /* the SMI register is a shared resource */
2507 spin_lock_irqsave(&mv643xx_eth_phy_lock, flags);
2509 /* wait for the SMI register to become available */
2510 for (i = 0; mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_BUSY; i++) {
2511 if (i == PHY_WAIT_ITERATIONS) {
2512 printk("mv643xx PHY busy timeout, port %d\n", port_num);
2515 udelay(PHY_WAIT_MICRO_SECONDS);
2518 mv_write(MV643XX_ETH_SMI_REG,
2519 (phy_addr << 16) | (phy_reg << 21) | ETH_SMI_OPCODE_READ);
2521 /* now wait for the data to be valid */
2522 for (i = 0; !(mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_READ_VALID); i++) {
2523 if (i == PHY_WAIT_ITERATIONS) {
2524 printk("mv643xx PHY read timeout, port %d\n", port_num);
2527 udelay(PHY_WAIT_MICRO_SECONDS);
2530 *value = mv_read(MV643XX_ETH_SMI_REG) & 0xffff;
2532 spin_unlock_irqrestore(&mv643xx_eth_phy_lock, flags);
2536 * eth_port_write_smi_reg - Write to PHY registers
2539 * This routine utilize the SMI interface to interact with the PHY in
2540 * order to perform writes to PHY registers.
2543 * unsigned int eth_port_num Ethernet Port number.
2544 * unsigned int phy_reg PHY register address offset.
2545 * unsigned int value Register value.
2548 * Write the given value to the specified PHY register.
2551 * false if the PHY is busy.
2555 static void eth_port_write_smi_reg(unsigned int eth_port_num,
2556 unsigned int phy_reg, unsigned int value)
2560 unsigned long flags;
2562 phy_addr = ethernet_phy_get(eth_port_num);
2564 /* the SMI register is a shared resource */
2565 spin_lock_irqsave(&mv643xx_eth_phy_lock, flags);
2567 /* wait for the SMI register to become available */
2568 for (i = 0; mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_BUSY; i++) {
2569 if (i == PHY_WAIT_ITERATIONS) {
2570 printk("mv643xx PHY busy timeout, port %d\n",
2574 udelay(PHY_WAIT_MICRO_SECONDS);
2577 mv_write(MV643XX_ETH_SMI_REG, (phy_addr << 16) | (phy_reg << 21) |
2578 ETH_SMI_OPCODE_WRITE | (value & 0xffff));
2580 spin_unlock_irqrestore(&mv643xx_eth_phy_lock, flags);
2584 * eth_port_send - Send an Ethernet packet
2587 * This routine send a given packet described by p_pktinfo parameter. It
2588 * supports transmitting of a packet spaned over multiple buffers. The
2589 * routine updates 'curr' and 'first' indexes according to the packet
2590 * segment passed to the routine. In case the packet segment is first,
2591 * the 'first' index is update. In any case, the 'curr' index is updated.
2592 * If the routine get into Tx resource error it assigns 'curr' index as
2593 * 'first'. This way the function can abort Tx process of multiple
2594 * descriptors per packet.
2597 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2598 * struct pkt_info *p_pkt_info User packet buffer.
2601 * Tx ring 'curr' and 'first' indexes are updated.
2604 * ETH_QUEUE_FULL in case of Tx resource error.
2605 * ETH_ERROR in case the routine can not access Tx desc ring.
2606 * ETH_QUEUE_LAST_RESOURCE if the routine uses the last Tx resource.
2610 #ifdef MV643XX_CHECKSUM_OFFLOAD_TX
2612 * Modified to include the first descriptor pointer in case of SG
2614 static ETH_FUNC_RET_STATUS eth_port_send(struct mv643xx_private *mp,
2615 struct pkt_info *p_pkt_info)
2617 int tx_desc_curr, tx_desc_used, tx_first_desc, tx_next_desc;
2618 struct eth_tx_desc *current_descriptor;
2619 struct eth_tx_desc *first_descriptor;
2622 /* Do not process Tx ring in case of Tx ring resource error */
2623 if (mp->tx_resource_err)
2624 return ETH_QUEUE_FULL;
2627 * The hardware requires that each buffer that is <= 8 bytes
2628 * in length must be aligned on an 8 byte boundary.
2630 if (p_pkt_info->byte_cnt <= 8 && p_pkt_info->buf_ptr & 0x7) {
2632 "mv643xx_eth port %d: packet size <= 8 problem\n",
2638 BUG_ON(mp->tx_ring_skbs > mp->tx_ring_size);
2640 /* Get the Tx Desc ring indexes */
2641 tx_desc_curr = mp->tx_curr_desc_q;
2642 tx_desc_used = mp->tx_used_desc_q;
2644 current_descriptor = &mp->p_tx_desc_area[tx_desc_curr];
2646 tx_next_desc = (tx_desc_curr + 1) % mp->tx_ring_size;
2648 current_descriptor->buf_ptr = p_pkt_info->buf_ptr;
2649 current_descriptor->byte_cnt = p_pkt_info->byte_cnt;
2650 current_descriptor->l4i_chk = p_pkt_info->l4i_chk;
2651 mp->tx_skb[tx_desc_curr] = p_pkt_info->return_info;
2653 command = p_pkt_info->cmd_sts | ETH_ZERO_PADDING | ETH_GEN_CRC |
2654 ETH_BUFFER_OWNED_BY_DMA;
2655 if (command & ETH_TX_FIRST_DESC) {
2656 tx_first_desc = tx_desc_curr;
2657 mp->tx_first_desc_q = tx_first_desc;
2658 first_descriptor = current_descriptor;
2659 mp->tx_first_command = command;
2661 tx_first_desc = mp->tx_first_desc_q;
2662 first_descriptor = &mp->p_tx_desc_area[tx_first_desc];
2663 BUG_ON(first_descriptor == NULL);
2664 current_descriptor->cmd_sts = command;
2667 if (command & ETH_TX_LAST_DESC) {
2669 first_descriptor->cmd_sts = mp->tx_first_command;
2672 ETH_ENABLE_TX_QUEUE(mp->port_num);
2675 * Finish Tx packet. Update first desc in case of Tx resource
2677 tx_first_desc = tx_next_desc;
2678 mp->tx_first_desc_q = tx_first_desc;
2681 /* Check for ring index overlap in the Tx desc ring */
2682 if (tx_next_desc == tx_desc_used) {
2683 mp->tx_resource_err = 1;
2684 mp->tx_curr_desc_q = tx_first_desc;
2686 return ETH_QUEUE_LAST_RESOURCE;
2689 mp->tx_curr_desc_q = tx_next_desc;
2694 static ETH_FUNC_RET_STATUS eth_port_send(struct mv643xx_private *mp,
2695 struct pkt_info *p_pkt_info)
2699 struct eth_tx_desc *current_descriptor;
2700 unsigned int command_status;
2702 /* Do not process Tx ring in case of Tx ring resource error */
2703 if (mp->tx_resource_err)
2704 return ETH_QUEUE_FULL;
2707 BUG_ON(mp->tx_ring_skbs > mp->tx_ring_size);
2709 /* Get the Tx Desc ring indexes */
2710 tx_desc_curr = mp->tx_curr_desc_q;
2711 tx_desc_used = mp->tx_used_desc_q;
2712 current_descriptor = &mp->p_tx_desc_area[tx_desc_curr];
2714 command_status = p_pkt_info->cmd_sts | ETH_ZERO_PADDING | ETH_GEN_CRC;
2715 current_descriptor->buf_ptr = p_pkt_info->buf_ptr;
2716 current_descriptor->byte_cnt = p_pkt_info->byte_cnt;
2717 mp->tx_skb[tx_desc_curr] = p_pkt_info->return_info;
2719 /* Set last desc with DMA ownership and interrupt enable. */
2721 current_descriptor->cmd_sts = command_status |
2722 ETH_BUFFER_OWNED_BY_DMA | ETH_TX_ENABLE_INTERRUPT;
2725 ETH_ENABLE_TX_QUEUE(mp->port_num);
2727 /* Finish Tx packet. Update first desc in case of Tx resource error */
2728 tx_desc_curr = (tx_desc_curr + 1) % mp->tx_ring_size;
2730 /* Update the current descriptor */
2731 mp->tx_curr_desc_q = tx_desc_curr;
2733 /* Check for ring index overlap in the Tx desc ring */
2734 if (tx_desc_curr == tx_desc_used) {
2735 mp->tx_resource_err = 1;
2736 return ETH_QUEUE_LAST_RESOURCE;
2744 * eth_tx_return_desc - Free all used Tx descriptors
2747 * This routine returns the transmitted packet information to the caller.
2748 * It uses the 'first' index to support Tx desc return in case a transmit
2749 * of a packet spanned over multiple buffer still in process.
2750 * In case the Tx queue was in "resource error" condition, where there are
2751 * no available Tx resources, the function resets the resource error flag.
2754 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2755 * struct pkt_info *p_pkt_info User packet buffer.
2758 * Tx ring 'first' and 'used' indexes are updated.
2762 * ETH_ERROR otherwise.
2765 static ETH_FUNC_RET_STATUS eth_tx_return_desc(struct mv643xx_private *mp,
2766 struct pkt_info *p_pkt_info)
2770 struct eth_tx_desc *p_tx_desc_used;
2771 unsigned int command_status;
2772 unsigned long flags;
2775 spin_lock_irqsave(&mp->lock, flags);
2777 #ifdef MV643XX_CHECKSUM_OFFLOAD_TX
2778 tx_busy_desc = mp->tx_first_desc_q;
2780 tx_busy_desc = mp->tx_curr_desc_q;
2783 /* Get the Tx Desc ring indexes */
2784 tx_desc_used = mp->tx_used_desc_q;
2786 p_tx_desc_used = &mp->p_tx_desc_area[tx_desc_used];
2789 if (p_tx_desc_used == NULL) {
2794 /* Stop release. About to overlap the current available Tx descriptor */
2795 if (tx_desc_used == tx_busy_desc && !mp->tx_resource_err) {
2800 command_status = p_tx_desc_used->cmd_sts;
2802 /* Still transmitting... */
2803 if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) {
2808 /* Pass the packet information to the caller */
2809 p_pkt_info->cmd_sts = command_status;
2810 p_pkt_info->return_info = mp->tx_skb[tx_desc_used];
2811 p_pkt_info->buf_ptr = p_tx_desc_used->buf_ptr;
2812 p_pkt_info->byte_cnt = p_tx_desc_used->byte_cnt;
2813 mp->tx_skb[tx_desc_used] = NULL;
2815 /* Update the next descriptor to release. */
2816 mp->tx_used_desc_q = (tx_desc_used + 1) % mp->tx_ring_size;
2818 /* Any Tx return cancels the Tx resource error status */
2819 mp->tx_resource_err = 0;
2821 BUG_ON(mp->tx_ring_skbs == 0);
2825 spin_unlock_irqrestore(&mp->lock, flags);
2831 * eth_port_receive - Get received information from Rx ring.
2834 * This routine returns the received data to the caller. There is no
2835 * data copying during routine operation. All information is returned
2836 * using pointer to packet information struct passed from the caller.
2837 * If the routine exhausts Rx ring resources then the resource error flag
2841 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2842 * struct pkt_info *p_pkt_info User packet buffer.
2845 * Rx ring current and used indexes are updated.
2848 * ETH_ERROR in case the routine can not access Rx desc ring.
2849 * ETH_QUEUE_FULL if Rx ring resources are exhausted.
2850 * ETH_END_OF_JOB if there is no received data.
2853 static ETH_FUNC_RET_STATUS eth_port_receive(struct mv643xx_private *mp,
2854 struct pkt_info *p_pkt_info)
2856 int rx_next_curr_desc, rx_curr_desc, rx_used_desc;
2857 volatile struct eth_rx_desc *p_rx_desc;
2858 unsigned int command_status;
2859 unsigned long flags;
2861 /* Do not process Rx ring in case of Rx ring resource error */
2862 if (mp->rx_resource_err)
2863 return ETH_QUEUE_FULL;
2865 spin_lock_irqsave(&mp->lock, flags);
2867 /* Get the Rx Desc ring 'curr and 'used' indexes */
2868 rx_curr_desc = mp->rx_curr_desc_q;
2869 rx_used_desc = mp->rx_used_desc_q;
2871 p_rx_desc = &mp->p_rx_desc_area[rx_curr_desc];
2873 /* The following parameters are used to save readings from memory */
2874 command_status = p_rx_desc->cmd_sts;
2877 /* Nothing to receive... */
2878 if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) {
2879 spin_unlock_irqrestore(&mp->lock, flags);
2880 return ETH_END_OF_JOB;
2883 p_pkt_info->byte_cnt = (p_rx_desc->byte_cnt) - RX_BUF_OFFSET;
2884 p_pkt_info->cmd_sts = command_status;
2885 p_pkt_info->buf_ptr = (p_rx_desc->buf_ptr) + RX_BUF_OFFSET;
2886 p_pkt_info->return_info = mp->rx_skb[rx_curr_desc];
2887 p_pkt_info->l4i_chk = p_rx_desc->buf_size;
2889 /* Clean the return info field to indicate that the packet has been */
2890 /* moved to the upper layers */
2891 mp->rx_skb[rx_curr_desc] = NULL;
2893 /* Update current index in data structure */
2894 rx_next_curr_desc = (rx_curr_desc + 1) % mp->rx_ring_size;
2895 mp->rx_curr_desc_q = rx_next_curr_desc;
2897 /* Rx descriptors exhausted. Set the Rx ring resource error flag */
2898 if (rx_next_curr_desc == rx_used_desc)
2899 mp->rx_resource_err = 1;
2901 spin_unlock_irqrestore(&mp->lock, flags);
2907 * eth_rx_return_buff - Returns a Rx buffer back to the Rx ring.
2910 * This routine returns a Rx buffer back to the Rx ring. It retrieves the
2911 * next 'used' descriptor and attached the returned buffer to it.
2912 * In case the Rx ring was in "resource error" condition, where there are
2913 * no available Rx resources, the function resets the resource error flag.
2916 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2917 * struct pkt_info *p_pkt_info Information on returned buffer.
2920 * New available Rx resource in Rx descriptor ring.
2923 * ETH_ERROR in case the routine can not access Rx desc ring.
2926 static ETH_FUNC_RET_STATUS eth_rx_return_buff(struct mv643xx_private *mp,
2927 struct pkt_info *p_pkt_info)
2929 int used_rx_desc; /* Where to return Rx resource */
2930 volatile struct eth_rx_desc *p_used_rx_desc;
2931 unsigned long flags;
2933 spin_lock_irqsave(&mp->lock, flags);
2935 /* Get 'used' Rx descriptor */
2936 used_rx_desc = mp->rx_used_desc_q;
2937 p_used_rx_desc = &mp->p_rx_desc_area[used_rx_desc];
2939 p_used_rx_desc->buf_ptr = p_pkt_info->buf_ptr;
2940 p_used_rx_desc->buf_size = p_pkt_info->byte_cnt;
2941 mp->rx_skb[used_rx_desc] = p_pkt_info->return_info;
2943 /* Flush the write pipe */
2945 /* Return the descriptor to DMA ownership */
2947 p_used_rx_desc->cmd_sts =
2948 ETH_BUFFER_OWNED_BY_DMA | ETH_RX_ENABLE_INTERRUPT;
2951 /* Move the used descriptor pointer to the next descriptor */
2952 mp->rx_used_desc_q = (used_rx_desc + 1) % mp->rx_ring_size;
2954 /* Any Rx return cancels the Rx resource error status */
2955 mp->rx_resource_err = 0;
2957 spin_unlock_irqrestore(&mp->lock, flags);
2962 /************* Begin ethtool support *************************/
2964 struct mv643xx_stats {
2965 char stat_string[ETH_GSTRING_LEN];
2970 #define MV643XX_STAT(m) sizeof(((struct mv643xx_private *)0)->m), \
2971 offsetof(struct mv643xx_private, m)
2973 static const struct mv643xx_stats mv643xx_gstrings_stats[] = {
2974 { "rx_packets", MV643XX_STAT(stats.rx_packets) },
2975 { "tx_packets", MV643XX_STAT(stats.tx_packets) },
2976 { "rx_bytes", MV643XX_STAT(stats.rx_bytes) },
2977 { "tx_bytes", MV643XX_STAT(stats.tx_bytes) },
2978 { "rx_errors", MV643XX_STAT(stats.rx_errors) },
2979 { "tx_errors", MV643XX_STAT(stats.tx_errors) },
2980 { "rx_dropped", MV643XX_STAT(stats.rx_dropped) },
2981 { "tx_dropped", MV643XX_STAT(stats.tx_dropped) },
2982 { "good_octets_received", MV643XX_STAT(mib_counters.good_octets_received) },
2983 { "bad_octets_received", MV643XX_STAT(mib_counters.bad_octets_received) },
2984 { "internal_mac_transmit_err", MV643XX_STAT(mib_counters.internal_mac_transmit_err) },
2985 { "good_frames_received", MV643XX_STAT(mib_counters.good_frames_received) },
2986 { "bad_frames_received", MV643XX_STAT(mib_counters.bad_frames_received) },
2987 { "broadcast_frames_received", MV643XX_STAT(mib_counters.broadcast_frames_received) },
2988 { "multicast_frames_received", MV643XX_STAT(mib_counters.multicast_frames_received) },
2989 { "frames_64_octets", MV643XX_STAT(mib_counters.frames_64_octets) },
2990 { "frames_65_to_127_octets", MV643XX_STAT(mib_counters.frames_65_to_127_octets) },
2991 { "frames_128_to_255_octets", MV643XX_STAT(mib_counters.frames_128_to_255_octets) },
2992 { "frames_256_to_511_octets", MV643XX_STAT(mib_counters.frames_256_to_511_octets) },
2993 { "frames_512_to_1023_octets", MV643XX_STAT(mib_counters.frames_512_to_1023_octets) },
2994 { "frames_1024_to_max_octets", MV643XX_STAT(mib_counters.frames_1024_to_max_octets) },
2995 { "good_octets_sent", MV643XX_STAT(mib_counters.good_octets_sent) },
2996 { "good_frames_sent", MV643XX_STAT(mib_counters.good_frames_sent) },
2997 { "excessive_collision", MV643XX_STAT(mib_counters.excessive_collision) },
2998 { "multicast_frames_sent", MV643XX_STAT(mib_counters.multicast_frames_sent) },
2999 { "broadcast_frames_sent", MV643XX_STAT(mib_counters.broadcast_frames_sent) },
3000 { "unrec_mac_control_received", MV643XX_STAT(mib_counters.unrec_mac_control_received) },
3001 { "fc_sent", MV643XX_STAT(mib_counters.fc_sent) },
3002 { "good_fc_received", MV643XX_STAT(mib_counters.good_fc_received) },
3003 { "bad_fc_received", MV643XX_STAT(mib_counters.bad_fc_received) },
3004 { "undersize_received", MV643XX_STAT(mib_counters.undersize_received) },
3005 { "fragments_received", MV643XX_STAT(mib_counters.fragments_received) },
3006 { "oversize_received", MV643XX_STAT(mib_counters.oversize_received) },
3007 { "jabber_received", MV643XX_STAT(mib_counters.jabber_received) },
3008 { "mac_receive_error", MV643XX_STAT(mib_counters.mac_receive_error) },
3009 { "bad_crc_event", MV643XX_STAT(mib_counters.bad_crc_event) },
3010 { "collision", MV643XX_STAT(mib_counters.collision) },
3011 { "late_collision", MV643XX_STAT(mib_counters.late_collision) },
3014 #define MV643XX_STATS_LEN \
3015 sizeof(mv643xx_gstrings_stats) / sizeof(struct mv643xx_stats)
3018 mv643xx_get_settings(struct net_device *netdev, struct ethtool_cmd *ecmd)
3020 struct mv643xx_private *mp = netdev->priv;
3021 int port_num = mp->port_num;
3022 int autoneg = eth_port_autoneg_supported(port_num);
3025 int half_duplex = 0;
3026 int full_duplex = 0;
3032 u32 pcs = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num));
3033 u32 psr = mv_read(MV643XX_ETH_PORT_STATUS_REG(port_num));
3035 mode_10_bit = psr & MV643XX_ETH_PORT_STATUS_MODE_10_BIT;
3038 ecmd->supported = SUPPORTED_10baseT_Half;
3040 ecmd->supported = (SUPPORTED_10baseT_Half |
3041 SUPPORTED_10baseT_Full |
3042 SUPPORTED_100baseT_Half |
3043 SUPPORTED_100baseT_Full |
3044 SUPPORTED_1000baseT_Full |
3045 (autoneg ? SUPPORTED_Autoneg : 0) |
3048 auto_duplex = !(pcs & MV643XX_ETH_DISABLE_AUTO_NEG_FOR_DUPLX);
3049 auto_speed = !(pcs & MV643XX_ETH_DISABLE_AUTO_NEG_SPEED_GMII);
3051 ecmd->advertising = ADVERTISED_TP;
3054 ecmd->advertising |= ADVERTISED_Autoneg;
3060 if (pcs & MV643XX_ETH_SET_FULL_DUPLEX_MODE)
3071 if (pcs & MV643XX_ETH_SET_GMII_SPEED_TO_1000)
3073 else if (pcs & MV643XX_ETH_SET_MII_SPEED_TO_100)
3079 if (speed_10 & half_duplex)
3080 ecmd->advertising |= ADVERTISED_10baseT_Half;
3081 if (speed_10 & full_duplex)
3082 ecmd->advertising |= ADVERTISED_10baseT_Full;
3083 if (speed_100 & half_duplex)
3084 ecmd->advertising |= ADVERTISED_100baseT_Half;
3085 if (speed_100 & full_duplex)
3086 ecmd->advertising |= ADVERTISED_100baseT_Full;
3088 ecmd->advertising |= ADVERTISED_1000baseT_Full;
3092 ecmd->port = PORT_TP;
3093 ecmd->phy_address = ethernet_phy_get(port_num);
3095 ecmd->transceiver = XCVR_EXTERNAL;
3097 if (netif_carrier_ok(netdev)) {
3099 ecmd->speed = SPEED_10;
3101 if (psr & MV643XX_ETH_PORT_STATUS_GMII_1000)
3102 ecmd->speed = SPEED_1000;
3103 else if (psr & MV643XX_ETH_PORT_STATUS_MII_100)
3104 ecmd->speed = SPEED_100;
3106 ecmd->speed = SPEED_10;
3109 if (psr & MV643XX_ETH_PORT_STATUS_FULL_DUPLEX)
3110 ecmd->duplex = DUPLEX_FULL;
3112 ecmd->duplex = DUPLEX_HALF;
3118 ecmd->autoneg = autoneg ? AUTONEG_ENABLE : AUTONEG_DISABLE;
3123 mv643xx_get_drvinfo(struct net_device *netdev,
3124 struct ethtool_drvinfo *drvinfo)
3126 strncpy(drvinfo->driver, mv643xx_driver_name, 32);
3127 strncpy(drvinfo->version, mv643xx_driver_version, 32);
3128 strncpy(drvinfo->fw_version, "N/A", 32);
3129 strncpy(drvinfo->bus_info, "mv643xx", 32);
3130 drvinfo->n_stats = MV643XX_STATS_LEN;
3134 mv643xx_get_stats_count(struct net_device *netdev)
3136 return MV643XX_STATS_LEN;
3140 mv643xx_get_ethtool_stats(struct net_device *netdev,
3141 struct ethtool_stats *stats, uint64_t *data)
3143 struct mv643xx_private *mp = netdev->priv;
3146 eth_update_mib_counters(mp);
3148 for(i = 0; i < MV643XX_STATS_LEN; i++) {
3149 char *p = (char *)mp+mv643xx_gstrings_stats[i].stat_offset;
3150 data[i] = (mv643xx_gstrings_stats[i].sizeof_stat ==
3151 sizeof(uint64_t)) ? *(uint64_t *)p : *(uint32_t *)p;
3156 mv643xx_get_strings(struct net_device *netdev, uint32_t stringset, uint8_t *data)
3162 for (i=0; i < MV643XX_STATS_LEN; i++) {
3163 memcpy(data + i * ETH_GSTRING_LEN,
3164 mv643xx_gstrings_stats[i].stat_string,
3171 static struct ethtool_ops mv643xx_ethtool_ops = {
3172 .get_settings = mv643xx_get_settings,
3173 .get_drvinfo = mv643xx_get_drvinfo,
3174 .get_link = ethtool_op_get_link,
3175 .get_sg = ethtool_op_get_sg,
3176 .set_sg = ethtool_op_set_sg,
3177 .get_strings = mv643xx_get_strings,
3178 .get_stats_count = mv643xx_get_stats_count,
3179 .get_ethtool_stats = mv643xx_get_ethtool_stats,
3182 /************* End ethtool support *************************/