blob: 2a808e265a3ee3622349e5134ed03e3002ac5a07 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/net/mv643xx_eth.c - Driver for MV643XX ethernet ports
3 * Copyright (C) 2002 Matthew Dharm <mdharm@momenco.com>
4 *
5 * Based on the 64360 driver from:
6 * Copyright (C) 2002 rabeeh@galileo.co.il
7 *
8 * Copyright (C) 2003 PMC-Sierra, Inc.,
Olaf Hering3bb8a182006-01-05 22:45:45 -08009 * written by Manish Lachwani
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org>
12 *
Dale Farnsworthc8aaea22006-03-03 10:02:05 -070013 * Copyright (C) 2004-2006 MontaVista Software, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * 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>
Al Virob6298c22006-01-18 19:35:54 -050035#include <linux/in.h>
36#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#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>
Russell Kingd052d1b2005-10-29 19:07:23 +010044#include <linux/platform_device.h>
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/io.h>
47#include <asm/types.h>
48#include <asm/pgtable.h>
49#include <asm/system.h>
50#include <asm/delay.h>
51#include "mv643xx_eth.h"
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/* Static function declarations */
Gabriel Paubert144213d2007-03-23 12:07:26 -070054static void eth_port_uc_addr_get(unsigned int port_num, unsigned char *p_addr);
55static void eth_port_uc_addr_set(unsigned int port_num, unsigned char *p_addr);
Dale Farnsworth16e03012006-01-16 16:50:02 -070056static void eth_port_set_multicast_list(struct net_device *);
Dale Farnsworth9f8dd312006-01-27 01:10:47 -070057static void mv643xx_eth_port_enable_tx(unsigned int port_num,
Dale Farnsworth12a87c62006-03-03 10:00:22 -070058 unsigned int queues);
Dale Farnsworth9f8dd312006-01-27 01:10:47 -070059static void mv643xx_eth_port_enable_rx(unsigned int port_num,
Dale Farnsworth12a87c62006-03-03 10:00:22 -070060 unsigned int queues);
Dale Farnsworth9f8dd312006-01-27 01:10:47 -070061static unsigned int mv643xx_eth_port_disable_tx(unsigned int port_num);
62static unsigned int mv643xx_eth_port_disable_rx(unsigned int port_num);
Dale Farnsworthab4384a2006-01-16 16:59:21 -070063static int mv643xx_eth_open(struct net_device *);
64static int mv643xx_eth_stop(struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static int mv643xx_eth_change_mtu(struct net_device *, int);
66static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *);
67static void eth_port_init_mac_tables(unsigned int eth_port_num);
68#ifdef MV643XX_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -070069static int mv643xx_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#endif
James Chapmanc28a4f82006-01-27 01:13:15 -070071static int ethernet_phy_get(unsigned int eth_port_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr);
73static int ethernet_phy_detect(unsigned int eth_port_num);
James Chapmanc28a4f82006-01-27 01:13:15 -070074static int mv643xx_mdio_read(struct net_device *dev, int phy_id, int location);
75static void mv643xx_mdio_write(struct net_device *dev, int phy_id, int location, int val);
James Chapmand0412d92006-01-27 01:15:30 -070076static int mv643xx_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
Jeff Garzik7282d492006-09-13 14:30:00 -040077static const struct ethtool_ops mv643xx_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static char mv643xx_driver_name[] = "mv643xx_eth";
80static char mv643xx_driver_version[] = "1.0";
81
82static void __iomem *mv643xx_eth_shared_base;
83
84/* used to protect MV643XX_ETH_SMI_REG, which is shared across ports */
Ingo Molnara9f6a0d2005-09-09 13:10:41 -070085static DEFINE_SPINLOCK(mv643xx_eth_phy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87static inline u32 mv_read(int offset)
88{
Al Virodc074a82005-04-25 07:55:58 -070089 void __iomem *reg_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS;
92
93 return readl(reg_base + offset);
94}
95
96static inline void mv_write(int offset, u32 data)
97{
Al Virodc074a82005-04-25 07:55:58 -070098 void __iomem *reg_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
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 */
111static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
112{
Dale Farnsworth8f518702006-01-16 16:56:30 -0700113 if ((new_mtu > 9500) || (new_mtu < 64))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
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)) {
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700124 mv643xx_eth_stop(dev);
125 if (mv643xx_eth_open(dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 printk(KERN_ERR
127 "%s: Fatal error on opening device\n",
128 dev->name);
129 }
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return 0;
132}
133
134/*
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700135 * mv643xx_eth_rx_refill_descs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 *
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 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700142static void mv643xx_eth_rx_refill_descs(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct mv643xx_private *mp = netdev_priv(dev);
145 struct pkt_info pkt_info;
146 struct sk_buff *skb;
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700147 int unaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700149 while (mp->rx_desc_count < mp->rx_ring_size) {
Ralf Baechle908b6372007-02-26 19:52:06 +0000150 skb = dev_alloc_skb(ETH_RX_SKB_SIZE + dma_get_cache_alignment());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (!skb)
152 break;
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700153 mp->rx_desc_count++;
Ralf Baechle908b6372007-02-26 19:52:06 +0000154 unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700155 if (unaligned)
Ralf Baechle908b6372007-02-26 19:52:06 +0000156 skb_reserve(skb, dma_get_cache_alignment() - unaligned);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 pkt_info.cmd_sts = ETH_RX_ENABLE_INTERRUPT;
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700158 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 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 }
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700167 skb_reserve(skb, ETH_HW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 /*
170 * If RX ring is empty of SKB, set a timer to try allocating
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700171 * again at a later time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700173 if (mp->rx_desc_count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 printk(KERN_INFO "%s: Rx ring is empty\n", dev->name);
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700175 mp->timeout.expires = jiffies + (HZ / 10); /* 100 mSec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 add_timer(&mp->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180/*
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700181 * mv643xx_eth_rx_refill_descs_timer_wrapper
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 *
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 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700190static inline void mv643xx_eth_rx_refill_descs_timer_wrapper(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700192 mv643xx_eth_rx_refill_descs((struct net_device *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
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 */
203static 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);
Dale Farnsworthed9b5d42006-01-27 01:06:38 -0700209 eth_port_uc_addr_set(port_num, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
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 */
220static void mv643xx_eth_set_rx_mode(struct net_device *dev)
221{
222 struct mv643xx_private *mp = netdev_priv(dev);
Dale Farnsworth01999872006-01-27 01:18:01 -0700223 u32 config_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Dale Farnsworth01999872006-01-27 01:18:01 -0700225 config_reg = mv_read(MV643XX_ETH_PORT_CONFIG_REG(mp->port_num));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (dev->flags & IFF_PROMISC)
Dale Farnsworth01999872006-01-27 01:18:01 -0700227 config_reg |= (u32) MV643XX_ETH_UNICAST_PROMISCUOUS_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 else
Dale Farnsworth01999872006-01-27 01:18:01 -0700229 config_reg &= ~(u32) MV643XX_ETH_UNICAST_PROMISCUOUS_MODE;
230 mv_write(MV643XX_ETH_PORT_CONFIG_REG(mp->port_num), config_reg);
Dale Farnsworth16e03012006-01-16 16:50:02 -0700231
232 eth_port_set_multicast_list(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
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 */
246static 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 */
265static 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 */
Al Viro91c7c562006-12-06 19:50:06 +0000280static void mv643xx_eth_tx_timeout_task(struct work_struct *ugly)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Al Viro91c7c562006-12-06 19:50:06 +0000282 struct mv643xx_private *mp = container_of(ugly, struct mv643xx_private,
283 tx_timeout_task);
284 struct net_device *dev = mp->mii.dev; /* yuck */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Dale Farnsworth94843562006-04-11 18:24:26 -0700286 if (!netif_running(dev))
287 return;
288
289 netif_stop_queue(dev);
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 eth_port_reset(mp->port_num);
Dale Farnsworthed9b5d42006-01-27 01:06:38 -0700292 eth_port_start(dev);
Dale Farnsworth94843562006-04-11 18:24:26 -0700293
294 if (mp->tx_ring_size - mp->tx_desc_count >= MAX_DESCS_PER_SKB)
295 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700298/**
299 * mv643xx_eth_free_tx_descs - Free the tx desc data for completed descriptors
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 *
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700301 * If force is non-zero, frees uncompleted descriptors as well
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 */
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700303int mv643xx_eth_free_tx_descs(struct net_device *dev, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 struct mv643xx_private *mp = netdev_priv(dev);
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700306 struct eth_tx_desc *desc;
307 u32 cmd_sts;
308 struct sk_buff *skb;
309 unsigned long flags;
310 int tx_index;
311 dma_addr_t addr;
312 int count;
313 int released = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700315 while (mp->tx_desc_count > 0) {
316 spin_lock_irqsave(&mp->lock, flags);
Dale Farnsworthd344bff2007-01-23 09:52:25 -0700317
318 /* tx_desc_count might have changed before acquiring the lock */
319 if (mp->tx_desc_count <= 0) {
320 spin_unlock_irqrestore(&mp->lock, flags);
321 return released;
322 }
323
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700324 tx_index = mp->tx_used_desc_q;
325 desc = &mp->p_tx_desc_area[tx_index];
326 cmd_sts = desc->cmd_sts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700328 if (!force && (cmd_sts & ETH_BUFFER_OWNED_BY_DMA)) {
329 spin_unlock_irqrestore(&mp->lock, flags);
330 return released;
331 }
332
333 mp->tx_used_desc_q = (tx_index + 1) % mp->tx_ring_size;
334 mp->tx_desc_count--;
335
336 addr = desc->buf_ptr;
337 count = desc->byte_cnt;
338 skb = mp->tx_skb[tx_index];
339 if (skb)
340 mp->tx_skb[tx_index] = NULL;
341
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700342 if (cmd_sts & ETH_ERROR_SUMMARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 printk("%s: Error in TX\n", dev->name);
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700344 mp->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
Dale Farnsworthd344bff2007-01-23 09:52:25 -0700347 spin_unlock_irqrestore(&mp->lock, flags);
348
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700349 if (cmd_sts & ETH_TX_FIRST_DESC)
350 dma_unmap_single(NULL, addr, count, DMA_TO_DEVICE);
Paolo Galtiericb415d32006-01-16 16:48:02 -0700351 else
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700352 dma_unmap_page(NULL, addr, count, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700354 if (skb)
355 dev_kfree_skb_irq(skb);
356
357 released = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return released;
361}
362
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700363static void mv643xx_eth_free_completed_tx_descs(struct net_device *dev)
364{
365 struct mv643xx_private *mp = netdev_priv(dev);
366
367 if (mv643xx_eth_free_tx_descs(dev, 0) &&
368 mp->tx_ring_size - mp->tx_desc_count >= MAX_DESCS_PER_SKB)
369 netif_wake_queue(dev);
370}
371
372static void mv643xx_eth_free_all_tx_descs(struct net_device *dev)
373{
374 mv643xx_eth_free_tx_descs(dev, 1);
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/*
378 * mv643xx_eth_receive
379 *
380 * This function is forward packets that are received from the port's
381 * queues toward kernel core or FastRoute them to another interface.
382 *
383 * Input : dev - a pointer to the required interface
384 * max - maximum number to receive (0 means unlimted)
385 *
386 * Output : number of served packets
387 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388static int mv643xx_eth_receive_queue(struct net_device *dev, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 struct mv643xx_private *mp = netdev_priv(dev);
391 struct net_device_stats *stats = &mp->stats;
392 unsigned int received_packets = 0;
393 struct sk_buff *skb;
394 struct pkt_info pkt_info;
395
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700396 while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) {
Jeff Garzik54caf442006-09-21 00:08:10 -0400397 dma_unmap_single(NULL, pkt_info.buf_ptr, ETH_RX_SKB_SIZE,
Dale Farnsworth71d28722006-09-13 09:21:08 -0700398 DMA_FROM_DEVICE);
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700399 mp->rx_desc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 received_packets++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700401
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700402 /*
403 * Update statistics.
404 * Note byte count includes 4 byte CRC count
405 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 stats->rx_packets++;
407 stats->rx_bytes += pkt_info.byte_cnt;
408 skb = pkt_info.return_info;
409 /*
410 * In case received a packet without first / last bits on OR
411 * the error summary bit is on, the packets needs to be dropeed.
412 */
413 if (((pkt_info.cmd_sts
414 & (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) !=
415 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC))
416 || (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)) {
417 stats->rx_dropped++;
418 if ((pkt_info.cmd_sts & (ETH_RX_FIRST_DESC |
419 ETH_RX_LAST_DESC)) !=
420 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) {
421 if (net_ratelimit())
422 printk(KERN_ERR
423 "%s: Received packet spread "
424 "on multiple descriptors\n",
425 dev->name);
426 }
427 if (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)
428 stats->rx_errors++;
429
430 dev_kfree_skb_irq(skb);
431 } else {
432 /*
433 * The -4 is for the CRC in the trailer of the
434 * received packet
435 */
436 skb_put(skb, pkt_info.byte_cnt - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (pkt_info.cmd_sts & ETH_LAYER_4_CHECKSUM_OK) {
439 skb->ip_summed = CHECKSUM_UNNECESSARY;
440 skb->csum = htons(
441 (pkt_info.cmd_sts & 0x0007fff8) >> 3);
442 }
443 skb->protocol = eth_type_trans(skb, dev);
444#ifdef MV643XX_NAPI
445 netif_receive_skb(skb);
446#else
447 netif_rx(skb);
448#endif
449 }
Paolo Galtieri12ad74f2006-01-27 01:03:38 -0700450 dev->last_rx = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700452 mv643xx_eth_rx_refill_descs(dev); /* Fill RX ring with skb's */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 return received_packets;
455}
456
James Chapmand0412d92006-01-27 01:15:30 -0700457/* Set the mv643xx port configuration register for the speed/duplex mode. */
458static void mv643xx_eth_update_pscr(struct net_device *dev,
459 struct ethtool_cmd *ecmd)
460{
461 struct mv643xx_private *mp = netdev_priv(dev);
462 int port_num = mp->port_num;
463 u32 o_pscr, n_pscr;
Dale Farnsworth12a87c62006-03-03 10:00:22 -0700464 unsigned int queues;
James Chapmand0412d92006-01-27 01:15:30 -0700465
466 o_pscr = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num));
467 n_pscr = o_pscr;
468
469 /* clear speed, duplex and rx buffer size fields */
470 n_pscr &= ~(MV643XX_ETH_SET_MII_SPEED_TO_100 |
471 MV643XX_ETH_SET_GMII_SPEED_TO_1000 |
472 MV643XX_ETH_SET_FULL_DUPLEX_MODE |
473 MV643XX_ETH_MAX_RX_PACKET_MASK);
474
475 if (ecmd->duplex == DUPLEX_FULL)
476 n_pscr |= MV643XX_ETH_SET_FULL_DUPLEX_MODE;
477
478 if (ecmd->speed == SPEED_1000)
479 n_pscr |= MV643XX_ETH_SET_GMII_SPEED_TO_1000 |
480 MV643XX_ETH_MAX_RX_PACKET_9700BYTE;
481 else {
482 if (ecmd->speed == SPEED_100)
483 n_pscr |= MV643XX_ETH_SET_MII_SPEED_TO_100;
484 n_pscr |= MV643XX_ETH_MAX_RX_PACKET_1522BYTE;
485 }
486
487 if (n_pscr != o_pscr) {
488 if ((o_pscr & MV643XX_ETH_SERIAL_PORT_ENABLE) == 0)
489 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
490 n_pscr);
491 else {
Dale Farnsworth12a87c62006-03-03 10:00:22 -0700492 queues = mv643xx_eth_port_disable_tx(port_num);
James Chapmand0412d92006-01-27 01:15:30 -0700493
494 o_pscr &= ~MV643XX_ETH_SERIAL_PORT_ENABLE;
495 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
496 o_pscr);
497 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
498 n_pscr);
499 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num),
500 n_pscr);
Dale Farnsworth12a87c62006-03-03 10:00:22 -0700501 if (queues)
502 mv643xx_eth_port_enable_tx(port_num, queues);
James Chapmand0412d92006-01-27 01:15:30 -0700503 }
504 }
505}
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507/*
508 * mv643xx_eth_int_handler
509 *
510 * Main interrupt handler for the gigbit ethernet ports
511 *
512 * Input : irq - irq number (not used)
513 * dev_id - a pointer to the required interface's data structure
514 * regs - not used
515 * Output : N/A
516 */
517
David Howells7d12e782006-10-05 14:55:46 +0100518static irqreturn_t mv643xx_eth_int_handler(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 struct net_device *dev = (struct net_device *)dev_id;
521 struct mv643xx_private *mp = netdev_priv(dev);
522 u32 eth_int_cause, eth_int_cause_ext = 0;
523 unsigned int port_num = mp->port_num;
524
525 /* Read interrupt cause registers */
526 eth_int_cause = mv_read(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num)) &
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700527 ETH_INT_UNMASK_ALL;
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700528 if (eth_int_cause & ETH_INT_CAUSE_EXT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 eth_int_cause_ext = mv_read(
530 MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num)) &
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700531 ETH_INT_UNMASK_ALL_EXT;
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700532 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num),
533 ~eth_int_cause_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 /* PHY status changed */
Dale Farnsworth2bcff602007-09-28 06:30:43 -0700537 if (eth_int_cause_ext & (ETH_INT_CAUSE_PHY | ETH_INT_CAUSE_STATE)) {
James Chapmand0412d92006-01-27 01:15:30 -0700538 struct ethtool_cmd cmd;
539
James Chapmanc28a4f82006-01-27 01:13:15 -0700540 if (mii_link_ok(&mp->mii)) {
James Chapmand0412d92006-01-27 01:15:30 -0700541 mii_ethtool_gset(&mp->mii, &cmd);
542 mv643xx_eth_update_pscr(dev, &cmd);
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700543 mv643xx_eth_port_enable_tx(port_num,
544 ETH_TX_QUEUES_ENABLED);
James Chapmanc28a4f82006-01-27 01:13:15 -0700545 if (!netif_carrier_ok(dev)) {
546 netif_carrier_on(dev);
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700547 if (mp->tx_ring_size - mp->tx_desc_count >=
548 MAX_DESCS_PER_SKB)
James Chapmand0412d92006-01-27 01:15:30 -0700549 netif_wake_queue(dev);
James Chapmanc28a4f82006-01-27 01:13:15 -0700550 }
551 } else if (netif_carrier_ok(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 netif_stop_queue(dev);
James Chapmanc28a4f82006-01-27 01:13:15 -0700553 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555 }
556
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700557#ifdef MV643XX_NAPI
558 if (eth_int_cause & ETH_INT_CAUSE_RX) {
559 /* schedule the NAPI poll routine to maintain port */
560 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
561 ETH_INT_MASK_ALL);
562 /* wait for previous write to complete */
563 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
564
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700565 netif_rx_schedule(dev, &mp->napi);
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700566 }
567#else
568 if (eth_int_cause & ETH_INT_CAUSE_RX)
569 mv643xx_eth_receive_queue(dev, INT_MAX);
Brent Cook5c537402006-04-11 18:23:15 -0700570#endif
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700571 if (eth_int_cause_ext & ETH_INT_CAUSE_TX)
572 mv643xx_eth_free_completed_tx_descs(dev);
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /*
575 * If no real interrupt occured, exit.
576 * This can happen when using gigE interrupt coalescing mechanism.
577 */
578 if ((eth_int_cause == 0x0) && (eth_int_cause_ext == 0x0))
579 return IRQ_NONE;
580
581 return IRQ_HANDLED;
582}
583
584#ifdef MV643XX_COAL
585
586/*
587 * eth_port_set_rx_coal - Sets coalescing interrupt mechanism on RX path
588 *
589 * DESCRIPTION:
590 * This routine sets the RX coalescing interrupt mechanism parameter.
591 * This parameter is a timeout counter, that counts in 64 t_clk
592 * chunks ; that when timeout event occurs a maskable interrupt
593 * occurs.
594 * The parameter is calculated using the tClk of the MV-643xx chip
595 * , and the required delay of the interrupt in usec.
596 *
597 * INPUT:
598 * unsigned int eth_port_num Ethernet port number
599 * unsigned int t_clk t_clk of the MV-643xx chip in HZ units
600 * unsigned int delay Delay in usec
601 *
602 * OUTPUT:
603 * Interrupt coalescing mechanism value is set in MV-643xx chip.
604 *
605 * RETURN:
606 * The interrupt coalescing value set in the gigE port.
607 *
608 */
609static unsigned int eth_port_set_rx_coal(unsigned int eth_port_num,
610 unsigned int t_clk, unsigned int delay)
611{
612 unsigned int coal = ((t_clk / 1000000) * delay) / 64;
613
614 /* Set RX Coalescing mechanism */
615 mv_write(MV643XX_ETH_SDMA_CONFIG_REG(eth_port_num),
616 ((coal & 0x3fff) << 8) |
617 (mv_read(MV643XX_ETH_SDMA_CONFIG_REG(eth_port_num))
618 & 0xffc000ff));
619
620 return coal;
621}
622#endif
623
624/*
625 * eth_port_set_tx_coal - Sets coalescing interrupt mechanism on TX path
626 *
627 * DESCRIPTION:
628 * This routine sets the TX coalescing interrupt mechanism parameter.
629 * This parameter is a timeout counter, that counts in 64 t_clk
630 * chunks ; that when timeout event occurs a maskable interrupt
631 * occurs.
632 * The parameter is calculated using the t_cLK frequency of the
633 * MV-643xx chip and the required delay in the interrupt in uSec
634 *
635 * INPUT:
636 * unsigned int eth_port_num Ethernet port number
637 * unsigned int t_clk t_clk of the MV-643xx chip in HZ units
638 * unsigned int delay Delay in uSeconds
639 *
640 * OUTPUT:
641 * Interrupt coalescing mechanism value is set in MV-643xx chip.
642 *
643 * RETURN:
644 * The interrupt coalescing value set in the gigE port.
645 *
646 */
647static unsigned int eth_port_set_tx_coal(unsigned int eth_port_num,
648 unsigned int t_clk, unsigned int delay)
649{
650 unsigned int coal;
651 coal = ((t_clk / 1000000) * delay) / 64;
652 /* Set TX Coalescing mechanism */
653 mv_write(MV643XX_ETH_TX_FIFO_URGENT_THRESHOLD_REG(eth_port_num),
654 coal << 4);
655 return coal;
656}
657
658/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 * ether_init_rx_desc_ring - Curve a Rx chain desc list and buffer in memory.
660 *
661 * DESCRIPTION:
662 * This function prepares a Rx chained list of descriptors and packet
663 * buffers in a form of a ring. The routine must be called after port
664 * initialization routine and before port start routine.
665 * The Ethernet SDMA engine uses CPU bus addresses to access the various
666 * devices in the system (i.e. DRAM). This function uses the ethernet
667 * struct 'virtual to physical' routine (set by the user) to set the ring
668 * with physical addresses.
669 *
670 * INPUT:
671 * struct mv643xx_private *mp Ethernet Port Control srtuct.
672 *
673 * OUTPUT:
674 * The routine updates the Ethernet port control struct with information
675 * regarding the Rx descriptors and buffers.
676 *
677 * RETURN:
678 * None.
679 */
680static void ether_init_rx_desc_ring(struct mv643xx_private *mp)
681{
682 volatile struct eth_rx_desc *p_rx_desc;
683 int rx_desc_num = mp->rx_ring_size;
684 int i;
685
686 /* initialize the next_desc_ptr links in the Rx descriptors ring */
687 p_rx_desc = (struct eth_rx_desc *)mp->p_rx_desc_area;
688 for (i = 0; i < rx_desc_num; i++) {
689 p_rx_desc[i].next_desc_ptr = mp->rx_desc_dma +
690 ((i + 1) % rx_desc_num) * sizeof(struct eth_rx_desc);
691 }
692
693 /* Save Rx desc pointer to driver struct. */
694 mp->rx_curr_desc_q = 0;
695 mp->rx_used_desc_q = 0;
696
697 mp->rx_desc_area_size = rx_desc_num * sizeof(struct eth_rx_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
700/*
701 * ether_init_tx_desc_ring - Curve a Tx chain desc list and buffer in memory.
702 *
703 * DESCRIPTION:
704 * This function prepares a Tx chained list of descriptors and packet
705 * buffers in a form of a ring. The routine must be called after port
706 * initialization routine and before port start routine.
707 * The Ethernet SDMA engine uses CPU bus addresses to access the various
708 * devices in the system (i.e. DRAM). This function uses the ethernet
709 * struct 'virtual to physical' routine (set by the user) to set the ring
710 * with physical addresses.
711 *
712 * INPUT:
713 * struct mv643xx_private *mp Ethernet Port Control srtuct.
714 *
715 * OUTPUT:
716 * The routine updates the Ethernet port control struct with information
717 * regarding the Tx descriptors and buffers.
718 *
719 * RETURN:
720 * None.
721 */
722static void ether_init_tx_desc_ring(struct mv643xx_private *mp)
723{
724 int tx_desc_num = mp->tx_ring_size;
725 struct eth_tx_desc *p_tx_desc;
726 int i;
727
728 /* Initialize the next_desc_ptr links in the Tx descriptors ring */
729 p_tx_desc = (struct eth_tx_desc *)mp->p_tx_desc_area;
730 for (i = 0; i < tx_desc_num; i++) {
731 p_tx_desc[i].next_desc_ptr = mp->tx_desc_dma +
732 ((i + 1) % tx_desc_num) * sizeof(struct eth_tx_desc);
733 }
734
735 mp->tx_curr_desc_q = 0;
736 mp->tx_used_desc_q = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 mp->tx_desc_area_size = tx_desc_num * sizeof(struct eth_tx_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739}
740
James Chapmand0412d92006-01-27 01:15:30 -0700741static int mv643xx_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
742{
743 struct mv643xx_private *mp = netdev_priv(dev);
744 int err;
745
746 spin_lock_irq(&mp->lock);
747 err = mii_ethtool_sset(&mp->mii, cmd);
748 spin_unlock_irq(&mp->lock);
749
750 return err;
751}
752
753static int mv643xx_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
754{
755 struct mv643xx_private *mp = netdev_priv(dev);
756 int err;
757
758 spin_lock_irq(&mp->lock);
759 err = mii_ethtool_gset(&mp->mii, cmd);
760 spin_unlock_irq(&mp->lock);
761
762 /* The PHY may support 1000baseT_Half, but the mv643xx does not */
763 cmd->supported &= ~SUPPORTED_1000baseT_Half;
764 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
765
766 return err;
767}
768
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700769/*
770 * mv643xx_eth_open
771 *
772 * This function is called when openning the network device. The function
773 * should initialize all the hardware, initialize cyclic Rx/Tx
774 * descriptors chain and buffers and allocate an IRQ to the network
775 * device.
776 *
777 * Input : a pointer to the network device structure
778 *
779 * Output : zero of success , nonzero if fails.
780 */
781
782static int mv643xx_eth_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 struct mv643xx_private *mp = netdev_priv(dev);
785 unsigned int port_num = mp->port_num;
786 unsigned int size;
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700787 int err;
788
Dale Farnsworth85cf5722007-03-07 22:21:23 -0700789 /* Clear any pending ethernet port interrupts */
790 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0);
791 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
792 /* wait for previous write to complete */
793 mv_read (MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num));
794
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700795 err = request_irq(dev->irq, mv643xx_eth_int_handler,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700796 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, dev);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700797 if (err) {
798 printk(KERN_ERR "Can not assign IRQ number to MV643XX_eth%d\n",
799 port_num);
800 return -EAGAIN;
801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 eth_port_init(mp);
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 memset(&mp->timeout, 0, sizeof(struct timer_list));
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700806 mp->timeout.function = mv643xx_eth_rx_refill_descs_timer_wrapper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 mp->timeout.data = (unsigned long)dev;
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /* Allocate RX and TX skb rings */
810 mp->rx_skb = kmalloc(sizeof(*mp->rx_skb) * mp->rx_ring_size,
811 GFP_KERNEL);
812 if (!mp->rx_skb) {
813 printk(KERN_ERR "%s: Cannot allocate Rx skb ring\n", dev->name);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700814 err = -ENOMEM;
815 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 }
817 mp->tx_skb = kmalloc(sizeof(*mp->tx_skb) * mp->tx_ring_size,
818 GFP_KERNEL);
819 if (!mp->tx_skb) {
820 printk(KERN_ERR "%s: Cannot allocate Tx skb ring\n", dev->name);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700821 err = -ENOMEM;
822 goto out_free_rx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824
825 /* Allocate TX ring */
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700826 mp->tx_desc_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 size = mp->tx_ring_size * sizeof(struct eth_tx_desc);
828 mp->tx_desc_area_size = size;
829
830 if (mp->tx_sram_size) {
831 mp->p_tx_desc_area = ioremap(mp->tx_sram_addr,
832 mp->tx_sram_size);
833 mp->tx_desc_dma = mp->tx_sram_addr;
834 } else
835 mp->p_tx_desc_area = dma_alloc_coherent(NULL, size,
836 &mp->tx_desc_dma,
837 GFP_KERNEL);
838
839 if (!mp->p_tx_desc_area) {
840 printk(KERN_ERR "%s: Cannot allocate Tx Ring (size %d bytes)\n",
841 dev->name, size);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700842 err = -ENOMEM;
843 goto out_free_tx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845 BUG_ON((u32) mp->p_tx_desc_area & 0xf); /* check 16-byte alignment */
846 memset((void *)mp->p_tx_desc_area, 0, mp->tx_desc_area_size);
847
848 ether_init_tx_desc_ring(mp);
849
850 /* Allocate RX ring */
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700851 mp->rx_desc_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 size = mp->rx_ring_size * sizeof(struct eth_rx_desc);
853 mp->rx_desc_area_size = size;
854
855 if (mp->rx_sram_size) {
856 mp->p_rx_desc_area = ioremap(mp->rx_sram_addr,
857 mp->rx_sram_size);
858 mp->rx_desc_dma = mp->rx_sram_addr;
859 } else
860 mp->p_rx_desc_area = dma_alloc_coherent(NULL, size,
861 &mp->rx_desc_dma,
862 GFP_KERNEL);
863
864 if (!mp->p_rx_desc_area) {
865 printk(KERN_ERR "%s: Cannot allocate Rx ring (size %d bytes)\n",
866 dev->name, size);
867 printk(KERN_ERR "%s: Freeing previously allocated TX queues...",
868 dev->name);
869 if (mp->rx_sram_size)
Dale Farnsworthdd09b1d2006-01-16 16:53:15 -0700870 iounmap(mp->p_tx_desc_area);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 else
872 dma_free_coherent(NULL, mp->tx_desc_area_size,
873 mp->p_tx_desc_area, mp->tx_desc_dma);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700874 err = -ENOMEM;
875 goto out_free_tx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877 memset((void *)mp->p_rx_desc_area, 0, size);
878
879 ether_init_rx_desc_ring(mp);
880
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700881 mv643xx_eth_rx_refill_descs(dev); /* Fill RX ring with skb's */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700883#ifdef MV643XX_NAPI
884 napi_enable(&mp->napi);
885#endif
886
Dale Farnsworthed9b5d42006-01-27 01:06:38 -0700887 eth_port_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 /* Interrupt Coalescing */
890
891#ifdef MV643XX_COAL
892 mp->rx_int_coal =
893 eth_port_set_rx_coal(port_num, 133000000, MV643XX_RX_COAL);
894#endif
895
896 mp->tx_int_coal =
897 eth_port_set_tx_coal(port_num, 133000000, MV643XX_TX_COAL);
898
Dale Farnsworth8f518702006-01-16 16:56:30 -0700899 /* Unmask phy and link status changes interrupts */
900 mv_write(MV643XX_ETH_INTERRUPT_EXTEND_MASK_REG(port_num),
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700901 ETH_INT_UNMASK_ALL_EXT);
Dale Farnsworth8f518702006-01-16 16:56:30 -0700902
903 /* Unmask RX buffer and TX end interrupt */
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700904 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), ETH_INT_UNMASK_ALL);
James Chapmand0412d92006-01-27 01:15:30 -0700905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return 0;
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700907
908out_free_tx_skb:
909 kfree(mp->tx_skb);
910out_free_rx_skb:
911 kfree(mp->rx_skb);
912out_free_irq:
913 free_irq(dev->irq, dev);
914
915 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918static void mv643xx_eth_free_tx_rings(struct net_device *dev)
919{
920 struct mv643xx_private *mp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* Stop Tx Queues */
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700923 mv643xx_eth_port_disable_tx(mp->port_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700925 /* Free outstanding skb's on TX ring */
926 mv643xx_eth_free_all_tx_descs(dev);
927
928 BUG_ON(mp->tx_used_desc_q != mp->tx_curr_desc_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /* Free TX ring */
931 if (mp->tx_sram_size)
932 iounmap(mp->p_tx_desc_area);
933 else
934 dma_free_coherent(NULL, mp->tx_desc_area_size,
935 mp->p_tx_desc_area, mp->tx_desc_dma);
936}
937
938static void mv643xx_eth_free_rx_rings(struct net_device *dev)
939{
940 struct mv643xx_private *mp = netdev_priv(dev);
941 unsigned int port_num = mp->port_num;
942 int curr;
943
944 /* Stop RX Queues */
Dale Farnsworth9f8dd312006-01-27 01:10:47 -0700945 mv643xx_eth_port_disable_rx(port_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /* Free preallocated skb's on RX rings */
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700948 for (curr = 0; mp->rx_desc_count && curr < mp->rx_ring_size; curr++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (mp->rx_skb[curr]) {
950 dev_kfree_skb(mp->rx_skb[curr]);
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700951 mp->rx_desc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953 }
954
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700955 if (mp->rx_desc_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 printk(KERN_ERR
957 "%s: Error in freeing Rx Ring. %d skb's still"
958 " stuck in RX Ring - ignoring them\n", dev->name,
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700959 mp->rx_desc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 /* Free RX ring */
961 if (mp->rx_sram_size)
962 iounmap(mp->p_rx_desc_area);
963 else
964 dma_free_coherent(NULL, mp->rx_desc_area_size,
965 mp->p_rx_desc_area, mp->rx_desc_dma);
966}
967
968/*
969 * mv643xx_eth_stop
970 *
971 * This function is used when closing the network device.
972 * It updates the hardware,
973 * release all memory that holds buffers and descriptors and release the IRQ.
974 * Input : a pointer to the device structure
975 * Output : zero if success , nonzero if fails
976 */
977
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700978static int mv643xx_eth_stop(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
980 struct mv643xx_private *mp = netdev_priv(dev);
981 unsigned int port_num = mp->port_num;
982
Dale Farnsworthc2e5b352006-01-16 17:00:24 -0700983 /* Mask all interrupts on ethernet port */
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700984 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), ETH_INT_MASK_ALL);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -0700985 /* wait for previous write to complete */
Dale Farnsworth8f518702006-01-16 16:56:30 -0700986 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
987
988#ifdef MV643XX_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700989 napi_disable(&mp->napi);
Dale Farnsworth8f518702006-01-16 16:56:30 -0700990#endif
991 netif_carrier_off(dev);
992 netif_stop_queue(dev);
993
994 eth_port_reset(mp->port_num);
995
996 mv643xx_eth_free_tx_rings(dev);
997 mv643xx_eth_free_rx_rings(dev);
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 free_irq(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
1001 return 0;
1002}
1003
1004#ifdef MV643XX_NAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005/*
1006 * mv643xx_poll
1007 *
1008 * This function is used in case of NAPI
1009 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001010static int mv643xx_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001012 struct mv643xx_private *mp = container_of(napi, struct mv643xx_private, napi);
1013 struct net_device *dev = mp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 unsigned int port_num = mp->port_num;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001015 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017#ifdef MV643XX_TX_FAST_REFILL
1018 if (++mp->tx_clean_threshold > 5) {
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001019 mv643xx_eth_free_completed_tx_descs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 mp->tx_clean_threshold = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022#endif
1023
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001024 work_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 if ((mv_read(MV643XX_ETH_RX_CURRENT_QUEUE_DESC_PTR_0(port_num)))
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001026 != (u32) mp->rx_used_desc_q)
1027 work_done = mv643xx_eth_receive_queue(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001029 if (work_done < budget) {
1030 netif_rx_complete(dev, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_REG(port_num), 0);
1032 mv_write(MV643XX_ETH_INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
1033 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num),
Dale Farnsworth7303fde2006-03-03 10:03:36 -07001034 ETH_INT_UNMASK_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001037 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039#endif
1040
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001041/**
1042 * has_tiny_unaligned_frags - check if skb has any small, unaligned fragments
1043 *
1044 * Hardware can't handle unaligned fragments smaller than 9 bytes.
Paul Janzenf7ea3332006-01-16 16:52:13 -07001045 * This helper function detects that case.
1046 */
1047
1048static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
1049{
Dale Farnsworthb4de9052006-01-27 01:04:43 -07001050 unsigned int frag;
1051 skb_frag_t *fragp;
Paul Janzenf7ea3332006-01-16 16:52:13 -07001052
Dale Farnsworthb4de9052006-01-27 01:04:43 -07001053 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
1054 fragp = &skb_shinfo(skb)->frags[frag];
1055 if (fragp->size <= 8 && fragp->page_offset & 0x7)
1056 return 1;
1057 }
1058 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -07001059}
1060
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001061/**
1062 * eth_alloc_tx_desc_index - return the index of the next available tx desc
1063 */
1064static int eth_alloc_tx_desc_index(struct mv643xx_private *mp)
1065{
1066 int tx_desc_curr;
Paul Janzenf7ea3332006-01-16 16:52:13 -07001067
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001068 BUG_ON(mp->tx_desc_count >= mp->tx_ring_size);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001069
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001070 tx_desc_curr = mp->tx_curr_desc_q;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001071 mp->tx_curr_desc_q = (tx_desc_curr + 1) % mp->tx_ring_size;
1072
1073 BUG_ON(mp->tx_curr_desc_q == mp->tx_used_desc_q);
1074
1075 return tx_desc_curr;
1076}
1077
1078/**
1079 * eth_tx_fill_frag_descs - fill tx hw descriptors for an skb's fragments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 *
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001081 * Ensure the data for each fragment to be transmitted is mapped properly,
1082 * then fill in descriptors in the tx hw queue.
1083 */
1084static void eth_tx_fill_frag_descs(struct mv643xx_private *mp,
1085 struct sk_buff *skb)
1086{
1087 int frag;
1088 int tx_index;
1089 struct eth_tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001090
1091 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
1092 skb_frag_t *this_frag = &skb_shinfo(skb)->frags[frag];
1093
1094 tx_index = eth_alloc_tx_desc_index(mp);
1095 desc = &mp->p_tx_desc_area[tx_index];
1096
1097 desc->cmd_sts = ETH_BUFFER_OWNED_BY_DMA;
1098 /* Last Frag enables interrupt and frees the skb */
1099 if (frag == (skb_shinfo(skb)->nr_frags - 1)) {
1100 desc->cmd_sts |= ETH_ZERO_PADDING |
1101 ETH_TX_LAST_DESC |
1102 ETH_TX_ENABLE_INTERRUPT;
1103 mp->tx_skb[tx_index] = skb;
1104 } else
Al Viro05980772006-05-30 23:59:09 -04001105 mp->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001106
1107 desc = &mp->p_tx_desc_area[tx_index];
1108 desc->l4i_chk = 0;
1109 desc->byte_cnt = this_frag->size;
1110 desc->buf_ptr = dma_map_page(NULL, this_frag->page,
1111 this_frag->page_offset,
1112 this_frag->size,
1113 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001114 }
1115}
1116
1117/**
1118 * eth_tx_submit_descs_for_skb - submit data from an skb to the tx hw
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 *
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001120 * Ensure the data for an skb to be transmitted is mapped properly,
1121 * then fill in descriptors in the tx hw queue and start the hardware.
1122 */
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001123static void eth_tx_submit_descs_for_skb(struct mv643xx_private *mp,
1124 struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001125{
1126 int tx_index;
1127 struct eth_tx_desc *desc;
1128 u32 cmd_sts;
1129 int length;
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001130 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001131
1132 cmd_sts = ETH_TX_FIRST_DESC | ETH_GEN_CRC | ETH_BUFFER_OWNED_BY_DMA;
1133
1134 tx_index = eth_alloc_tx_desc_index(mp);
1135 desc = &mp->p_tx_desc_area[tx_index];
1136
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001137 if (nr_frags) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001138 eth_tx_fill_frag_descs(mp, skb);
1139
1140 length = skb_headlen(skb);
Al Viro05980772006-05-30 23:59:09 -04001141 mp->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001142 } else {
1143 cmd_sts |= ETH_ZERO_PADDING |
1144 ETH_TX_LAST_DESC |
1145 ETH_TX_ENABLE_INTERRUPT;
1146 length = skb->len;
1147 mp->tx_skb[tx_index] = skb;
1148 }
1149
1150 desc->byte_cnt = length;
1151 desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001152
Patrick McHardy84fa7932006-08-29 16:44:56 -07001153 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001154 BUG_ON(skb->protocol != ETH_P_IP);
1155
1156 cmd_sts |= ETH_GEN_TCP_UDP_CHECKSUM |
1157 ETH_GEN_IP_V_4_CHECKSUM |
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001158 ip_hdr(skb)->ihl << ETH_TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001159
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001160 switch (ip_hdr(skb)->protocol) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001161 case IPPROTO_UDP:
1162 cmd_sts |= ETH_UDP_FRAME;
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -03001163 desc->l4i_chk = udp_hdr(skb)->check;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001164 break;
1165 case IPPROTO_TCP:
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001166 desc->l4i_chk = tcp_hdr(skb)->check;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001167 break;
1168 default:
1169 BUG();
1170 }
1171 } else {
1172 /* Errata BTS #50, IHL must be 5 if no HW checksum */
1173 cmd_sts |= 5 << ETH_TX_IHL_SHIFT;
1174 desc->l4i_chk = 0;
1175 }
1176
1177 /* ensure all other descriptors are written before first cmd_sts */
1178 wmb();
1179 desc->cmd_sts = cmd_sts;
1180
1181 /* ensure all descriptors are written before poking hardware */
1182 wmb();
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001183 mv643xx_eth_port_enable_tx(mp->port_num, ETH_TX_QUEUES_ENABLED);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001184
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001185 mp->tx_desc_count += nr_frags + 1;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001186}
1187
1188/**
1189 * mv643xx_eth_start_xmit - queue an skb to the hardware for transmission
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 */
1192static int mv643xx_eth_start_xmit(struct sk_buff *skb, struct net_device *dev)
1193{
1194 struct mv643xx_private *mp = netdev_priv(dev);
1195 struct net_device_stats *stats = &mp->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001198 BUG_ON(netif_queue_stopped(dev));
1199 BUG_ON(skb == NULL);
Dale Farnsworth94843562006-04-11 18:24:26 -07001200
1201 if (mp->tx_ring_size - mp->tx_desc_count < MAX_DESCS_PER_SKB) {
1202 printk(KERN_ERR "%s: transmit with queue full\n", dev->name);
1203 netif_stop_queue(dev);
1204 return 1;
1205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Paul Janzenf7ea3332006-01-16 16:52:13 -07001207 if (has_tiny_unaligned_frags(skb)) {
Herbert Xu364c6ba2006-06-09 16:10:40 -07001208 if (__skb_linearize(skb)) {
Paul Janzenf7ea3332006-01-16 16:52:13 -07001209 stats->tx_dropped++;
1210 printk(KERN_DEBUG "%s: failed to linearize tiny "
1211 "unaligned fragment\n", dev->name);
1212 return 1;
1213 }
1214 }
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 spin_lock_irqsave(&mp->lock, flags);
1217
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001218 eth_tx_submit_descs_for_skb(mp, skb);
Dale Farnsworthe7e381f2007-09-14 11:23:16 -07001219 stats->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 stats->tx_packets++;
1221 dev->trans_start = jiffies;
1222
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001223 if (mp->tx_ring_size - mp->tx_desc_count < MAX_DESCS_PER_SKB)
1224 netif_stop_queue(dev);
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 spin_unlock_irqrestore(&mp->lock, flags);
1227
1228 return 0; /* success */
1229}
1230
1231/*
1232 * mv643xx_eth_get_stats
1233 *
1234 * Returns a pointer to the interface statistics.
1235 *
1236 * Input : dev - a pointer to the required interface
1237 *
1238 * Output : a pointer to the interface's statistics
1239 */
1240
1241static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *dev)
1242{
1243 struct mv643xx_private *mp = netdev_priv(dev);
1244
1245 return &mp->stats;
1246}
1247
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001248#ifdef CONFIG_NET_POLL_CONTROLLER
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001249static void mv643xx_netpoll(struct net_device *netdev)
1250{
1251 struct mv643xx_private *mp = netdev_priv(netdev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001252 int port_num = mp->port_num;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001253
Dale Farnsworth7303fde2006-03-03 10:03:36 -07001254 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), ETH_INT_MASK_ALL);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001255 /* wait for previous write to complete */
1256 mv_read(MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
1257
Al Viro9da3b1a2006-10-08 15:00:44 +01001258 mv643xx_eth_int_handler(netdev->irq, netdev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001259
Dale Farnsworth7303fde2006-03-03 10:03:36 -07001260 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), ETH_INT_UNMASK_ALL);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001261}
1262#endif
1263
James Chapmand0412d92006-01-27 01:15:30 -07001264static void mv643xx_init_ethtool_cmd(struct net_device *dev, int phy_address,
1265 int speed, int duplex,
1266 struct ethtool_cmd *cmd)
1267{
1268 struct mv643xx_private *mp = netdev_priv(dev);
1269
1270 memset(cmd, 0, sizeof(*cmd));
1271
1272 cmd->port = PORT_MII;
1273 cmd->transceiver = XCVR_INTERNAL;
1274 cmd->phy_address = phy_address;
1275
1276 if (speed == 0) {
1277 cmd->autoneg = AUTONEG_ENABLE;
1278 /* mii lib checks, but doesn't use speed on AUTONEG_ENABLE */
1279 cmd->speed = SPEED_100;
1280 cmd->advertising = ADVERTISED_10baseT_Half |
1281 ADVERTISED_10baseT_Full |
1282 ADVERTISED_100baseT_Half |
1283 ADVERTISED_100baseT_Full;
1284 if (mp->mii.supports_gmii)
1285 cmd->advertising |= ADVERTISED_1000baseT_Full;
1286 } else {
1287 cmd->autoneg = AUTONEG_DISABLE;
1288 cmd->speed = speed;
1289 cmd->duplex = duplex;
1290 }
1291}
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293/*/
1294 * mv643xx_eth_probe
1295 *
1296 * First function called after registering the network device.
1297 * It's purpose is to initialize the device as an ethernet device,
1298 * fill the ethernet device structure with pointers * to functions,
1299 * and set the MAC address of the interface
1300 *
1301 * Input : struct device *
1302 * Output : -ENOMEM if failed , 0 if success
1303 */
Russell King3ae5eae2005-11-09 22:32:44 +00001304static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 struct mv643xx_eth_platform_data *pd;
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001307 int port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 struct mv643xx_private *mp;
1309 struct net_device *dev;
1310 u8 *p;
1311 struct resource *res;
1312 int err;
James Chapmand0412d92006-01-27 01:15:30 -07001313 struct ethtool_cmd cmd;
Dale Farnsworth01999872006-01-27 01:18:01 -07001314 int duplex = DUPLEX_HALF;
1315 int speed = 0; /* default to auto-negotiation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001317 pd = pdev->dev.platform_data;
1318 if (pd == NULL) {
1319 printk(KERN_ERR "No mv643xx_eth_platform_data\n");
1320 return -ENODEV;
1321 }
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 dev = alloc_etherdev(sizeof(struct mv643xx_private));
1324 if (!dev)
1325 return -ENOMEM;
1326
Russell King3ae5eae2005-11-09 22:32:44 +00001327 platform_set_drvdata(pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 mp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001330 mp->dev = dev;
1331#ifdef MV643XX_NAPI
1332 netif_napi_add(dev, &mp->napi, mv643xx_poll, 64);
1333#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1336 BUG_ON(!res);
1337 dev->irq = res->start;
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 dev->open = mv643xx_eth_open;
1340 dev->stop = mv643xx_eth_stop;
1341 dev->hard_start_xmit = mv643xx_eth_start_xmit;
1342 dev->get_stats = mv643xx_eth_get_stats;
1343 dev->set_mac_address = mv643xx_eth_set_mac_address;
1344 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
1345
1346 /* No need to Tx Timeout */
1347 dev->tx_timeout = mv643xx_eth_tx_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001349#ifdef CONFIG_NET_POLL_CONTROLLER
1350 dev->poll_controller = mv643xx_netpoll;
1351#endif
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 dev->base_addr = 0;
1355 dev->change_mtu = mv643xx_eth_change_mtu;
James Chapmand0412d92006-01-27 01:15:30 -07001356 dev->do_ioctl = mv643xx_eth_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 SET_ETHTOOL_OPS(dev, &mv643xx_ethtool_ops);
1358
1359#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1360#ifdef MAX_SKB_FRAGS
1361 /*
1362 * Zero copy can only work if we use Discovery II memory. Else, we will
1363 * have to map the buffers to ISA memory which is only 16 MB
1364 */
Wolfram Joost63890572006-01-16 16:57:41 -07001365 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366#endif
1367#endif
1368
1369 /* Configure the timeout task */
Al Viro91c7c562006-12-06 19:50:06 +00001370 INIT_WORK(&mp->tx_timeout_task, mv643xx_eth_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 spin_lock_init(&mp->lock);
1373
Gabriel Paubertfadac402007-03-23 12:03:52 -07001374 port_num = mp->port_num = pd->port_number;
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /* set default config values */
Gabriel Paubert144213d2007-03-23 12:07:26 -07001377 eth_port_uc_addr_get(port_num, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 mp->rx_ring_size = MV643XX_ETH_PORT_DEFAULT_RECEIVE_QUEUE_SIZE;
1379 mp->tx_ring_size = MV643XX_ETH_PORT_DEFAULT_TRANSMIT_QUEUE_SIZE;
1380
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001381 if (is_valid_ether_addr(pd->mac_addr))
1382 memcpy(dev->dev_addr, pd->mac_addr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001384 if (pd->phy_addr || pd->force_phy_addr)
1385 ethernet_phy_set(port_num, pd->phy_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001387 if (pd->rx_queue_size)
1388 mp->rx_ring_size = pd->rx_queue_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001390 if (pd->tx_queue_size)
1391 mp->tx_ring_size = pd->tx_queue_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001393 if (pd->tx_sram_size) {
1394 mp->tx_sram_size = pd->tx_sram_size;
1395 mp->tx_sram_addr = pd->tx_sram_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001398 if (pd->rx_sram_size) {
1399 mp->rx_sram_size = pd->rx_sram_size;
1400 mp->rx_sram_addr = pd->rx_sram_addr;
1401 }
1402
1403 duplex = pd->duplex;
1404 speed = pd->speed;
1405
James Chapmanc28a4f82006-01-27 01:13:15 -07001406 /* Hook up MII support for ethtool */
1407 mp->mii.dev = dev;
1408 mp->mii.mdio_read = mv643xx_mdio_read;
1409 mp->mii.mdio_write = mv643xx_mdio_write;
1410 mp->mii.phy_id = ethernet_phy_get(port_num);
1411 mp->mii.phy_id_mask = 0x3f;
1412 mp->mii.reg_num_mask = 0x1f;
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 err = ethernet_phy_detect(port_num);
1415 if (err) {
1416 pr_debug("MV643xx ethernet port %d: "
1417 "No PHY detected at addr %d\n",
1418 port_num, ethernet_phy_get(port_num));
James Chapmand0412d92006-01-27 01:15:30 -07001419 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
1421
Dale Farnsworth01999872006-01-27 01:18:01 -07001422 ethernet_phy_reset(port_num);
James Chapmanc28a4f82006-01-27 01:13:15 -07001423 mp->mii.supports_gmii = mii_check_gmii_support(&mp->mii);
James Chapmand0412d92006-01-27 01:15:30 -07001424 mv643xx_init_ethtool_cmd(dev, mp->mii.phy_id, speed, duplex, &cmd);
1425 mv643xx_eth_update_pscr(dev, &cmd);
1426 mv643xx_set_settings(dev, &cmd);
James Chapmanc28a4f82006-01-27 01:13:15 -07001427
Olaf Heringb0b8dab2006-04-27 18:23:49 -07001428 SET_NETDEV_DEV(dev, &pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 err = register_netdev(dev);
1430 if (err)
1431 goto out;
1432
1433 p = dev->dev_addr;
1434 printk(KERN_NOTICE
1435 "%s: port %d with MAC address %02x:%02x:%02x:%02x:%02x:%02x\n",
1436 dev->name, port_num, p[0], p[1], p[2], p[3], p[4], p[5]);
1437
1438 if (dev->features & NETIF_F_SG)
1439 printk(KERN_NOTICE "%s: Scatter Gather Enabled\n", dev->name);
1440
1441 if (dev->features & NETIF_F_IP_CSUM)
1442 printk(KERN_NOTICE "%s: TX TCP/IP Checksumming Supported\n",
1443 dev->name);
1444
1445#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1446 printk(KERN_NOTICE "%s: RX TCP/UDP Checksum Offload ON \n", dev->name);
1447#endif
1448
1449#ifdef MV643XX_COAL
1450 printk(KERN_NOTICE "%s: TX and RX Interrupt Coalescing ON \n",
1451 dev->name);
1452#endif
1453
1454#ifdef MV643XX_NAPI
1455 printk(KERN_NOTICE "%s: RX NAPI Enabled \n", dev->name);
1456#endif
1457
Nicolas DETb1529872005-10-28 17:46:30 -07001458 if (mp->tx_sram_size > 0)
1459 printk(KERN_NOTICE "%s: Using SRAM\n", dev->name);
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return 0;
1462
1463out:
1464 free_netdev(dev);
1465
1466 return err;
1467}
1468
Russell King3ae5eae2005-11-09 22:32:44 +00001469static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Russell King3ae5eae2005-11-09 22:32:44 +00001471 struct net_device *dev = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 unregister_netdev(dev);
1474 flush_scheduled_work();
1475
1476 free_netdev(dev);
Russell King3ae5eae2005-11-09 22:32:44 +00001477 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 return 0;
1479}
1480
Russell King3ae5eae2005-11-09 22:32:44 +00001481static int mv643xx_eth_shared_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 struct resource *res;
1484
1485 printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n");
1486
1487 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1488 if (res == NULL)
1489 return -ENODEV;
1490
1491 mv643xx_eth_shared_base = ioremap(res->start,
1492 MV643XX_ETH_SHARED_REGS_SIZE);
1493 if (mv643xx_eth_shared_base == NULL)
1494 return -ENOMEM;
1495
1496 return 0;
1497
1498}
1499
Russell King3ae5eae2005-11-09 22:32:44 +00001500static int mv643xx_eth_shared_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
1502 iounmap(mv643xx_eth_shared_base);
1503 mv643xx_eth_shared_base = NULL;
1504
1505 return 0;
1506}
1507
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07001508static void mv643xx_eth_shutdown(struct platform_device *pdev)
1509{
1510 struct net_device *dev = platform_get_drvdata(pdev);
1511 struct mv643xx_private *mp = netdev_priv(dev);
1512 unsigned int port_num = mp->port_num;
1513
1514 /* Mask all interrupts on ethernet port */
1515 mv_write(MV643XX_ETH_INTERRUPT_MASK_REG(port_num), 0);
1516 mv_read (MV643XX_ETH_INTERRUPT_MASK_REG(port_num));
1517
1518 eth_port_reset(port_num);
1519}
1520
Russell King3ae5eae2005-11-09 22:32:44 +00001521static struct platform_driver mv643xx_eth_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 .probe = mv643xx_eth_probe,
1523 .remove = mv643xx_eth_remove,
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07001524 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00001525 .driver = {
1526 .name = MV643XX_ETH_NAME,
1527 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528};
1529
Russell King3ae5eae2005-11-09 22:32:44 +00001530static struct platform_driver mv643xx_eth_shared_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 .probe = mv643xx_eth_shared_probe,
1532 .remove = mv643xx_eth_shared_remove,
Russell King3ae5eae2005-11-09 22:32:44 +00001533 .driver = {
1534 .name = MV643XX_ETH_SHARED_NAME,
1535 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536};
1537
1538/*
1539 * mv643xx_init_module
1540 *
1541 * Registers the network drivers into the Linux kernel
1542 *
1543 * Input : N/A
1544 *
1545 * Output : N/A
1546 */
1547static int __init mv643xx_init_module(void)
1548{
1549 int rc;
1550
Russell King3ae5eae2005-11-09 22:32:44 +00001551 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00001553 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00001555 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557 return rc;
1558}
1559
1560/*
1561 * mv643xx_cleanup_module
1562 *
1563 * Registers the network drivers into the Linux kernel
1564 *
1565 * Input : N/A
1566 *
1567 * Output : N/A
1568 */
1569static void __exit mv643xx_cleanup_module(void)
1570{
Russell King3ae5eae2005-11-09 22:32:44 +00001571 platform_driver_unregister(&mv643xx_eth_driver);
1572 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573}
1574
1575module_init(mv643xx_init_module);
1576module_exit(mv643xx_cleanup_module);
1577
1578MODULE_LICENSE("GPL");
1579MODULE_AUTHOR( "Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, Manish Lachwani"
1580 " and Dale Farnsworth");
1581MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
1582
1583/*
1584 * The second part is the low level driver of the gigE ethernet ports.
1585 */
1586
1587/*
1588 * Marvell's Gigabit Ethernet controller low level driver
1589 *
1590 * DESCRIPTION:
1591 * This file introduce low level API to Marvell's Gigabit Ethernet
1592 * controller. This Gigabit Ethernet Controller driver API controls
1593 * 1) Operations (i.e. port init, start, reset etc').
1594 * 2) Data flow (i.e. port send, receive etc').
1595 * Each Gigabit Ethernet port is controlled via
1596 * struct mv643xx_private.
1597 * This struct includes user configuration information as well as
1598 * driver internal data needed for its operations.
1599 *
1600 * Supported Features:
1601 * - This low level driver is OS independent. Allocating memory for
1602 * the descriptor rings and buffers are not within the scope of
1603 * this driver.
1604 * - The user is free from Rx/Tx queue managing.
1605 * - This low level driver introduce functionality API that enable
1606 * the to operate Marvell's Gigabit Ethernet Controller in a
1607 * convenient way.
1608 * - Simple Gigabit Ethernet port operation API.
1609 * - Simple Gigabit Ethernet port data flow API.
1610 * - Data flow and operation API support per queue functionality.
1611 * - Support cached descriptors for better performance.
1612 * - Enable access to all four DRAM banks and internal SRAM memory
1613 * spaces.
1614 * - PHY access and control API.
1615 * - Port control register configuration API.
1616 * - Full control over Unicast and Multicast MAC configurations.
1617 *
1618 * Operation flow:
1619 *
1620 * Initialization phase
1621 * This phase complete the initialization of the the
1622 * mv643xx_private struct.
1623 * User information regarding port configuration has to be set
1624 * prior to calling the port initialization routine.
1625 *
1626 * In this phase any port Tx/Rx activity is halted, MIB counters
1627 * are cleared, PHY address is set according to user parameter and
1628 * access to DRAM and internal SRAM memory spaces.
1629 *
1630 * Driver ring initialization
1631 * Allocating memory for the descriptor rings and buffers is not
1632 * within the scope of this driver. Thus, the user is required to
1633 * allocate memory for the descriptors ring and buffers. Those
1634 * memory parameters are used by the Rx and Tx ring initialization
1635 * routines in order to curve the descriptor linked list in a form
1636 * of a ring.
1637 * Note: Pay special attention to alignment issues when using
1638 * cached descriptors/buffers. In this phase the driver store
1639 * information in the mv643xx_private struct regarding each queue
1640 * ring.
1641 *
1642 * Driver start
1643 * This phase prepares the Ethernet port for Rx and Tx activity.
1644 * It uses the information stored in the mv643xx_private struct to
1645 * initialize the various port registers.
1646 *
1647 * Data flow:
1648 * All packet references to/from the driver are done using
1649 * struct pkt_info.
1650 * This struct is a unified struct used with Rx and Tx operations.
1651 * This way the user is not required to be familiar with neither
1652 * Tx nor Rx descriptors structures.
1653 * The driver's descriptors rings are management by indexes.
1654 * Those indexes controls the ring resources and used to indicate
1655 * a SW resource error:
1656 * 'current'
1657 * This index points to the current available resource for use. For
1658 * example in Rx process this index will point to the descriptor
1659 * that will be passed to the user upon calling the receive
1660 * routine. In Tx process, this index will point to the descriptor
1661 * that will be assigned with the user packet info and transmitted.
1662 * 'used'
1663 * This index points to the descriptor that need to restore its
1664 * resources. For example in Rx process, using the Rx buffer return
1665 * API will attach the buffer returned in packet info to the
1666 * descriptor pointed by 'used'. In Tx process, using the Tx
1667 * descriptor return will merely return the user packet info with
1668 * the command status of the transmitted buffer pointed by the
1669 * 'used' index. Nevertheless, it is essential to use this routine
1670 * to update the 'used' index.
1671 * 'first'
1672 * This index supports Tx Scatter-Gather. It points to the first
1673 * descriptor of a packet assembled of multiple buffers. For
1674 * example when in middle of Such packet we have a Tx resource
1675 * error the 'curr' index get the value of 'first' to indicate
1676 * that the ring returned to its state before trying to transmit
1677 * this packet.
1678 *
1679 * Receive operation:
1680 * The eth_port_receive API set the packet information struct,
1681 * passed by the caller, with received information from the
1682 * 'current' SDMA descriptor.
1683 * It is the user responsibility to return this resource back
1684 * to the Rx descriptor ring to enable the reuse of this source.
1685 * Return Rx resource is done using the eth_rx_return_buff API.
1686 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 * Prior to calling the initialization routine eth_port_init() the user
1688 * must set the following fields under mv643xx_private struct:
1689 * port_num User Ethernet port number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 * port_config User port configuration value.
1691 * port_config_extend User port config extend value.
1692 * port_sdma_config User port SDMA config value.
1693 * port_serial_control User port serial control value.
1694 *
1695 * This driver data flow is done using the struct pkt_info which
1696 * is a unified struct for Rx and Tx operations:
1697 *
1698 * byte_cnt Tx/Rx descriptor buffer byte count.
1699 * l4i_chk CPU provided TCP Checksum. For Tx operation
1700 * only.
1701 * cmd_sts Tx/Rx descriptor command status.
1702 * buf_ptr Tx/Rx descriptor buffer pointer.
1703 * return_info Tx/Rx user resource return information.
1704 */
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706/* PHY routines */
1707static int ethernet_phy_get(unsigned int eth_port_num);
1708static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr);
1709
1710/* Ethernet Port routines */
Dale Farnsworthcf4086c2006-01-27 01:07:48 -07001711static void eth_port_set_filter_table_entry(int table, unsigned char entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713/*
1714 * eth_port_init - Initialize the Ethernet port driver
1715 *
1716 * DESCRIPTION:
1717 * This function prepares the ethernet port to start its activity:
1718 * 1) Completes the ethernet port driver struct initialization toward port
1719 * start routine.
1720 * 2) Resets the device to a quiescent state in case of warm reboot.
1721 * 3) Enable SDMA access to all four DRAM banks as well as internal SRAM.
1722 * 4) Clean MAC tables. The reset status of those tables is unknown.
1723 * 5) Set PHY address.
1724 * Note: Call this routine prior to eth_port_start routine and after
1725 * setting user values in the user fields of Ethernet port control
1726 * struct.
1727 *
1728 * INPUT:
1729 * struct mv643xx_private *mp Ethernet port control struct
1730 *
1731 * OUTPUT:
1732 * See description.
1733 *
1734 * RETURN:
1735 * None.
1736 */
1737static void eth_port_init(struct mv643xx_private *mp)
1738{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 mp->rx_resource_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741 eth_port_reset(mp->port_num);
1742
1743 eth_port_init_mac_tables(mp->port_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
1746/*
1747 * eth_port_start - Start the Ethernet port activity.
1748 *
1749 * DESCRIPTION:
1750 * This routine prepares the Ethernet port for Rx and Tx activity:
1751 * 1. Initialize Tx and Rx Current Descriptor Pointer for each queue that
1752 * has been initialized a descriptor's ring (using
1753 * ether_init_tx_desc_ring for Tx and ether_init_rx_desc_ring for Rx)
1754 * 2. Initialize and enable the Ethernet configuration port by writing to
1755 * the port's configuration and command registers.
1756 * 3. Initialize and enable the SDMA by writing to the SDMA's
1757 * configuration and command registers. After completing these steps,
1758 * the ethernet port SDMA can starts to perform Rx and Tx activities.
1759 *
1760 * Note: Each Rx and Tx queue descriptor's list must be initialized prior
1761 * to calling this function (use ether_init_tx_desc_ring for Tx queues
1762 * and ether_init_rx_desc_ring for Rx queues).
1763 *
1764 * INPUT:
Dale Farnsworthed9b5d42006-01-27 01:06:38 -07001765 * dev - a pointer to the required interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 *
1767 * OUTPUT:
1768 * Ethernet port is ready to receive and transmit.
1769 *
1770 * RETURN:
1771 * None.
1772 */
Dale Farnsworthed9b5d42006-01-27 01:06:38 -07001773static void eth_port_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
Dale Farnsworthed9b5d42006-01-27 01:06:38 -07001775 struct mv643xx_private *mp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 unsigned int port_num = mp->port_num;
1777 int tx_curr_desc, rx_curr_desc;
James Chapmand0412d92006-01-27 01:15:30 -07001778 u32 pscr;
1779 struct ethtool_cmd ethtool_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
1781 /* Assignment of Tx CTRP of given queue */
1782 tx_curr_desc = mp->tx_curr_desc_q;
1783 mv_write(MV643XX_ETH_TX_CURRENT_QUEUE_DESC_PTR_0(port_num),
1784 (u32)((struct eth_tx_desc *)mp->tx_desc_dma + tx_curr_desc));
1785
1786 /* Assignment of Rx CRDP of given queue */
1787 rx_curr_desc = mp->rx_curr_desc_q;
1788 mv_write(MV643XX_ETH_RX_CURRENT_QUEUE_DESC_PTR_0(port_num),
1789 (u32)((struct eth_rx_desc *)mp->rx_desc_dma + rx_curr_desc));
1790
1791 /* Add the assigned Ethernet address to the port's address table */
Dale Farnsworthed9b5d42006-01-27 01:06:38 -07001792 eth_port_uc_addr_set(port_num, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 /* Assign port configuration and command. */
Dale Farnsworth01999872006-01-27 01:18:01 -07001795 mv_write(MV643XX_ETH_PORT_CONFIG_REG(port_num),
1796 MV643XX_ETH_PORT_CONFIG_DEFAULT_VALUE);
1797
1798 mv_write(MV643XX_ETH_PORT_CONFIG_EXTEND_REG(port_num),
1799 MV643XX_ETH_PORT_CONFIG_EXTEND_DEFAULT_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
James Chapmand0412d92006-01-27 01:15:30 -07001801 pscr = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num));
Dale Farnsworth01999872006-01-27 01:18:01 -07001802
1803 pscr &= ~(MV643XX_ETH_SERIAL_PORT_ENABLE | MV643XX_ETH_FORCE_LINK_PASS);
James Chapmand0412d92006-01-27 01:15:30 -07001804 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), pscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
James Chapmand0412d92006-01-27 01:15:30 -07001806 pscr |= MV643XX_ETH_DISABLE_AUTO_NEG_FOR_FLOW_CTRL |
1807 MV643XX_ETH_DISABLE_AUTO_NEG_SPEED_GMII |
1808 MV643XX_ETH_DISABLE_AUTO_NEG_FOR_DUPLX |
1809 MV643XX_ETH_DO_NOT_FORCE_LINK_FAIL |
1810 MV643XX_ETH_SERIAL_PORT_CONTROL_RESERVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
James Chapmand0412d92006-01-27 01:15:30 -07001812 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), pscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
James Chapmand0412d92006-01-27 01:15:30 -07001814 pscr |= MV643XX_ETH_SERIAL_PORT_ENABLE;
1815 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), pscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 /* Assign port SDMA configuration */
Dale Farnsworth01999872006-01-27 01:18:01 -07001818 mv_write(MV643XX_ETH_SDMA_CONFIG_REG(port_num),
1819 MV643XX_ETH_PORT_SDMA_CONFIG_DEFAULT_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 /* Enable port Rx. */
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001822 mv643xx_eth_port_enable_rx(port_num, ETH_RX_QUEUES_ENABLED);
Dale Farnsworth8f543712005-09-02 12:34:35 -07001823
1824 /* Disable port bandwidth limits by clearing MTU register */
1825 mv_write(MV643XX_ETH_MAXIMUM_TRANSMIT_UNIT(port_num), 0);
James Chapmand0412d92006-01-27 01:15:30 -07001826
1827 /* save phy settings across reset */
1828 mv643xx_get_settings(dev, &ethtool_cmd);
1829 ethernet_phy_reset(mp->port_num);
1830 mv643xx_set_settings(dev, &ethtool_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
1833/*
Gabriel Paubert144213d2007-03-23 12:07:26 -07001834 * eth_port_uc_addr_set - Write a MAC address into the port's hw registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 */
Gabriel Paubert144213d2007-03-23 12:07:26 -07001836static void eth_port_uc_addr_set(unsigned int port_num, unsigned char *p_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 unsigned int mac_h;
1839 unsigned int mac_l;
Dale Farnsworthcf4086c2006-01-27 01:07:48 -07001840 int table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 mac_l = (p_addr[4] << 8) | (p_addr[5]);
1843 mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) |
1844 (p_addr[3] << 0);
1845
Gabriel Paubert144213d2007-03-23 12:07:26 -07001846 mv_write(MV643XX_ETH_MAC_ADDR_LOW(port_num), mac_l);
1847 mv_write(MV643XX_ETH_MAC_ADDR_HIGH(port_num), mac_h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Gabriel Paubert144213d2007-03-23 12:07:26 -07001849 /* Accept frames with this address */
1850 table = MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE(port_num);
Dale Farnsworthcf4086c2006-01-27 01:07:48 -07001851 eth_port_set_filter_table_entry(table, p_addr[5] & 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852}
1853
1854/*
Gabriel Paubert144213d2007-03-23 12:07:26 -07001855 * eth_port_uc_addr_get - Read the MAC address from the port's hw registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 */
Gabriel Paubert144213d2007-03-23 12:07:26 -07001857static void eth_port_uc_addr_get(unsigned int port_num, unsigned char *p_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 unsigned int mac_h;
1860 unsigned int mac_l;
1861
Gabriel Paubert144213d2007-03-23 12:07:26 -07001862 mac_h = mv_read(MV643XX_ETH_MAC_ADDR_HIGH(port_num));
1863 mac_l = mv_read(MV643XX_ETH_MAC_ADDR_LOW(port_num));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 p_addr[0] = (mac_h >> 24) & 0xff;
1866 p_addr[1] = (mac_h >> 16) & 0xff;
1867 p_addr[2] = (mac_h >> 8) & 0xff;
1868 p_addr[3] = mac_h & 0xff;
1869 p_addr[4] = (mac_l >> 8) & 0xff;
1870 p_addr[5] = mac_l & 0xff;
1871}
1872
1873/*
Dale Farnsworth16e03012006-01-16 16:50:02 -07001874 * The entries in each table are indexed by a hash of a packet's MAC
1875 * address. One bit in each entry determines whether the packet is
1876 * accepted. There are 4 entries (each 8 bits wide) in each register
1877 * of the table. The bits in each entry are defined as follows:
1878 * 0 Accept=1, Drop=0
1879 * 3-1 Queue (ETH_Q0=0)
1880 * 7-4 Reserved = 0;
1881 */
1882static void eth_port_set_filter_table_entry(int table, unsigned char entry)
1883{
1884 unsigned int table_reg;
1885 unsigned int tbl_offset;
1886 unsigned int reg_offset;
1887
1888 tbl_offset = (entry / 4) * 4; /* Register offset of DA table entry */
1889 reg_offset = entry % 4; /* Entry offset within the register */
1890
1891 /* Set "accepts frame bit" at specified table entry */
1892 table_reg = mv_read(table + tbl_offset);
1893 table_reg |= 0x01 << (8 * reg_offset);
1894 mv_write(table + tbl_offset, table_reg);
1895}
1896
1897/*
1898 * eth_port_mc_addr - Multicast address settings.
1899 *
1900 * The MV device supports multicast using two tables:
1901 * 1) Special Multicast Table for MAC addresses of the form
1902 * 0x01-00-5E-00-00-XX (where XX is between 0x00 and 0x_FF).
1903 * The MAC DA[7:0] bits are used as a pointer to the Special Multicast
1904 * Table entries in the DA-Filter table.
1905 * 2) Other Multicast Table for multicast of another type. A CRC-8bit
1906 * is used as an index to the Other Multicast Table entries in the
1907 * DA-Filter table. This function calculates the CRC-8bit value.
1908 * In either case, eth_port_set_filter_table_entry() is then called
1909 * to set to set the actual table entry.
1910 */
1911static void eth_port_mc_addr(unsigned int eth_port_num, unsigned char *p_addr)
1912{
1913 unsigned int mac_h;
1914 unsigned int mac_l;
1915 unsigned char crc_result = 0;
1916 int table;
1917 int mac_array[48];
1918 int crc[8];
1919 int i;
1920
1921 if ((p_addr[0] == 0x01) && (p_addr[1] == 0x00) &&
1922 (p_addr[2] == 0x5E) && (p_addr[3] == 0x00) && (p_addr[4] == 0x00)) {
1923 table = MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
1924 (eth_port_num);
1925 eth_port_set_filter_table_entry(table, p_addr[5]);
1926 return;
1927 }
1928
1929 /* Calculate CRC-8 out of the given address */
1930 mac_h = (p_addr[0] << 8) | (p_addr[1]);
1931 mac_l = (p_addr[2] << 24) | (p_addr[3] << 16) |
1932 (p_addr[4] << 8) | (p_addr[5] << 0);
1933
1934 for (i = 0; i < 32; i++)
1935 mac_array[i] = (mac_l >> i) & 0x1;
1936 for (i = 32; i < 48; i++)
1937 mac_array[i] = (mac_h >> (i - 32)) & 0x1;
1938
1939 crc[0] = mac_array[45] ^ mac_array[43] ^ mac_array[40] ^ mac_array[39] ^
1940 mac_array[35] ^ mac_array[34] ^ mac_array[31] ^ mac_array[30] ^
1941 mac_array[28] ^ mac_array[23] ^ mac_array[21] ^ mac_array[19] ^
1942 mac_array[18] ^ mac_array[16] ^ mac_array[14] ^ mac_array[12] ^
1943 mac_array[8] ^ mac_array[7] ^ mac_array[6] ^ mac_array[0];
1944
1945 crc[1] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
1946 mac_array[41] ^ mac_array[39] ^ mac_array[36] ^ mac_array[34] ^
1947 mac_array[32] ^ mac_array[30] ^ mac_array[29] ^ mac_array[28] ^
1948 mac_array[24] ^ mac_array[23] ^ mac_array[22] ^ mac_array[21] ^
1949 mac_array[20] ^ mac_array[18] ^ mac_array[17] ^ mac_array[16] ^
1950 mac_array[15] ^ mac_array[14] ^ mac_array[13] ^ mac_array[12] ^
1951 mac_array[9] ^ mac_array[6] ^ mac_array[1] ^ mac_array[0];
1952
1953 crc[2] = mac_array[47] ^ mac_array[46] ^ mac_array[44] ^ mac_array[43] ^
1954 mac_array[42] ^ mac_array[39] ^ mac_array[37] ^ mac_array[34] ^
1955 mac_array[33] ^ mac_array[29] ^ mac_array[28] ^ mac_array[25] ^
1956 mac_array[24] ^ mac_array[22] ^ mac_array[17] ^ mac_array[15] ^
1957 mac_array[13] ^ mac_array[12] ^ mac_array[10] ^ mac_array[8] ^
1958 mac_array[6] ^ mac_array[2] ^ mac_array[1] ^ mac_array[0];
1959
1960 crc[3] = mac_array[47] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
1961 mac_array[40] ^ mac_array[38] ^ mac_array[35] ^ mac_array[34] ^
1962 mac_array[30] ^ mac_array[29] ^ mac_array[26] ^ mac_array[25] ^
1963 mac_array[23] ^ mac_array[18] ^ mac_array[16] ^ mac_array[14] ^
1964 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[7] ^
1965 mac_array[3] ^ mac_array[2] ^ mac_array[1];
1966
1967 crc[4] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[41] ^
1968 mac_array[39] ^ mac_array[36] ^ mac_array[35] ^ mac_array[31] ^
1969 mac_array[30] ^ mac_array[27] ^ mac_array[26] ^ mac_array[24] ^
1970 mac_array[19] ^ mac_array[17] ^ mac_array[15] ^ mac_array[14] ^
1971 mac_array[12] ^ mac_array[10] ^ mac_array[8] ^ mac_array[4] ^
1972 mac_array[3] ^ mac_array[2];
1973
1974 crc[5] = mac_array[47] ^ mac_array[46] ^ mac_array[45] ^ mac_array[42] ^
1975 mac_array[40] ^ mac_array[37] ^ mac_array[36] ^ mac_array[32] ^
1976 mac_array[31] ^ mac_array[28] ^ mac_array[27] ^ mac_array[25] ^
1977 mac_array[20] ^ mac_array[18] ^ mac_array[16] ^ mac_array[15] ^
1978 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[5] ^
1979 mac_array[4] ^ mac_array[3];
1980
1981 crc[6] = mac_array[47] ^ mac_array[46] ^ mac_array[43] ^ mac_array[41] ^
1982 mac_array[38] ^ mac_array[37] ^ mac_array[33] ^ mac_array[32] ^
1983 mac_array[29] ^ mac_array[28] ^ mac_array[26] ^ mac_array[21] ^
1984 mac_array[19] ^ mac_array[17] ^ mac_array[16] ^ mac_array[14] ^
1985 mac_array[12] ^ mac_array[10] ^ mac_array[6] ^ mac_array[5] ^
1986 mac_array[4];
1987
1988 crc[7] = mac_array[47] ^ mac_array[44] ^ mac_array[42] ^ mac_array[39] ^
1989 mac_array[38] ^ mac_array[34] ^ mac_array[33] ^ mac_array[30] ^
1990 mac_array[29] ^ mac_array[27] ^ mac_array[22] ^ mac_array[20] ^
1991 mac_array[18] ^ mac_array[17] ^ mac_array[15] ^ mac_array[13] ^
1992 mac_array[11] ^ mac_array[7] ^ mac_array[6] ^ mac_array[5];
1993
1994 for (i = 0; i < 8; i++)
1995 crc_result = crc_result | (crc[i] << i);
1996
1997 table = MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num);
1998 eth_port_set_filter_table_entry(table, crc_result);
1999}
2000
2001/*
2002 * Set the entire multicast list based on dev->mc_list.
2003 */
2004static void eth_port_set_multicast_list(struct net_device *dev)
2005{
2006
2007 struct dev_mc_list *mc_list;
2008 int i;
2009 int table_index;
2010 struct mv643xx_private *mp = netdev_priv(dev);
2011 unsigned int eth_port_num = mp->port_num;
2012
2013 /* If the device is in promiscuous mode or in all multicast mode,
2014 * we will fully populate both multicast tables with accept.
2015 * This is guaranteed to yield a match on all multicast addresses...
2016 */
2017 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI)) {
2018 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002019 /* Set all entries in DA filter special multicast
2020 * table (Ex_dFSMT)
2021 * Set for ETH_Q0 for now
2022 * Bits
2023 * 0 Accept=1, Drop=0
2024 * 3-1 Queue ETH_Q0=0
2025 * 7-4 Reserved = 0;
2026 */
2027 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101);
Dale Farnsworth16e03012006-01-16 16:50:02 -07002028
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002029 /* Set all entries in DA filter other multicast
2030 * table (Ex_dFOMT)
2031 * Set for ETH_Q0 for now
2032 * Bits
2033 * 0 Accept=1, Drop=0
2034 * 3-1 Queue ETH_Q0=0
2035 * 7-4 Reserved = 0;
2036 */
2037 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101);
2038 }
Dale Farnsworth16e03012006-01-16 16:50:02 -07002039 return;
2040 }
2041
2042 /* We will clear out multicast tables every time we get the list.
2043 * Then add the entire new list...
2044 */
2045 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2046 /* Clear DA filter special multicast table (Ex_dFSMT) */
2047 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
2048 (eth_port_num) + table_index, 0);
2049
2050 /* Clear DA filter other multicast table (Ex_dFOMT) */
2051 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE
2052 (eth_port_num) + table_index, 0);
2053 }
2054
2055 /* Get pointer to net_device multicast list and add each one... */
2056 for (i = 0, mc_list = dev->mc_list;
2057 (i < 256) && (mc_list != NULL) && (i < dev->mc_count);
2058 i++, mc_list = mc_list->next)
2059 if (mc_list->dmi_addrlen == 6)
2060 eth_port_mc_addr(eth_port_num, mc_list->dmi_addr);
2061}
2062
2063/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * eth_port_init_mac_tables - Clear all entrance in the UC, SMC and OMC tables
2065 *
2066 * DESCRIPTION:
2067 * Go through all the DA filter tables (Unicast, Special Multicast &
2068 * Other Multicast) and set each entry to 0.
2069 *
2070 * INPUT:
2071 * unsigned int eth_port_num Ethernet Port number.
2072 *
2073 * OUTPUT:
2074 * Multicast and Unicast packets are rejected.
2075 *
2076 * RETURN:
2077 * None.
2078 */
2079static void eth_port_init_mac_tables(unsigned int eth_port_num)
2080{
2081 int table_index;
2082
2083 /* Clear DA filter unicast table (Ex_dFUT) */
2084 for (table_index = 0; table_index <= 0xC; table_index += 4)
Dale Farnsworthcf4086c2006-01-27 01:07:48 -07002085 mv_write(MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE
2086 (eth_port_num) + table_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2089 /* Clear DA filter special multicast table (Ex_dFSMT) */
Dale Farnsworth16e03012006-01-16 16:50:02 -07002090 mv_write(MV643XX_ETH_DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
2091 (eth_port_num) + table_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 /* Clear DA filter other multicast table (Ex_dFOMT) */
Dale Farnsworth16e03012006-01-16 16:50:02 -07002093 mv_write(MV643XX_ETH_DA_FILTER_OTHER_MULTICAST_TABLE_BASE
2094 (eth_port_num) + table_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 }
2096}
2097
2098/*
2099 * eth_clear_mib_counters - Clear all MIB counters
2100 *
2101 * DESCRIPTION:
2102 * This function clears all MIB counters of a specific ethernet port.
2103 * A read from the MIB counter will reset the counter.
2104 *
2105 * INPUT:
2106 * unsigned int eth_port_num Ethernet Port number.
2107 *
2108 * OUTPUT:
2109 * After reading all MIB counters, the counters resets.
2110 *
2111 * RETURN:
2112 * MIB counter value.
2113 *
2114 */
2115static void eth_clear_mib_counters(unsigned int eth_port_num)
2116{
2117 int i;
2118
2119 /* Perform dummy reads from MIB counters */
2120 for (i = ETH_MIB_GOOD_OCTETS_RECEIVED_LOW; i < ETH_MIB_LATE_COLLISION;
2121 i += 4)
2122 mv_read(MV643XX_ETH_MIB_COUNTERS_BASE(eth_port_num) + i);
2123}
2124
2125static inline u32 read_mib(struct mv643xx_private *mp, int offset)
2126{
2127 return mv_read(MV643XX_ETH_MIB_COUNTERS_BASE(mp->port_num) + offset);
2128}
2129
2130static void eth_update_mib_counters(struct mv643xx_private *mp)
2131{
2132 struct mv643xx_mib_counters *p = &mp->mib_counters;
2133 int offset;
2134
2135 p->good_octets_received +=
2136 read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_LOW);
2137 p->good_octets_received +=
2138 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH) << 32;
2139
2140 for (offset = ETH_MIB_BAD_OCTETS_RECEIVED;
2141 offset <= ETH_MIB_FRAMES_1024_TO_MAX_OCTETS;
2142 offset += 4)
Maxime Bizon70fbf322006-10-03 10:27:10 -07002143 *(u32 *)((char *)p + offset) += read_mib(mp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
2145 p->good_octets_sent += read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_LOW);
2146 p->good_octets_sent +=
2147 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_HIGH) << 32;
2148
2149 for (offset = ETH_MIB_GOOD_FRAMES_SENT;
2150 offset <= ETH_MIB_LATE_COLLISION;
2151 offset += 4)
Maxime Bizon70fbf322006-10-03 10:27:10 -07002152 *(u32 *)((char *)p + offset) += read_mib(mp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/*
2156 * ethernet_phy_detect - Detect whether a phy is present
2157 *
2158 * DESCRIPTION:
2159 * This function tests whether there is a PHY present on
2160 * the specified port.
2161 *
2162 * INPUT:
2163 * unsigned int eth_port_num Ethernet Port number.
2164 *
2165 * OUTPUT:
2166 * None
2167 *
2168 * RETURN:
2169 * 0 on success
2170 * -ENODEV on failure
2171 *
2172 */
2173static int ethernet_phy_detect(unsigned int port_num)
2174{
2175 unsigned int phy_reg_data0;
2176 int auto_neg;
2177
2178 eth_port_read_smi_reg(port_num, 0, &phy_reg_data0);
2179 auto_neg = phy_reg_data0 & 0x1000;
2180 phy_reg_data0 ^= 0x1000; /* invert auto_neg */
2181 eth_port_write_smi_reg(port_num, 0, phy_reg_data0);
2182
2183 eth_port_read_smi_reg(port_num, 0, &phy_reg_data0);
2184 if ((phy_reg_data0 & 0x1000) == auto_neg)
2185 return -ENODEV; /* change didn't take */
2186
2187 phy_reg_data0 ^= 0x1000;
2188 eth_port_write_smi_reg(port_num, 0, phy_reg_data0);
2189 return 0;
2190}
2191
2192/*
2193 * ethernet_phy_get - Get the ethernet port PHY address.
2194 *
2195 * DESCRIPTION:
2196 * This routine returns the given ethernet port PHY address.
2197 *
2198 * INPUT:
2199 * unsigned int eth_port_num Ethernet Port number.
2200 *
2201 * OUTPUT:
2202 * None.
2203 *
2204 * RETURN:
2205 * PHY address.
2206 *
2207 */
2208static int ethernet_phy_get(unsigned int eth_port_num)
2209{
2210 unsigned int reg_data;
2211
2212 reg_data = mv_read(MV643XX_ETH_PHY_ADDR_REG);
2213
2214 return ((reg_data >> (5 * eth_port_num)) & 0x1f);
2215}
2216
2217/*
2218 * ethernet_phy_set - Set the ethernet port PHY address.
2219 *
2220 * DESCRIPTION:
2221 * This routine sets the given ethernet port PHY address.
2222 *
2223 * INPUT:
2224 * unsigned int eth_port_num Ethernet Port number.
2225 * int phy_addr PHY address.
2226 *
2227 * OUTPUT:
2228 * None.
2229 *
2230 * RETURN:
2231 * None.
2232 *
2233 */
2234static void ethernet_phy_set(unsigned int eth_port_num, int phy_addr)
2235{
2236 u32 reg_data;
2237 int addr_shift = 5 * eth_port_num;
2238
2239 reg_data = mv_read(MV643XX_ETH_PHY_ADDR_REG);
2240 reg_data &= ~(0x1f << addr_shift);
2241 reg_data |= (phy_addr & 0x1f) << addr_shift;
2242 mv_write(MV643XX_ETH_PHY_ADDR_REG, reg_data);
2243}
2244
2245/*
2246 * ethernet_phy_reset - Reset Ethernet port PHY.
2247 *
2248 * DESCRIPTION:
2249 * This routine utilizes the SMI interface to reset the ethernet port PHY.
2250 *
2251 * INPUT:
2252 * unsigned int eth_port_num Ethernet Port number.
2253 *
2254 * OUTPUT:
2255 * The PHY is reset.
2256 *
2257 * RETURN:
2258 * None.
2259 *
2260 */
2261static void ethernet_phy_reset(unsigned int eth_port_num)
2262{
2263 unsigned int phy_reg_data;
2264
2265 /* Reset the PHY */
2266 eth_port_read_smi_reg(eth_port_num, 0, &phy_reg_data);
2267 phy_reg_data |= 0x8000; /* Set bit 15 to reset the PHY */
2268 eth_port_write_smi_reg(eth_port_num, 0, phy_reg_data);
James Chapmand0412d92006-01-27 01:15:30 -07002269
2270 /* wait for PHY to come out of reset */
2271 do {
2272 udelay(1);
2273 eth_port_read_smi_reg(eth_port_num, 0, &phy_reg_data);
2274 } while (phy_reg_data & 0x8000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275}
2276
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002277static void mv643xx_eth_port_enable_tx(unsigned int port_num,
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002278 unsigned int queues)
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002279{
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002280 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num), queues);
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002281}
2282
2283static void mv643xx_eth_port_enable_rx(unsigned int port_num,
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002284 unsigned int queues)
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002285{
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002286 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num), queues);
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002287}
2288
2289static unsigned int mv643xx_eth_port_disable_tx(unsigned int port_num)
2290{
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002291 u32 queues;
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002292
2293 /* Stop Tx port activity. Check port Tx activity. */
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002294 queues = mv_read(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num))
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002295 & 0xFF;
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002296 if (queues) {
2297 /* Issue stop command for active queues only */
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002298 mv_write(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num),
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002299 (queues << 8));
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002300
2301 /* Wait for all Tx activity to terminate. */
2302 /* Check port cause register that all Tx queues are stopped */
2303 while (mv_read(MV643XX_ETH_TRANSMIT_QUEUE_COMMAND_REG(port_num))
2304 & 0xFF)
2305 udelay(PHY_WAIT_MICRO_SECONDS);
2306
2307 /* Wait for Tx FIFO to empty */
2308 while (mv_read(MV643XX_ETH_PORT_STATUS_REG(port_num)) &
2309 ETH_PORT_TX_FIFO_EMPTY)
2310 udelay(PHY_WAIT_MICRO_SECONDS);
2311 }
2312
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002313 return queues;
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002314}
2315
2316static unsigned int mv643xx_eth_port_disable_rx(unsigned int port_num)
2317{
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002318 u32 queues;
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002319
2320 /* Stop Rx port activity. Check port Rx activity. */
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002321 queues = mv_read(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num))
Dale Farnsworthe38fd1a2006-03-03 09:59:28 -07002322 & 0xFF;
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002323 if (queues) {
2324 /* Issue stop command for active queues only */
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002325 mv_write(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num),
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002326 (queues << 8));
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002327
2328 /* Wait for all Rx activity to terminate. */
2329 /* Check port cause register that all Rx queues are stopped */
2330 while (mv_read(MV643XX_ETH_RECEIVE_QUEUE_COMMAND_REG(port_num))
2331 & 0xFF)
2332 udelay(PHY_WAIT_MICRO_SECONDS);
2333 }
2334
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002335 return queues;
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002336}
2337
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338/*
2339 * eth_port_reset - Reset Ethernet port
2340 *
2341 * DESCRIPTION:
2342 * This routine resets the chip by aborting any SDMA engine activity and
2343 * clearing the MIB counters. The Receiver and the Transmit unit are in
2344 * idle state after this command is performed and the port is disabled.
2345 *
2346 * INPUT:
2347 * unsigned int eth_port_num Ethernet Port number.
2348 *
2349 * OUTPUT:
2350 * Channel activity is halted.
2351 *
2352 * RETURN:
2353 * None.
2354 *
2355 */
2356static void eth_port_reset(unsigned int port_num)
2357{
2358 unsigned int reg_data;
2359
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002360 mv643xx_eth_port_disable_tx(port_num);
2361 mv643xx_eth_port_disable_rx(port_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 /* Clear all MIB counters */
2364 eth_clear_mib_counters(port_num);
2365
2366 /* Reset the Enable bit in the Configuration Register */
2367 reg_data = mv_read(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num));
James Chapmand0412d92006-01-27 01:15:30 -07002368 reg_data &= ~(MV643XX_ETH_SERIAL_PORT_ENABLE |
2369 MV643XX_ETH_DO_NOT_FORCE_LINK_FAIL |
2370 MV643XX_ETH_FORCE_LINK_PASS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 mv_write(MV643XX_ETH_PORT_SERIAL_CONTROL_REG(port_num), reg_data);
2372}
2373
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 * eth_port_read_smi_reg - Read PHY registers
2377 *
2378 * DESCRIPTION:
2379 * This routine utilize the SMI interface to interact with the PHY in
2380 * order to perform PHY register read.
2381 *
2382 * INPUT:
2383 * unsigned int port_num Ethernet Port number.
2384 * unsigned int phy_reg PHY register address offset.
2385 * unsigned int *value Register value buffer.
2386 *
2387 * OUTPUT:
2388 * Write the value of a specified PHY register into given buffer.
2389 *
2390 * RETURN:
2391 * false if the PHY is busy or read data is not in valid state.
2392 * true otherwise.
2393 *
2394 */
2395static void eth_port_read_smi_reg(unsigned int port_num,
2396 unsigned int phy_reg, unsigned int *value)
2397{
2398 int phy_addr = ethernet_phy_get(port_num);
2399 unsigned long flags;
2400 int i;
2401
2402 /* the SMI register is a shared resource */
2403 spin_lock_irqsave(&mv643xx_eth_phy_lock, flags);
2404
2405 /* wait for the SMI register to become available */
2406 for (i = 0; mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_BUSY; i++) {
2407 if (i == PHY_WAIT_ITERATIONS) {
2408 printk("mv643xx PHY busy timeout, port %d\n", port_num);
2409 goto out;
2410 }
2411 udelay(PHY_WAIT_MICRO_SECONDS);
2412 }
2413
2414 mv_write(MV643XX_ETH_SMI_REG,
2415 (phy_addr << 16) | (phy_reg << 21) | ETH_SMI_OPCODE_READ);
2416
2417 /* now wait for the data to be valid */
2418 for (i = 0; !(mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_READ_VALID); i++) {
2419 if (i == PHY_WAIT_ITERATIONS) {
2420 printk("mv643xx PHY read timeout, port %d\n", port_num);
2421 goto out;
2422 }
2423 udelay(PHY_WAIT_MICRO_SECONDS);
2424 }
2425
2426 *value = mv_read(MV643XX_ETH_SMI_REG) & 0xffff;
2427out:
2428 spin_unlock_irqrestore(&mv643xx_eth_phy_lock, flags);
2429}
2430
2431/*
2432 * eth_port_write_smi_reg - Write to PHY registers
2433 *
2434 * DESCRIPTION:
2435 * This routine utilize the SMI interface to interact with the PHY in
2436 * order to perform writes to PHY registers.
2437 *
2438 * INPUT:
2439 * unsigned int eth_port_num Ethernet Port number.
2440 * unsigned int phy_reg PHY register address offset.
2441 * unsigned int value Register value.
2442 *
2443 * OUTPUT:
2444 * Write the given value to the specified PHY register.
2445 *
2446 * RETURN:
2447 * false if the PHY is busy.
2448 * true otherwise.
2449 *
2450 */
2451static void eth_port_write_smi_reg(unsigned int eth_port_num,
2452 unsigned int phy_reg, unsigned int value)
2453{
2454 int phy_addr;
2455 int i;
2456 unsigned long flags;
2457
2458 phy_addr = ethernet_phy_get(eth_port_num);
2459
2460 /* the SMI register is a shared resource */
2461 spin_lock_irqsave(&mv643xx_eth_phy_lock, flags);
2462
2463 /* wait for the SMI register to become available */
2464 for (i = 0; mv_read(MV643XX_ETH_SMI_REG) & ETH_SMI_BUSY; i++) {
2465 if (i == PHY_WAIT_ITERATIONS) {
2466 printk("mv643xx PHY busy timeout, port %d\n",
2467 eth_port_num);
2468 goto out;
2469 }
2470 udelay(PHY_WAIT_MICRO_SECONDS);
2471 }
2472
2473 mv_write(MV643XX_ETH_SMI_REG, (phy_addr << 16) | (phy_reg << 21) |
2474 ETH_SMI_OPCODE_WRITE | (value & 0xffff));
2475out:
2476 spin_unlock_irqrestore(&mv643xx_eth_phy_lock, flags);
2477}
2478
2479/*
James Chapmanc28a4f82006-01-27 01:13:15 -07002480 * Wrappers for MII support library.
2481 */
2482static int mv643xx_mdio_read(struct net_device *dev, int phy_id, int location)
2483{
2484 int val;
2485 struct mv643xx_private *mp = netdev_priv(dev);
2486
2487 eth_port_read_smi_reg(mp->port_num, location, &val);
2488 return val;
2489}
2490
2491static void mv643xx_mdio_write(struct net_device *dev, int phy_id, int location, int val)
2492{
2493 struct mv643xx_private *mp = netdev_priv(dev);
2494 eth_port_write_smi_reg(mp->port_num, location, val);
2495}
2496
2497/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 * eth_port_receive - Get received information from Rx ring.
2499 *
2500 * DESCRIPTION:
2501 * This routine returns the received data to the caller. There is no
2502 * data copying during routine operation. All information is returned
2503 * using pointer to packet information struct passed from the caller.
2504 * If the routine exhausts Rx ring resources then the resource error flag
2505 * is set.
2506 *
2507 * INPUT:
2508 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2509 * struct pkt_info *p_pkt_info User packet buffer.
2510 *
2511 * OUTPUT:
2512 * Rx ring current and used indexes are updated.
2513 *
2514 * RETURN:
2515 * ETH_ERROR in case the routine can not access Rx desc ring.
2516 * ETH_QUEUE_FULL if Rx ring resources are exhausted.
2517 * ETH_END_OF_JOB if there is no received data.
2518 * ETH_OK otherwise.
2519 */
2520static ETH_FUNC_RET_STATUS eth_port_receive(struct mv643xx_private *mp,
2521 struct pkt_info *p_pkt_info)
2522{
2523 int rx_next_curr_desc, rx_curr_desc, rx_used_desc;
2524 volatile struct eth_rx_desc *p_rx_desc;
2525 unsigned int command_status;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002526 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528 /* Do not process Rx ring in case of Rx ring resource error */
2529 if (mp->rx_resource_err)
2530 return ETH_QUEUE_FULL;
2531
Dale Farnsworth8f518702006-01-16 16:56:30 -07002532 spin_lock_irqsave(&mp->lock, flags);
2533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 /* Get the Rx Desc ring 'curr and 'used' indexes */
2535 rx_curr_desc = mp->rx_curr_desc_q;
2536 rx_used_desc = mp->rx_used_desc_q;
2537
2538 p_rx_desc = &mp->p_rx_desc_area[rx_curr_desc];
2539
2540 /* The following parameters are used to save readings from memory */
2541 command_status = p_rx_desc->cmd_sts;
2542 rmb();
2543
2544 /* Nothing to receive... */
Dale Farnsworth8f518702006-01-16 16:56:30 -07002545 if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) {
2546 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 return ETH_END_OF_JOB;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550 p_pkt_info->byte_cnt = (p_rx_desc->byte_cnt) - RX_BUF_OFFSET;
2551 p_pkt_info->cmd_sts = command_status;
2552 p_pkt_info->buf_ptr = (p_rx_desc->buf_ptr) + RX_BUF_OFFSET;
2553 p_pkt_info->return_info = mp->rx_skb[rx_curr_desc];
2554 p_pkt_info->l4i_chk = p_rx_desc->buf_size;
2555
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002556 /*
2557 * Clean the return info field to indicate that the
2558 * packet has been moved to the upper layers
2559 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 mp->rx_skb[rx_curr_desc] = NULL;
2561
2562 /* Update current index in data structure */
2563 rx_next_curr_desc = (rx_curr_desc + 1) % mp->rx_ring_size;
2564 mp->rx_curr_desc_q = rx_next_curr_desc;
2565
2566 /* Rx descriptors exhausted. Set the Rx ring resource error flag */
2567 if (rx_next_curr_desc == rx_used_desc)
2568 mp->rx_resource_err = 1;
2569
Dale Farnsworth8f518702006-01-16 16:56:30 -07002570 spin_unlock_irqrestore(&mp->lock, flags);
2571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return ETH_OK;
2573}
2574
2575/*
2576 * eth_rx_return_buff - Returns a Rx buffer back to the Rx ring.
2577 *
2578 * DESCRIPTION:
2579 * This routine returns a Rx buffer back to the Rx ring. It retrieves the
2580 * next 'used' descriptor and attached the returned buffer to it.
2581 * In case the Rx ring was in "resource error" condition, where there are
2582 * no available Rx resources, the function resets the resource error flag.
2583 *
2584 * INPUT:
2585 * struct mv643xx_private *mp Ethernet Port Control srtuct.
2586 * struct pkt_info *p_pkt_info Information on returned buffer.
2587 *
2588 * OUTPUT:
2589 * New available Rx resource in Rx descriptor ring.
2590 *
2591 * RETURN:
2592 * ETH_ERROR in case the routine can not access Rx desc ring.
2593 * ETH_OK otherwise.
2594 */
2595static ETH_FUNC_RET_STATUS eth_rx_return_buff(struct mv643xx_private *mp,
2596 struct pkt_info *p_pkt_info)
2597{
2598 int used_rx_desc; /* Where to return Rx resource */
2599 volatile struct eth_rx_desc *p_used_rx_desc;
Dale Farnsworth8f518702006-01-16 16:56:30 -07002600 unsigned long flags;
2601
2602 spin_lock_irqsave(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
2604 /* Get 'used' Rx descriptor */
2605 used_rx_desc = mp->rx_used_desc_q;
2606 p_used_rx_desc = &mp->p_rx_desc_area[used_rx_desc];
2607
2608 p_used_rx_desc->buf_ptr = p_pkt_info->buf_ptr;
2609 p_used_rx_desc->buf_size = p_pkt_info->byte_cnt;
2610 mp->rx_skb[used_rx_desc] = p_pkt_info->return_info;
2611
2612 /* Flush the write pipe */
2613
2614 /* Return the descriptor to DMA ownership */
2615 wmb();
2616 p_used_rx_desc->cmd_sts =
2617 ETH_BUFFER_OWNED_BY_DMA | ETH_RX_ENABLE_INTERRUPT;
2618 wmb();
2619
2620 /* Move the used descriptor pointer to the next descriptor */
2621 mp->rx_used_desc_q = (used_rx_desc + 1) % mp->rx_ring_size;
2622
2623 /* Any Rx return cancels the Rx resource error status */
2624 mp->rx_resource_err = 0;
2625
Dale Farnsworth8f518702006-01-16 16:56:30 -07002626 spin_unlock_irqrestore(&mp->lock, flags);
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 return ETH_OK;
2629}
2630
2631/************* Begin ethtool support *************************/
2632
2633struct mv643xx_stats {
2634 char stat_string[ETH_GSTRING_LEN];
2635 int sizeof_stat;
2636 int stat_offset;
2637};
2638
2639#define MV643XX_STAT(m) sizeof(((struct mv643xx_private *)0)->m), \
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002640 offsetof(struct mv643xx_private, m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
2642static const struct mv643xx_stats mv643xx_gstrings_stats[] = {
2643 { "rx_packets", MV643XX_STAT(stats.rx_packets) },
2644 { "tx_packets", MV643XX_STAT(stats.tx_packets) },
2645 { "rx_bytes", MV643XX_STAT(stats.rx_bytes) },
2646 { "tx_bytes", MV643XX_STAT(stats.tx_bytes) },
2647 { "rx_errors", MV643XX_STAT(stats.rx_errors) },
2648 { "tx_errors", MV643XX_STAT(stats.tx_errors) },
2649 { "rx_dropped", MV643XX_STAT(stats.rx_dropped) },
2650 { "tx_dropped", MV643XX_STAT(stats.tx_dropped) },
2651 { "good_octets_received", MV643XX_STAT(mib_counters.good_octets_received) },
2652 { "bad_octets_received", MV643XX_STAT(mib_counters.bad_octets_received) },
2653 { "internal_mac_transmit_err", MV643XX_STAT(mib_counters.internal_mac_transmit_err) },
2654 { "good_frames_received", MV643XX_STAT(mib_counters.good_frames_received) },
2655 { "bad_frames_received", MV643XX_STAT(mib_counters.bad_frames_received) },
2656 { "broadcast_frames_received", MV643XX_STAT(mib_counters.broadcast_frames_received) },
2657 { "multicast_frames_received", MV643XX_STAT(mib_counters.multicast_frames_received) },
2658 { "frames_64_octets", MV643XX_STAT(mib_counters.frames_64_octets) },
2659 { "frames_65_to_127_octets", MV643XX_STAT(mib_counters.frames_65_to_127_octets) },
2660 { "frames_128_to_255_octets", MV643XX_STAT(mib_counters.frames_128_to_255_octets) },
2661 { "frames_256_to_511_octets", MV643XX_STAT(mib_counters.frames_256_to_511_octets) },
2662 { "frames_512_to_1023_octets", MV643XX_STAT(mib_counters.frames_512_to_1023_octets) },
2663 { "frames_1024_to_max_octets", MV643XX_STAT(mib_counters.frames_1024_to_max_octets) },
2664 { "good_octets_sent", MV643XX_STAT(mib_counters.good_octets_sent) },
2665 { "good_frames_sent", MV643XX_STAT(mib_counters.good_frames_sent) },
2666 { "excessive_collision", MV643XX_STAT(mib_counters.excessive_collision) },
2667 { "multicast_frames_sent", MV643XX_STAT(mib_counters.multicast_frames_sent) },
2668 { "broadcast_frames_sent", MV643XX_STAT(mib_counters.broadcast_frames_sent) },
2669 { "unrec_mac_control_received", MV643XX_STAT(mib_counters.unrec_mac_control_received) },
2670 { "fc_sent", MV643XX_STAT(mib_counters.fc_sent) },
2671 { "good_fc_received", MV643XX_STAT(mib_counters.good_fc_received) },
2672 { "bad_fc_received", MV643XX_STAT(mib_counters.bad_fc_received) },
2673 { "undersize_received", MV643XX_STAT(mib_counters.undersize_received) },
2674 { "fragments_received", MV643XX_STAT(mib_counters.fragments_received) },
2675 { "oversize_received", MV643XX_STAT(mib_counters.oversize_received) },
2676 { "jabber_received", MV643XX_STAT(mib_counters.jabber_received) },
2677 { "mac_receive_error", MV643XX_STAT(mib_counters.mac_receive_error) },
2678 { "bad_crc_event", MV643XX_STAT(mib_counters.bad_crc_event) },
2679 { "collision", MV643XX_STAT(mib_counters.collision) },
2680 { "late_collision", MV643XX_STAT(mib_counters.late_collision) },
2681};
2682
Denis Chengff8ac602007-09-02 18:30:18 +08002683#define MV643XX_STATS_LEN ARRAY_SIZE(mv643xx_gstrings_stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002685static void mv643xx_get_drvinfo(struct net_device *netdev,
2686 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
2688 strncpy(drvinfo->driver, mv643xx_driver_name, 32);
2689 strncpy(drvinfo->version, mv643xx_driver_version, 32);
2690 strncpy(drvinfo->fw_version, "N/A", 32);
2691 strncpy(drvinfo->bus_info, "mv643xx", 32);
2692 drvinfo->n_stats = MV643XX_STATS_LEN;
2693}
2694
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002695static int mv643xx_get_stats_count(struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
2697 return MV643XX_STATS_LEN;
2698}
2699
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002700static void mv643xx_get_ethtool_stats(struct net_device *netdev,
2701 struct ethtool_stats *stats, uint64_t *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
2703 struct mv643xx_private *mp = netdev->priv;
2704 int i;
2705
2706 eth_update_mib_counters(mp);
2707
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002708 for (i = 0; i < MV643XX_STATS_LEN; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04002709 char *p = (char *)mp+mv643xx_gstrings_stats[i].stat_offset;
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002710 data[i] = (mv643xx_gstrings_stats[i].sizeof_stat ==
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 sizeof(uint64_t)) ? *(uint64_t *)p : *(uint32_t *)p;
2712 }
2713}
2714
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002715static void mv643xx_get_strings(struct net_device *netdev, uint32_t stringset,
2716 uint8_t *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717{
2718 int i;
2719
2720 switch(stringset) {
2721 case ETH_SS_STATS:
2722 for (i=0; i < MV643XX_STATS_LEN; i++) {
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002723 memcpy(data + i * ETH_GSTRING_LEN,
2724 mv643xx_gstrings_stats[i].stat_string,
2725 ETH_GSTRING_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 }
2727 break;
2728 }
2729}
2730
James Chapmand0412d92006-01-27 01:15:30 -07002731static u32 mv643xx_eth_get_link(struct net_device *dev)
2732{
2733 struct mv643xx_private *mp = netdev_priv(dev);
2734
2735 return mii_link_ok(&mp->mii);
2736}
2737
2738static int mv643xx_eth_nway_restart(struct net_device *dev)
2739{
2740 struct mv643xx_private *mp = netdev_priv(dev);
2741
2742 return mii_nway_restart(&mp->mii);
2743}
2744
2745static int mv643xx_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2746{
2747 struct mv643xx_private *mp = netdev_priv(dev);
2748
2749 return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL);
2750}
2751
Jeff Garzik7282d492006-09-13 14:30:00 -04002752static const struct ethtool_ops mv643xx_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 .get_settings = mv643xx_get_settings,
James Chapmand0412d92006-01-27 01:15:30 -07002754 .set_settings = mv643xx_set_settings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 .get_drvinfo = mv643xx_get_drvinfo,
James Chapmand0412d92006-01-27 01:15:30 -07002756 .get_link = mv643xx_eth_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 .get_sg = ethtool_op_get_sg,
2758 .set_sg = ethtool_op_set_sg,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 .get_stats_count = mv643xx_get_stats_count,
2760 .get_ethtool_stats = mv643xx_get_ethtool_stats,
James Chapmand0412d92006-01-27 01:15:30 -07002761 .get_strings = mv643xx_get_strings,
James Chapmand0412d92006-01-27 01:15:30 -07002762 .nway_reset = mv643xx_eth_nway_restart,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763};
2764
2765/************* End ethtool support *************************/