blob: 2d434017a670f349f75cee0551681372048b1925 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Lennert Buytenhek9c1bbdf2007-10-19 04:11:03 +02002 * Driver for Marvell Discovery (MV643XX) and Marvell Orion ethernet ports
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Copyright (C) 2002 Matthew Dharm <mdharm@momenco.com>
4 *
5 * Based on the 64360 driver from:
Lennert Buytenhek4547fa62008-03-18 11:40:14 -07006 * Copyright (C) 2002 Rabeeh Khoury <rabeeh@galileo.co.il>
7 * Rabeeh Khoury <rabeeh@marvell.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * Copyright (C) 2003 PMC-Sierra, Inc.,
Olaf Hering3bb8a18a2006-01-05 22:45:45 -080010 * written by Manish Lachwani
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Copyright (C) 2003 Ralf Baechle <ralf@linux-mips.org>
13 *
Dale Farnsworthc8aaea22006-03-03 10:02:05 -070014 * Copyright (C) 2004-2006 MontaVista Software, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 * Dale Farnsworth <dale@farnsworth.org>
16 *
17 * Copyright (C) 2004 Steven J. Hill <sjhill1@rockwellcollins.com>
18 * <sjhill@realitydiluted.com>
19 *
Lennert Buytenhek4547fa62008-03-18 11:40:14 -070020 * Copyright (C) 2007-2008 Marvell Semiconductor
21 * Lennert Buytenhek <buytenh@marvell.com>
22 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public License
25 * as published by the Free Software Foundation; either version 2
26 * of the License, or (at your option) any later version.
27 *
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 * GNU General Public License for more details.
32 *
33 * You should have received a copy of the GNU General Public License
34 * along with this program; if not, write to the Free Software
35 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
36 */
Lennert Buytenheka779d382008-06-01 00:54:05 +020037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/init.h>
39#include <linux/dma-mapping.h>
Al Virob6298c22006-01-18 19:35:54 -050040#include <linux/in.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/tcp.h>
42#include <linux/udp.h>
43#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/delay.h>
45#include <linux/ethtool.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010046#include <linux/platform_device.h>
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020047#include <linux/module.h>
48#include <linux/kernel.h>
49#include <linux/spinlock.h>
50#include <linux/workqueue.h>
51#include <linux/mii.h>
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020052#include <linux/mv643xx_eth.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/io.h>
54#include <asm/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#include <asm/system.h>
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020056
Lennert Buytenheke5371492008-06-01 02:18:13 +020057static char mv643xx_eth_driver_name[] = "mv643xx_eth";
Lennert Buytenhekc4560312008-08-24 07:33:05 +020058static char mv643xx_eth_driver_version[] = "1.3";
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +020059
Lennert Buytenheke5371492008-06-01 02:18:13 +020060#define MV643XX_ETH_CHECKSUM_OFFLOAD_TX
61#define MV643XX_ETH_NAPI
62#define MV643XX_ETH_TX_FAST_REFILL
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020063
Lennert Buytenheke5371492008-06-01 02:18:13 +020064#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020065#define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1)
66#else
67#define MAX_DESCS_PER_SKB 1
68#endif
69
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020070/*
71 * Registers shared between all ports.
72 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020073#define PHY_ADDR 0x0000
74#define SMI_REG 0x0004
75#define WINDOW_BASE(w) (0x0200 + ((w) << 3))
76#define WINDOW_SIZE(w) (0x0204 + ((w) << 3))
77#define WINDOW_REMAP_HIGH(w) (0x0280 + ((w) << 2))
78#define WINDOW_BAR_ENABLE 0x0290
79#define WINDOW_PROTECT(w) (0x0294 + ((w) << 4))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020080
81/*
82 * Per-port registers.
83 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020084#define PORT_CONFIG(p) (0x0400 + ((p) << 10))
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +020085#define UNICAST_PROMISCUOUS_MODE 0x00000001
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020086#define PORT_CONFIG_EXT(p) (0x0404 + ((p) << 10))
87#define MAC_ADDR_LOW(p) (0x0414 + ((p) << 10))
88#define MAC_ADDR_HIGH(p) (0x0418 + ((p) << 10))
89#define SDMA_CONFIG(p) (0x041c + ((p) << 10))
90#define PORT_SERIAL_CONTROL(p) (0x043c + ((p) << 10))
91#define PORT_STATUS(p) (0x0444 + ((p) << 10))
Lennert Buytenheka2a41682008-06-01 01:30:42 +020092#define TX_FIFO_EMPTY 0x00000400
Lennert Buytenhekae9ae062008-07-15 02:15:24 +020093#define TX_IN_PROGRESS 0x00000080
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +020094#define PORT_SPEED_MASK 0x00000030
95#define PORT_SPEED_1000 0x00000010
96#define PORT_SPEED_100 0x00000020
97#define PORT_SPEED_10 0x00000000
98#define FLOW_CONTROL_ENABLED 0x00000008
99#define FULL_DUPLEX 0x00000004
Lennert Buytenhek81600eea92008-07-14 14:29:40 +0200100#define LINK_UP 0x00000002
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200101#define TXQ_COMMAND(p) (0x0448 + ((p) << 10))
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200102#define TXQ_FIX_PRIO_CONF(p) (0x044c + ((p) << 10))
103#define TX_BW_RATE(p) (0x0450 + ((p) << 10))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200104#define TX_BW_MTU(p) (0x0458 + ((p) << 10))
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200105#define TX_BW_BURST(p) (0x045c + ((p) << 10))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200106#define INT_CAUSE(p) (0x0460 + ((p) << 10))
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200107#define INT_TX_END_0 0x00080000
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +0200108#define INT_TX_END 0x07f80000
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200109#define INT_RX 0x0007fbfc
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200110#define INT_EXT 0x00000002
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200111#define INT_CAUSE_EXT(p) (0x0464 + ((p) << 10))
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200112#define INT_EXT_LINK 0x00100000
113#define INT_EXT_PHY 0x00010000
114#define INT_EXT_TX_ERROR_0 0x00000100
115#define INT_EXT_TX_0 0x00000001
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200116#define INT_EXT_TX 0x0000ffff
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200117#define INT_MASK(p) (0x0468 + ((p) << 10))
118#define INT_MASK_EXT(p) (0x046c + ((p) << 10))
119#define TX_FIFO_URGENT_THRESHOLD(p) (0x0474 + ((p) << 10))
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200120#define TXQ_FIX_PRIO_CONF_MOVED(p) (0x04dc + ((p) << 10))
121#define TX_BW_RATE_MOVED(p) (0x04e0 + ((p) << 10))
122#define TX_BW_MTU_MOVED(p) (0x04e8 + ((p) << 10))
123#define TX_BW_BURST_MOVED(p) (0x04ec + ((p) << 10))
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200124#define RXQ_CURRENT_DESC_PTR(p, q) (0x060c + ((p) << 10) + ((q) << 4))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200125#define RXQ_COMMAND(p) (0x0680 + ((p) << 10))
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200126#define TXQ_CURRENT_DESC_PTR(p, q) (0x06c0 + ((p) << 10) + ((q) << 2))
127#define TXQ_BW_TOKENS(p, q) (0x0700 + ((p) << 10) + ((q) << 4))
128#define TXQ_BW_CONF(p, q) (0x0704 + ((p) << 10) + ((q) << 4))
129#define TXQ_BW_WRR_CONF(p, q) (0x0708 + ((p) << 10) + ((q) << 4))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200130#define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
131#define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
132#define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
133#define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200134
Lennert Buytenhek2679a552008-06-01 01:18:58 +0200135
136/*
137 * SDMA configuration register.
138 */
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200139#define RX_BURST_SIZE_16_64BIT (4 << 1)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200140#define BLM_RX_NO_SWAP (1 << 4)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200141#define BLM_TX_NO_SWAP (1 << 5)
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200142#define TX_BURST_SIZE_16_64BIT (4 << 22)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200143
144#if defined(__BIG_ENDIAN)
145#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200146 RX_BURST_SIZE_16_64BIT | \
147 TX_BURST_SIZE_16_64BIT
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200148#elif defined(__LITTLE_ENDIAN)
149#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200150 RX_BURST_SIZE_16_64BIT | \
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200151 BLM_RX_NO_SWAP | \
152 BLM_TX_NO_SWAP | \
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200153 TX_BURST_SIZE_16_64BIT
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200154#else
155#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
156#endif
157
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200158
159/*
160 * Port serial control register.
161 */
162#define SET_MII_SPEED_TO_100 (1 << 24)
163#define SET_GMII_SPEED_TO_1000 (1 << 23)
164#define SET_FULL_DUPLEX_MODE (1 << 21)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200165#define MAX_RX_PACKET_9700BYTE (5 << 17)
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200166#define DISABLE_AUTO_NEG_SPEED_GMII (1 << 13)
167#define DO_NOT_FORCE_LINK_FAIL (1 << 10)
168#define SERIAL_PORT_CONTROL_RESERVED (1 << 9)
169#define DISABLE_AUTO_NEG_FOR_FLOW_CTRL (1 << 3)
170#define DISABLE_AUTO_NEG_FOR_DUPLEX (1 << 2)
171#define FORCE_LINK_PASS (1 << 1)
172#define SERIAL_PORT_ENABLE (1 << 0)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200173
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200174#define DEFAULT_RX_QUEUE_SIZE 400
175#define DEFAULT_TX_QUEUE_SIZE 800
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200176
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200177
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200178/*
179 * RX/TX descriptors.
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200180 */
181#if defined(__BIG_ENDIAN)
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200182struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200183 u16 byte_cnt; /* Descriptor buffer byte count */
184 u16 buf_size; /* Buffer size */
185 u32 cmd_sts; /* Descriptor command status */
186 u32 next_desc_ptr; /* Next descriptor pointer */
187 u32 buf_ptr; /* Descriptor buffer pointer */
188};
189
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200190struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200191 u16 byte_cnt; /* buffer byte count */
192 u16 l4i_chk; /* CPU provided TCP checksum */
193 u32 cmd_sts; /* Command/status field */
194 u32 next_desc_ptr; /* Pointer to next descriptor */
195 u32 buf_ptr; /* pointer to buffer for this descriptor*/
196};
197#elif defined(__LITTLE_ENDIAN)
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200198struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200199 u32 cmd_sts; /* Descriptor command status */
200 u16 buf_size; /* Buffer size */
201 u16 byte_cnt; /* Descriptor buffer byte count */
202 u32 buf_ptr; /* Descriptor buffer pointer */
203 u32 next_desc_ptr; /* Next descriptor pointer */
204};
205
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200206struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200207 u32 cmd_sts; /* Command/status field */
208 u16 l4i_chk; /* CPU provided TCP checksum */
209 u16 byte_cnt; /* buffer byte count */
210 u32 buf_ptr; /* pointer to buffer for this descriptor*/
211 u32 next_desc_ptr; /* Pointer to next descriptor */
212};
213#else
214#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
215#endif
216
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200217/* RX & TX descriptor command */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200218#define BUFFER_OWNED_BY_DMA 0x80000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200219
220/* RX & TX descriptor status */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200221#define ERROR_SUMMARY 0x00000001
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200222
223/* RX descriptor status */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200224#define LAYER_4_CHECKSUM_OK 0x40000000
225#define RX_ENABLE_INTERRUPT 0x20000000
226#define RX_FIRST_DESC 0x08000000
227#define RX_LAST_DESC 0x04000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200228
229/* TX descriptor command */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200230#define TX_ENABLE_INTERRUPT 0x00800000
231#define GEN_CRC 0x00400000
232#define TX_FIRST_DESC 0x00200000
233#define TX_LAST_DESC 0x00100000
234#define ZERO_PADDING 0x00080000
235#define GEN_IP_V4_CHECKSUM 0x00040000
236#define GEN_TCP_UDP_CHECKSUM 0x00020000
237#define UDP_FRAME 0x00010000
Lennert Buytenheke32b6612008-07-24 06:22:59 +0200238#define MAC_HDR_EXTRA_4_BYTES 0x00008000
239#define MAC_HDR_EXTRA_8_BYTES 0x00000200
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200240
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200241#define TX_IHL_SHIFT 11
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200242
243
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200244/* global *******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200245struct mv643xx_eth_shared_private {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200246 /*
247 * Ethernet controller base address.
248 */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200249 void __iomem *base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200250
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200251 /*
252 * Protects access to SMI_REG, which is shared between ports.
253 */
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +0200254 struct mutex phy_lock;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200255
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200256 /*
257 * Per-port MBUS window access register value.
258 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200259 u32 win_protect;
260
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200261 /*
262 * Hardware-specific parameters.
263 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200264 unsigned int t_clk;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +0200265 int extended_rx_coal_limit;
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200266 int tx_bw_control_moved;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200267};
268
269
270/* per-port *****************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200271struct mib_counters {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200272 u64 good_octets_received;
273 u32 bad_octets_received;
274 u32 internal_mac_transmit_err;
275 u32 good_frames_received;
276 u32 bad_frames_received;
277 u32 broadcast_frames_received;
278 u32 multicast_frames_received;
279 u32 frames_64_octets;
280 u32 frames_65_to_127_octets;
281 u32 frames_128_to_255_octets;
282 u32 frames_256_to_511_octets;
283 u32 frames_512_to_1023_octets;
284 u32 frames_1024_to_max_octets;
285 u64 good_octets_sent;
286 u32 good_frames_sent;
287 u32 excessive_collision;
288 u32 multicast_frames_sent;
289 u32 broadcast_frames_sent;
290 u32 unrec_mac_control_received;
291 u32 fc_sent;
292 u32 good_fc_received;
293 u32 bad_fc_received;
294 u32 undersize_received;
295 u32 fragments_received;
296 u32 oversize_received;
297 u32 jabber_received;
298 u32 mac_receive_error;
299 u32 bad_crc_event;
300 u32 collision;
301 u32 late_collision;
302};
303
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200304struct rx_queue {
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200305 int index;
306
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200307 int rx_ring_size;
308
309 int rx_desc_count;
310 int rx_curr_desc;
311 int rx_used_desc;
312
313 struct rx_desc *rx_desc_area;
314 dma_addr_t rx_desc_dma;
315 int rx_desc_area_size;
316 struct sk_buff **rx_skb;
317
318 struct timer_list rx_oom;
319};
320
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200321struct tx_queue {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200322 int index;
323
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200324 int tx_ring_size;
325
326 int tx_desc_count;
327 int tx_curr_desc;
328 int tx_used_desc;
329
330 struct tx_desc *tx_desc_area;
331 dma_addr_t tx_desc_dma;
332 int tx_desc_area_size;
333 struct sk_buff **tx_skb;
334};
335
Lennert Buytenheke5371492008-06-01 02:18:13 +0200336struct mv643xx_eth_private {
337 struct mv643xx_eth_shared_private *shared;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200338 int port_num;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200339
340 struct net_device *dev;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200341
342 struct mv643xx_eth_shared_private *shared_smi;
343 int phy_addr;
344
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200345 spinlock_t lock;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200346
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200347 struct mib_counters mib_counters;
348 struct work_struct tx_timeout_task;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200349 struct mii_if_info mii;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200350
351 /*
352 * RX state.
353 */
354 int default_rx_ring_size;
355 unsigned long rx_desc_sram_addr;
356 int rx_desc_sram_size;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200357 u8 rxq_mask;
358 int rxq_primary;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200359 struct napi_struct napi;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200360 struct rx_queue rxq[8];
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200361
362 /*
363 * TX state.
364 */
365 int default_tx_ring_size;
366 unsigned long tx_desc_sram_addr;
367 int tx_desc_sram_size;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200368 u8 txq_mask;
369 int txq_primary;
370 struct tx_queue txq[8];
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200371#ifdef MV643XX_ETH_TX_FAST_REFILL
372 int tx_clean_threshold;
373#endif
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200374};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200376
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200377/* port register accessors **************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200378static inline u32 rdl(struct mv643xx_eth_private *mp, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200380 return readl(mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
382
Lennert Buytenheke5371492008-06-01 02:18:13 +0200383static inline void wrl(struct mv643xx_eth_private *mp, int offset, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200385 writel(data, mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200388
389/* rxq/txq helper functions *************************************************/
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200390static struct mv643xx_eth_private *rxq_to_mp(struct rx_queue *rxq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200392 return container_of(rxq, struct mv643xx_eth_private, rxq[rxq->index]);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200393}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200395static struct mv643xx_eth_private *txq_to_mp(struct tx_queue *txq)
396{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200397 return container_of(txq, struct mv643xx_eth_private, txq[txq->index]);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200398}
399
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200400static void rxq_enable(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200401{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200402 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200403 wrl(mp, RXQ_COMMAND(mp->port_num), 1 << rxq->index);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200404}
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700405
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200406static void rxq_disable(struct rx_queue *rxq)
407{
408 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200409 u8 mask = 1 << rxq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200410
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200411 wrl(mp, RXQ_COMMAND(mp->port_num), mask << 8);
412 while (rdl(mp, RXQ_COMMAND(mp->port_num)) & mask)
413 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200414}
415
Lennert Buytenhek6b368f62008-07-11 19:38:34 +0200416static void txq_reset_hw_ptr(struct tx_queue *txq)
417{
418 struct mv643xx_eth_private *mp = txq_to_mp(txq);
419 int off = TXQ_CURRENT_DESC_PTR(mp->port_num, txq->index);
420 u32 addr;
421
422 addr = (u32)txq->tx_desc_dma;
423 addr += txq->tx_curr_desc * sizeof(struct tx_desc);
424 wrl(mp, off, addr);
425}
426
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200427static void txq_enable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200428{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200429 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200430 wrl(mp, TXQ_COMMAND(mp->port_num), 1 << txq->index);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200431}
432
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200433static void txq_disable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200434{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200435 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200436 u8 mask = 1 << txq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200437
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200438 wrl(mp, TXQ_COMMAND(mp->port_num), mask << 8);
439 while (rdl(mp, TXQ_COMMAND(mp->port_num)) & mask)
440 udelay(10);
441}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200442
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200443static void __txq_maybe_wake(struct tx_queue *txq)
444{
445 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200446
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200447 /*
448 * netif_{stop,wake}_queue() flow control only applies to
449 * the primary queue.
450 */
451 BUG_ON(txq->index != mp->txq_primary);
452
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200453 if (txq->tx_ring_size - txq->tx_desc_count >= MAX_DESCS_PER_SKB)
454 netif_wake_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200455}
456
457
458/* rx ***********************************************************************/
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200459static void txq_reclaim(struct tx_queue *txq, int force);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200460
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200461static void rxq_refill(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200462{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200463 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200464 unsigned long flags;
465
466 spin_lock_irqsave(&mp->lock, flags);
467
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200468 while (rxq->rx_desc_count < rxq->rx_ring_size) {
469 int skb_size;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200470 struct sk_buff *skb;
471 int unaligned;
472 int rx;
473
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200474 /*
475 * Reserve 2+14 bytes for an ethernet header (the
476 * hardware automatically prepends 2 bytes of dummy
Lennert Buytenhekabe78712008-08-24 03:00:20 +0200477 * data to each received packet), 16 bytes for up to
478 * four VLAN tags, and 4 bytes for the trailing FCS
479 * -- 36 bytes total.
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200480 */
Lennert Buytenhekabe78712008-08-24 03:00:20 +0200481 skb_size = mp->dev->mtu + 36;
482
483 /*
484 * Make sure that the skb size is a multiple of 8
485 * bytes, as the lower three bits of the receive
486 * descriptor's buffer size field are ignored by
487 * the hardware.
488 */
489 skb_size = (skb_size + 7) & ~7;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200490
491 skb = dev_alloc_skb(skb_size + dma_get_cache_alignment() - 1);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200492 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200494
Ralf Baechle908b6372007-02-26 19:52:06 +0000495 unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700496 if (unaligned)
Ralf Baechle908b6372007-02-26 19:52:06 +0000497 skb_reserve(skb, dma_get_cache_alignment() - unaligned);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200498
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200499 rxq->rx_desc_count++;
Lennert Buytenhek9da78742008-08-23 23:45:28 +0200500
501 rx = rxq->rx_used_desc++;
502 if (rxq->rx_used_desc == rxq->rx_ring_size)
503 rxq->rx_used_desc = 0;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200504
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200505 rxq->rx_desc_area[rx].buf_ptr = dma_map_single(NULL, skb->data,
506 skb_size, DMA_FROM_DEVICE);
507 rxq->rx_desc_area[rx].buf_size = skb_size;
508 rxq->rx_skb[rx] = skb;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200509 wmb();
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200510 rxq->rx_desc_area[rx].cmd_sts = BUFFER_OWNED_BY_DMA |
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200511 RX_ENABLE_INTERRUPT;
512 wmb();
513
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200514 /*
515 * The hardware automatically prepends 2 bytes of
516 * dummy data to each received packet, so that the
517 * IP header ends up 16-byte aligned.
518 */
519 skb_reserve(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200521
Lennert Buytenhek92c70f22008-08-24 01:59:05 +0200522 if (rxq->rx_desc_count != rxq->rx_ring_size)
523 mod_timer(&rxq->rx_oom, jiffies + (HZ / 10));
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200524
525 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200528static inline void rxq_refill_timer_wrapper(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200530 rxq_refill((struct rx_queue *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200533static int rxq_process(struct rx_queue *rxq, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200535 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
536 struct net_device_stats *stats = &mp->dev->stats;
537 int rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200539 rx = 0;
Lennert Buytenhek9e1f3772008-08-24 02:33:47 +0200540 while (rx < budget && rxq->rx_desc_count) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200541 struct rx_desc *rx_desc;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200542 unsigned int cmd_sts;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200543 struct sk_buff *skb;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200544 unsigned long flags;
545
546 spin_lock_irqsave(&mp->lock, flags);
547
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200548 rx_desc = &rxq->rx_desc_area[rxq->rx_curr_desc];
Lennert Buytenhek96587662008-06-01 10:31:56 +0200549
550 cmd_sts = rx_desc->cmd_sts;
551 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
552 spin_unlock_irqrestore(&mp->lock, flags);
553 break;
554 }
555 rmb();
556
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200557 skb = rxq->rx_skb[rxq->rx_curr_desc];
558 rxq->rx_skb[rxq->rx_curr_desc] = NULL;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200559
Lennert Buytenhek9da78742008-08-23 23:45:28 +0200560 rxq->rx_curr_desc++;
561 if (rxq->rx_curr_desc == rxq->rx_ring_size)
562 rxq->rx_curr_desc = 0;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200563
564 spin_unlock_irqrestore(&mp->lock, flags);
565
Lennert Buytenhek3a499482008-08-24 07:19:48 +0200566 dma_unmap_single(NULL, rx_desc->buf_ptr,
Lennert Buytenhekabe78712008-08-24 03:00:20 +0200567 rx_desc->buf_size, DMA_FROM_DEVICE);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200568 rxq->rx_desc_count--;
569 rx++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700570
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700571 /*
572 * Update statistics.
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200573 *
574 * Note that the descriptor byte count includes 2 dummy
575 * bytes automatically inserted by the hardware at the
576 * start of the packet (which we don't count), and a 4
577 * byte CRC at the end of the packet (which we do count).
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700578 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 stats->rx_packets++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200580 stats->rx_bytes += rx_desc->byte_cnt - 2;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200583 * In case we received a packet without first / last bits
584 * on, or the error summary bit is set, the packet needs
585 * to be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
Lennert Buytenhek96587662008-06-01 10:31:56 +0200587 if (((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200588 (RX_FIRST_DESC | RX_LAST_DESC))
Lennert Buytenhek96587662008-06-01 10:31:56 +0200589 || (cmd_sts & ERROR_SUMMARY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 stats->rx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200591
Lennert Buytenhek96587662008-06-01 10:31:56 +0200592 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200593 (RX_FIRST_DESC | RX_LAST_DESC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (net_ratelimit())
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200595 dev_printk(KERN_ERR, &mp->dev->dev,
596 "received packet spanning "
597 "multiple descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200599
Lennert Buytenhek96587662008-06-01 10:31:56 +0200600 if (cmd_sts & ERROR_SUMMARY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 stats->rx_errors++;
602
603 dev_kfree_skb_irq(skb);
604 } else {
605 /*
606 * The -4 is for the CRC in the trailer of the
607 * received packet
608 */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200609 skb_put(skb, rx_desc->byte_cnt - 2 - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Lennert Buytenhek96587662008-06-01 10:31:56 +0200611 if (cmd_sts & LAYER_4_CHECKSUM_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 skb->ip_summed = CHECKSUM_UNNECESSARY;
613 skb->csum = htons(
Lennert Buytenhek96587662008-06-01 10:31:56 +0200614 (cmd_sts & 0x0007fff8) >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200616 skb->protocol = eth_type_trans(skb, mp->dev);
Lennert Buytenheke5371492008-06-01 02:18:13 +0200617#ifdef MV643XX_ETH_NAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 netif_receive_skb(skb);
619#else
620 netif_rx(skb);
621#endif
622 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200623
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200624 mp->dev->last_rx = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200626
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200627 rxq_refill(rxq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200629 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Lennert Buytenheke5371492008-06-01 02:18:13 +0200632#ifdef MV643XX_ETH_NAPI
Lennert Buytenheke5371492008-06-01 02:18:13 +0200633static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200635 struct mv643xx_eth_private *mp;
636 int rx;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200637 int i;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200638
639 mp = container_of(napi, struct mv643xx_eth_private, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Lennert Buytenheke5371492008-06-01 02:18:13 +0200641#ifdef MV643XX_ETH_TX_FAST_REFILL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (++mp->tx_clean_threshold > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 mp->tx_clean_threshold = 0;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200644 for (i = 0; i < 8; i++)
645 if (mp->txq_mask & (1 << i))
646 txq_reclaim(mp->txq + i, 0);
Lennert Buytenhek4dfc1c82008-07-15 13:34:51 +0200647
648 if (netif_carrier_ok(mp->dev)) {
Lennert Buytenhek8e0b1bf2008-08-24 02:30:42 +0200649 spin_lock_irq(&mp->lock);
Lennert Buytenhek4dfc1c82008-07-15 13:34:51 +0200650 __txq_maybe_wake(mp->txq + mp->txq_primary);
Lennert Buytenhek8e0b1bf2008-08-24 02:30:42 +0200651 spin_unlock_irq(&mp->lock);
Lennert Buytenhek4dfc1c82008-07-15 13:34:51 +0200652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654#endif
655
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200656 rx = 0;
657 for (i = 7; rx < budget && i >= 0; i--)
658 if (mp->rxq_mask & (1 << i))
659 rx += rxq_process(mp->rxq + i, budget - rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200661 if (rx < budget) {
662 netif_rx_complete(mp->dev, napi);
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +0200663 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200666 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668#endif
669
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200670
671/* tx ***********************************************************************/
Paul Janzenf7ea3332006-01-16 16:52:13 -0700672static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
673{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200674 int frag;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700675
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700676 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200677 skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
678 if (fragp->size <= 8 && fragp->page_offset & 7)
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700679 return 1;
680 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200681
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700682 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700683}
684
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200685static int txq_alloc_desc_index(struct tx_queue *txq)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700686{
687 int tx_desc_curr;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700688
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200689 BUG_ON(txq->tx_desc_count >= txq->tx_ring_size);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700690
Lennert Buytenhek9da78742008-08-23 23:45:28 +0200691 tx_desc_curr = txq->tx_curr_desc++;
692 if (txq->tx_curr_desc == txq->tx_ring_size)
693 txq->tx_curr_desc = 0;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700694
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200695 BUG_ON(txq->tx_curr_desc == txq->tx_used_desc);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700696
697 return tx_desc_curr;
698}
699
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200700static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700701{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200702 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700703 int frag;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700704
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200705 for (frag = 0; frag < nr_frags; frag++) {
706 skb_frag_t *this_frag;
707 int tx_index;
708 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700709
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200710 this_frag = &skb_shinfo(skb)->frags[frag];
711 tx_index = txq_alloc_desc_index(txq);
712 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700713
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200714 /*
715 * The last fragment will generate an interrupt
716 * which will free the skb on TX completion.
717 */
718 if (frag == nr_frags - 1) {
719 desc->cmd_sts = BUFFER_OWNED_BY_DMA |
720 ZERO_PADDING | TX_LAST_DESC |
721 TX_ENABLE_INTERRUPT;
722 txq->tx_skb[tx_index] = skb;
723 } else {
724 desc->cmd_sts = BUFFER_OWNED_BY_DMA;
725 txq->tx_skb[tx_index] = NULL;
726 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700727
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700728 desc->l4i_chk = 0;
729 desc->byte_cnt = this_frag->size;
730 desc->buf_ptr = dma_map_page(NULL, this_frag->page,
731 this_frag->page_offset,
732 this_frag->size,
733 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700734 }
735}
736
Byron Bradley324ff2c2008-02-04 23:47:15 -0800737static inline __be16 sum16_as_be(__sum16 sum)
738{
739 return (__force __be16)sum;
740}
741
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200742static void txq_submit_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700743{
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200744 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200745 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700746 int tx_index;
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200747 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700748 u32 cmd_sts;
749 int length;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700750
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200751 cmd_sts = TX_FIRST_DESC | GEN_CRC | BUFFER_OWNED_BY_DMA;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700752
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200753 tx_index = txq_alloc_desc_index(txq);
754 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700755
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700756 if (nr_frags) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200757 txq_submit_frag_skb(txq, skb);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700758
759 length = skb_headlen(skb);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200760 txq->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700761 } else {
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200762 cmd_sts |= ZERO_PADDING | TX_LAST_DESC | TX_ENABLE_INTERRUPT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700763 length = skb->len;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200764 txq->tx_skb[tx_index] = skb;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700765 }
766
767 desc->byte_cnt = length;
768 desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700769
Patrick McHardy84fa7932006-08-29 16:44:56 -0700770 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Lennert Buytenheke32b6612008-07-24 06:22:59 +0200771 int mac_hdr_len;
772
773 BUG_ON(skb->protocol != htons(ETH_P_IP) &&
774 skb->protocol != htons(ETH_P_8021Q));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700775
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200776 cmd_sts |= GEN_TCP_UDP_CHECKSUM |
777 GEN_IP_V4_CHECKSUM |
778 ip_hdr(skb)->ihl << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700779
Lennert Buytenheke32b6612008-07-24 06:22:59 +0200780 mac_hdr_len = (void *)ip_hdr(skb) - (void *)skb->data;
781 switch (mac_hdr_len - ETH_HLEN) {
782 case 0:
783 break;
784 case 4:
785 cmd_sts |= MAC_HDR_EXTRA_4_BYTES;
786 break;
787 case 8:
788 cmd_sts |= MAC_HDR_EXTRA_8_BYTES;
789 break;
790 case 12:
791 cmd_sts |= MAC_HDR_EXTRA_4_BYTES;
792 cmd_sts |= MAC_HDR_EXTRA_8_BYTES;
793 break;
794 default:
795 if (net_ratelimit())
796 dev_printk(KERN_ERR, &txq_to_mp(txq)->dev->dev,
797 "mac header length is %d?!\n", mac_hdr_len);
798 break;
799 }
800
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700801 switch (ip_hdr(skb)->protocol) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700802 case IPPROTO_UDP:
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200803 cmd_sts |= UDP_FRAME;
Byron Bradley324ff2c2008-02-04 23:47:15 -0800804 desc->l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700805 break;
806 case IPPROTO_TCP:
Byron Bradley324ff2c2008-02-04 23:47:15 -0800807 desc->l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700808 break;
809 default:
810 BUG();
811 }
812 } else {
813 /* Errata BTS #50, IHL must be 5 if no HW checksum */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200814 cmd_sts |= 5 << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700815 desc->l4i_chk = 0;
816 }
817
818 /* ensure all other descriptors are written before first cmd_sts */
819 wmb();
820 desc->cmd_sts = cmd_sts;
821
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200822 /* clear TX_END interrupt status */
823 wrl(mp, INT_CAUSE(mp->port_num), ~(INT_TX_END_0 << txq->index));
824 rdl(mp, INT_CAUSE(mp->port_num));
825
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700826 /* ensure all descriptors are written before poking hardware */
827 wmb();
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200828 txq_enable(txq);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700829
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200830 txq->tx_desc_count += nr_frags + 1;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700831}
832
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200833static int mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200835 struct mv643xx_eth_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700836 struct net_device_stats *stats = &dev->stats;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200837 struct tx_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700840 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
841 stats->tx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200842 dev_printk(KERN_DEBUG, &dev->dev,
843 "failed to linearize skb with tiny "
844 "unaligned fragment\n");
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700845 return NETDEV_TX_BUSY;
Dale Farnsworth94843562006-04-11 18:24:26 -0700846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 spin_lock_irqsave(&mp->lock, flags);
849
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200850 txq = mp->txq + mp->txq_primary;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200851
852 if (txq->tx_ring_size - txq->tx_desc_count < MAX_DESCS_PER_SKB) {
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700853 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200854 if (txq->index == mp->txq_primary && net_ratelimit())
855 dev_printk(KERN_ERR, &dev->dev,
856 "primary tx queue full?!\n");
857 kfree_skb(skb);
858 return NETDEV_TX_OK;
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700859 }
860
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200861 txq_submit_skb(txq, skb);
Dale Farnsworthe7e381f2007-09-14 11:23:16 -0700862 stats->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 stats->tx_packets++;
864 dev->trans_start = jiffies;
865
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200866 if (txq->index == mp->txq_primary) {
867 int entries_left;
868
869 entries_left = txq->tx_ring_size - txq->tx_desc_count;
870 if (entries_left < MAX_DESCS_PER_SKB)
871 netif_stop_queue(dev);
872 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 spin_unlock_irqrestore(&mp->lock, flags);
875
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700876 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200879
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200880/* tx rate control **********************************************************/
881/*
882 * Set total maximum TX rate (shared by all TX queues for this port)
883 * to 'rate' bits per second, with a maximum burst of 'burst' bytes.
884 */
885static void tx_set_rate(struct mv643xx_eth_private *mp, int rate, int burst)
886{
887 int token_rate;
888 int mtu;
889 int bucket_size;
890
891 token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
892 if (token_rate > 1023)
893 token_rate = 1023;
894
895 mtu = (mp->dev->mtu + 255) >> 8;
896 if (mtu > 63)
897 mtu = 63;
898
899 bucket_size = (burst + 255) >> 8;
900 if (bucket_size > 65535)
901 bucket_size = 65535;
902
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200903 if (mp->shared->tx_bw_control_moved) {
904 wrl(mp, TX_BW_RATE_MOVED(mp->port_num), token_rate);
905 wrl(mp, TX_BW_MTU_MOVED(mp->port_num), mtu);
906 wrl(mp, TX_BW_BURST_MOVED(mp->port_num), bucket_size);
907 } else {
908 wrl(mp, TX_BW_RATE(mp->port_num), token_rate);
909 wrl(mp, TX_BW_MTU(mp->port_num), mtu);
910 wrl(mp, TX_BW_BURST(mp->port_num), bucket_size);
911 }
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200912}
913
914static void txq_set_rate(struct tx_queue *txq, int rate, int burst)
915{
916 struct mv643xx_eth_private *mp = txq_to_mp(txq);
917 int token_rate;
918 int bucket_size;
919
920 token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
921 if (token_rate > 1023)
922 token_rate = 1023;
923
924 bucket_size = (burst + 255) >> 8;
925 if (bucket_size > 65535)
926 bucket_size = 65535;
927
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200928 wrl(mp, TXQ_BW_TOKENS(mp->port_num, txq->index), token_rate << 14);
929 wrl(mp, TXQ_BW_CONF(mp->port_num, txq->index),
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200930 (bucket_size << 10) | token_rate);
931}
932
933static void txq_set_fixed_prio_mode(struct tx_queue *txq)
934{
935 struct mv643xx_eth_private *mp = txq_to_mp(txq);
936 int off;
937 u32 val;
938
939 /*
940 * Turn on fixed priority mode.
941 */
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200942 if (mp->shared->tx_bw_control_moved)
943 off = TXQ_FIX_PRIO_CONF_MOVED(mp->port_num);
944 else
945 off = TXQ_FIX_PRIO_CONF(mp->port_num);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200946
947 val = rdl(mp, off);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200948 val |= 1 << txq->index;
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200949 wrl(mp, off, val);
950}
951
952static void txq_set_wrr(struct tx_queue *txq, int weight)
953{
954 struct mv643xx_eth_private *mp = txq_to_mp(txq);
955 int off;
956 u32 val;
957
958 /*
959 * Turn off fixed priority mode.
960 */
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200961 if (mp->shared->tx_bw_control_moved)
962 off = TXQ_FIX_PRIO_CONF_MOVED(mp->port_num);
963 else
964 off = TXQ_FIX_PRIO_CONF(mp->port_num);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200965
966 val = rdl(mp, off);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200967 val &= ~(1 << txq->index);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200968 wrl(mp, off, val);
969
970 /*
971 * Configure WRR weight for this queue.
972 */
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200973 off = TXQ_BW_WRR_CONF(mp->port_num, txq->index);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200974
975 val = rdl(mp, off);
976 val = (val & ~0xff) | (weight & 0xff);
977 wrl(mp, off, val);
978}
979
980
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200981/* mii management interface *************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200982#define SMI_BUSY 0x10000000
983#define SMI_READ_VALID 0x08000000
984#define SMI_OPCODE_READ 0x04000000
985#define SMI_OPCODE_WRITE 0x00000000
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200986
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200987static void smi_reg_read(struct mv643xx_eth_private *mp, unsigned int addr,
988 unsigned int reg, unsigned int *value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200989{
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200990 void __iomem *smi_reg = mp->shared_smi->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200991 int i;
992
993 /* the SMI register is a shared resource */
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +0200994 mutex_lock(&mp->shared_smi->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200995
996 /* wait for the SMI register to become available */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200997 for (i = 0; readl(smi_reg) & SMI_BUSY; i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200998 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200999 printk("%s: PHY busy timeout\n", mp->dev->name);
1000 goto out;
1001 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +02001002 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001003 }
1004
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001005 writel(SMI_OPCODE_READ | (reg << 21) | (addr << 16), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001006
1007 /* now wait for the data to be valid */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02001008 for (i = 0; !(readl(smi_reg) & SMI_READ_VALID); i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +02001009 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001010 printk("%s: PHY read timeout\n", mp->dev->name);
1011 goto out;
1012 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +02001013 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001014 }
1015
1016 *value = readl(smi_reg) & 0xffff;
1017out:
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +02001018 mutex_unlock(&mp->shared_smi->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001019}
1020
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001021static void smi_reg_write(struct mv643xx_eth_private *mp,
1022 unsigned int addr,
1023 unsigned int reg, unsigned int value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001024{
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02001025 void __iomem *smi_reg = mp->shared_smi->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001026 int i;
1027
1028 /* the SMI register is a shared resource */
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +02001029 mutex_lock(&mp->shared_smi->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001030
1031 /* wait for the SMI register to become available */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02001032 for (i = 0; readl(smi_reg) & SMI_BUSY; i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +02001033 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001034 printk("%s: PHY busy timeout\n", mp->dev->name);
1035 goto out;
1036 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +02001037 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001038 }
1039
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001040 writel(SMI_OPCODE_WRITE | (reg << 21) |
1041 (addr << 16) | (value & 0xffff), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001042out:
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +02001043 mutex_unlock(&mp->shared_smi->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001044}
1045
1046
1047/* mib counters *************************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001048static inline u32 mib_read(struct mv643xx_eth_private *mp, int offset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001049{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001050 return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001051}
1052
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001053static void mib_counters_clear(struct mv643xx_eth_private *mp)
1054{
1055 int i;
1056
1057 for (i = 0; i < 0x80; i += 4)
1058 mib_read(mp, i);
1059}
1060
1061static void mib_counters_update(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001062{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001063 struct mib_counters *p = &mp->mib_counters;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001064
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001065 p->good_octets_received += mib_read(mp, 0x00);
1066 p->good_octets_received += (u64)mib_read(mp, 0x04) << 32;
1067 p->bad_octets_received += mib_read(mp, 0x08);
1068 p->internal_mac_transmit_err += mib_read(mp, 0x0c);
1069 p->good_frames_received += mib_read(mp, 0x10);
1070 p->bad_frames_received += mib_read(mp, 0x14);
1071 p->broadcast_frames_received += mib_read(mp, 0x18);
1072 p->multicast_frames_received += mib_read(mp, 0x1c);
1073 p->frames_64_octets += mib_read(mp, 0x20);
1074 p->frames_65_to_127_octets += mib_read(mp, 0x24);
1075 p->frames_128_to_255_octets += mib_read(mp, 0x28);
1076 p->frames_256_to_511_octets += mib_read(mp, 0x2c);
1077 p->frames_512_to_1023_octets += mib_read(mp, 0x30);
1078 p->frames_1024_to_max_octets += mib_read(mp, 0x34);
1079 p->good_octets_sent += mib_read(mp, 0x38);
1080 p->good_octets_sent += (u64)mib_read(mp, 0x3c) << 32;
1081 p->good_frames_sent += mib_read(mp, 0x40);
1082 p->excessive_collision += mib_read(mp, 0x44);
1083 p->multicast_frames_sent += mib_read(mp, 0x48);
1084 p->broadcast_frames_sent += mib_read(mp, 0x4c);
1085 p->unrec_mac_control_received += mib_read(mp, 0x50);
1086 p->fc_sent += mib_read(mp, 0x54);
1087 p->good_fc_received += mib_read(mp, 0x58);
1088 p->bad_fc_received += mib_read(mp, 0x5c);
1089 p->undersize_received += mib_read(mp, 0x60);
1090 p->fragments_received += mib_read(mp, 0x64);
1091 p->oversize_received += mib_read(mp, 0x68);
1092 p->jabber_received += mib_read(mp, 0x6c);
1093 p->mac_receive_error += mib_read(mp, 0x70);
1094 p->bad_crc_event += mib_read(mp, 0x74);
1095 p->collision += mib_read(mp, 0x78);
1096 p->late_collision += mib_read(mp, 0x7c);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001097}
1098
1099
1100/* ethtool ******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02001101struct mv643xx_eth_stats {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001102 char stat_string[ETH_GSTRING_LEN];
1103 int sizeof_stat;
Lennert Buytenhek16820052008-06-01 11:40:29 +02001104 int netdev_off;
1105 int mp_off;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001106};
1107
Lennert Buytenhek16820052008-06-01 11:40:29 +02001108#define SSTAT(m) \
1109 { #m, FIELD_SIZEOF(struct net_device_stats, m), \
1110 offsetof(struct net_device, stats.m), -1 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001111
Lennert Buytenhek16820052008-06-01 11:40:29 +02001112#define MIBSTAT(m) \
1113 { #m, FIELD_SIZEOF(struct mib_counters, m), \
1114 -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
1115
1116static const struct mv643xx_eth_stats mv643xx_eth_stats[] = {
1117 SSTAT(rx_packets),
1118 SSTAT(tx_packets),
1119 SSTAT(rx_bytes),
1120 SSTAT(tx_bytes),
1121 SSTAT(rx_errors),
1122 SSTAT(tx_errors),
1123 SSTAT(rx_dropped),
1124 SSTAT(tx_dropped),
1125 MIBSTAT(good_octets_received),
1126 MIBSTAT(bad_octets_received),
1127 MIBSTAT(internal_mac_transmit_err),
1128 MIBSTAT(good_frames_received),
1129 MIBSTAT(bad_frames_received),
1130 MIBSTAT(broadcast_frames_received),
1131 MIBSTAT(multicast_frames_received),
1132 MIBSTAT(frames_64_octets),
1133 MIBSTAT(frames_65_to_127_octets),
1134 MIBSTAT(frames_128_to_255_octets),
1135 MIBSTAT(frames_256_to_511_octets),
1136 MIBSTAT(frames_512_to_1023_octets),
1137 MIBSTAT(frames_1024_to_max_octets),
1138 MIBSTAT(good_octets_sent),
1139 MIBSTAT(good_frames_sent),
1140 MIBSTAT(excessive_collision),
1141 MIBSTAT(multicast_frames_sent),
1142 MIBSTAT(broadcast_frames_sent),
1143 MIBSTAT(unrec_mac_control_received),
1144 MIBSTAT(fc_sent),
1145 MIBSTAT(good_fc_received),
1146 MIBSTAT(bad_fc_received),
1147 MIBSTAT(undersize_received),
1148 MIBSTAT(fragments_received),
1149 MIBSTAT(oversize_received),
1150 MIBSTAT(jabber_received),
1151 MIBSTAT(mac_receive_error),
1152 MIBSTAT(bad_crc_event),
1153 MIBSTAT(collision),
1154 MIBSTAT(late_collision),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001155};
1156
Lennert Buytenheke5371492008-06-01 02:18:13 +02001157static int mv643xx_eth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001158{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001159 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001160 int err;
1161
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001162 err = mii_ethtool_gset(&mp->mii, cmd);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001163
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001164 /*
1165 * The MAC does not support 1000baseT_Half.
1166 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001167 cmd->supported &= ~SUPPORTED_1000baseT_Half;
1168 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1169
1170 return err;
1171}
1172
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001173static int mv643xx_eth_get_settings_phyless(struct net_device *dev, struct ethtool_cmd *cmd)
1174{
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001175 struct mv643xx_eth_private *mp = netdev_priv(dev);
1176 u32 port_status;
1177
1178 port_status = rdl(mp, PORT_STATUS(mp->port_num));
1179
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001180 cmd->supported = SUPPORTED_MII;
1181 cmd->advertising = ADVERTISED_MII;
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001182 switch (port_status & PORT_SPEED_MASK) {
1183 case PORT_SPEED_10:
1184 cmd->speed = SPEED_10;
1185 break;
1186 case PORT_SPEED_100:
1187 cmd->speed = SPEED_100;
1188 break;
1189 case PORT_SPEED_1000:
1190 cmd->speed = SPEED_1000;
1191 break;
1192 default:
1193 cmd->speed = -1;
1194 break;
1195 }
1196 cmd->duplex = (port_status & FULL_DUPLEX) ? DUPLEX_FULL : DUPLEX_HALF;
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001197 cmd->port = PORT_MII;
1198 cmd->phy_address = 0;
1199 cmd->transceiver = XCVR_INTERNAL;
1200 cmd->autoneg = AUTONEG_DISABLE;
1201 cmd->maxtxpkt = 1;
1202 cmd->maxrxpkt = 1;
1203
1204 return 0;
1205}
1206
Lennert Buytenheke5371492008-06-01 02:18:13 +02001207static int mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001208{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001209 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001210
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001211 /*
1212 * The MAC does not support 1000baseT_Half.
1213 */
1214 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1215
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +02001216 return mii_ethtool_sset(&mp->mii, cmd);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001217}
1218
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001219static int mv643xx_eth_set_settings_phyless(struct net_device *dev, struct ethtool_cmd *cmd)
1220{
1221 return -EINVAL;
1222}
1223
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001224static void mv643xx_eth_get_drvinfo(struct net_device *dev,
1225 struct ethtool_drvinfo *drvinfo)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001226{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001227 strncpy(drvinfo->driver, mv643xx_eth_driver_name, 32);
1228 strncpy(drvinfo->version, mv643xx_eth_driver_version, 32);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001229 strncpy(drvinfo->fw_version, "N/A", 32);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001230 strncpy(drvinfo->bus_info, "platform", 32);
Lennert Buytenhek16820052008-06-01 11:40:29 +02001231 drvinfo->n_stats = ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001232}
1233
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001234static int mv643xx_eth_nway_reset(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001235{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001236 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001237
1238 return mii_nway_restart(&mp->mii);
1239}
1240
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001241static int mv643xx_eth_nway_reset_phyless(struct net_device *dev)
1242{
1243 return -EINVAL;
1244}
1245
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001246static u32 mv643xx_eth_get_link(struct net_device *dev)
1247{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001248 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001249
1250 return mii_link_ok(&mp->mii);
1251}
1252
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001253static u32 mv643xx_eth_get_link_phyless(struct net_device *dev)
1254{
1255 return 1;
1256}
1257
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001258static void mv643xx_eth_get_strings(struct net_device *dev,
1259 uint32_t stringset, uint8_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001260{
1261 int i;
1262
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001263 if (stringset == ETH_SS_STATS) {
1264 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001265 memcpy(data + i * ETH_GSTRING_LEN,
Lennert Buytenhek16820052008-06-01 11:40:29 +02001266 mv643xx_eth_stats[i].stat_string,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001267 ETH_GSTRING_LEN);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001268 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001269 }
1270}
1271
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001272static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
1273 struct ethtool_stats *stats,
1274 uint64_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001275{
Lennert Buytenhekb9873842008-08-24 05:59:16 +02001276 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001277 int i;
1278
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001279 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001280
Lennert Buytenhek16820052008-06-01 11:40:29 +02001281 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
1282 const struct mv643xx_eth_stats *stat;
1283 void *p;
1284
1285 stat = mv643xx_eth_stats + i;
1286
1287 if (stat->netdev_off >= 0)
1288 p = ((void *)mp->dev) + stat->netdev_off;
1289 else
1290 p = ((void *)mp) + stat->mp_off;
1291
1292 data[i] = (stat->sizeof_stat == 8) ?
1293 *(uint64_t *)p : *(uint32_t *)p;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001294 }
1295}
1296
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001297static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001298{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001299 if (sset == ETH_SS_STATS)
Lennert Buytenhek16820052008-06-01 11:40:29 +02001300 return ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001301
1302 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001303}
1304
Lennert Buytenheke5371492008-06-01 02:18:13 +02001305static const struct ethtool_ops mv643xx_eth_ethtool_ops = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001306 .get_settings = mv643xx_eth_get_settings,
1307 .set_settings = mv643xx_eth_set_settings,
1308 .get_drvinfo = mv643xx_eth_get_drvinfo,
1309 .nway_reset = mv643xx_eth_nway_reset,
1310 .get_link = mv643xx_eth_get_link,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001311 .set_sg = ethtool_op_set_sg,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001312 .get_strings = mv643xx_eth_get_strings,
1313 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001314 .get_sset_count = mv643xx_eth_get_sset_count,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001315};
1316
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001317static const struct ethtool_ops mv643xx_eth_ethtool_ops_phyless = {
1318 .get_settings = mv643xx_eth_get_settings_phyless,
1319 .set_settings = mv643xx_eth_set_settings_phyless,
1320 .get_drvinfo = mv643xx_eth_get_drvinfo,
1321 .nway_reset = mv643xx_eth_nway_reset_phyless,
1322 .get_link = mv643xx_eth_get_link_phyless,
1323 .set_sg = ethtool_op_set_sg,
1324 .get_strings = mv643xx_eth_get_strings,
1325 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
1326 .get_sset_count = mv643xx_eth_get_sset_count,
1327};
1328
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001329
1330/* address handling *********************************************************/
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001331static void uc_addr_get(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001332{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001333 unsigned int mac_h;
1334 unsigned int mac_l;
1335
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001336 mac_h = rdl(mp, MAC_ADDR_HIGH(mp->port_num));
1337 mac_l = rdl(mp, MAC_ADDR_LOW(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001338
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001339 addr[0] = (mac_h >> 24) & 0xff;
1340 addr[1] = (mac_h >> 16) & 0xff;
1341 addr[2] = (mac_h >> 8) & 0xff;
1342 addr[3] = mac_h & 0xff;
1343 addr[4] = (mac_l >> 8) & 0xff;
1344 addr[5] = mac_l & 0xff;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001345}
1346
Lennert Buytenheke5371492008-06-01 02:18:13 +02001347static void init_mac_tables(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001348{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001349 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001350
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001351 for (i = 0; i < 0x100; i += 4) {
1352 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1353 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001354 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001355
1356 for (i = 0; i < 0x10; i += 4)
1357 wrl(mp, UNICAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001358}
1359
Lennert Buytenheke5371492008-06-01 02:18:13 +02001360static void set_filter_table_entry(struct mv643xx_eth_private *mp,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001361 int table, unsigned char entry)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001362{
1363 unsigned int table_reg;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001364
1365 /* Set "accepts frame bit" at specified table entry */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001366 table_reg = rdl(mp, table + (entry & 0xfc));
1367 table_reg |= 0x01 << (8 * (entry & 3));
1368 wrl(mp, table + (entry & 0xfc), table_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001369}
1370
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001371static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001372{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001373 unsigned int mac_h;
1374 unsigned int mac_l;
1375 int table;
1376
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001377 mac_l = (addr[4] << 8) | addr[5];
1378 mac_h = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001379
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001380 wrl(mp, MAC_ADDR_LOW(mp->port_num), mac_l);
1381 wrl(mp, MAC_ADDR_HIGH(mp->port_num), mac_h);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001382
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001383 table = UNICAST_TABLE(mp->port_num);
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001384 set_filter_table_entry(mp, table, addr[5] & 0x0f);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001385}
1386
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001387static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
1388{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001389 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001390
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001391 /* +2 is for the offset of the HW addr type */
1392 memcpy(dev->dev_addr, addr + 2, 6);
1393
1394 init_mac_tables(mp);
1395 uc_addr_set(mp, dev->dev_addr);
1396
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001397 return 0;
1398}
1399
Lennert Buytenhek69876562008-06-01 11:43:32 +02001400static int addr_crc(unsigned char *addr)
1401{
1402 int crc = 0;
1403 int i;
1404
1405 for (i = 0; i < 6; i++) {
1406 int j;
1407
1408 crc = (crc ^ addr[i]) << 8;
1409 for (j = 7; j >= 0; j--) {
1410 if (crc & (0x100 << j))
1411 crc ^= 0x107 << j;
1412 }
1413 }
1414
1415 return crc;
1416}
1417
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001418static void mv643xx_eth_set_rx_mode(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001419{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001420 struct mv643xx_eth_private *mp = netdev_priv(dev);
1421 u32 port_config;
1422 struct dev_addr_list *addr;
1423 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001424
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001425 port_config = rdl(mp, PORT_CONFIG(mp->port_num));
1426 if (dev->flags & IFF_PROMISC)
1427 port_config |= UNICAST_PROMISCUOUS_MODE;
1428 else
1429 port_config &= ~UNICAST_PROMISCUOUS_MODE;
1430 wrl(mp, PORT_CONFIG(mp->port_num), port_config);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001431
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001432 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
1433 int port_num = mp->port_num;
1434 u32 accept = 0x01010101;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001435
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001436 for (i = 0; i < 0x100; i += 4) {
1437 wrl(mp, SPECIAL_MCAST_TABLE(port_num) + i, accept);
1438 wrl(mp, OTHER_MCAST_TABLE(port_num) + i, accept);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001439 }
1440 return;
1441 }
1442
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001443 for (i = 0; i < 0x100; i += 4) {
1444 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1445 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001446 }
1447
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001448 for (addr = dev->mc_list; addr != NULL; addr = addr->next) {
1449 u8 *a = addr->da_addr;
1450 int table;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001451
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001452 if (addr->da_addrlen != 6)
1453 continue;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001454
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001455 if (memcmp(a, "\x01\x00\x5e\x00\x00", 5) == 0) {
1456 table = SPECIAL_MCAST_TABLE(mp->port_num);
1457 set_filter_table_entry(mp, table, a[5]);
1458 } else {
1459 int crc = addr_crc(a);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001460
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001461 table = OTHER_MCAST_TABLE(mp->port_num);
1462 set_filter_table_entry(mp, table, crc);
1463 }
1464 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001465}
1466
1467
1468/* rx/tx queue initialisation ***********************************************/
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001469static int rxq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001470{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001471 struct rx_queue *rxq = mp->rxq + index;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001472 struct rx_desc *rx_desc;
1473 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001474 int i;
1475
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001476 rxq->index = index;
1477
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001478 rxq->rx_ring_size = mp->default_rx_ring_size;
1479
1480 rxq->rx_desc_count = 0;
1481 rxq->rx_curr_desc = 0;
1482 rxq->rx_used_desc = 0;
1483
1484 size = rxq->rx_ring_size * sizeof(struct rx_desc);
1485
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001486 if (index == mp->rxq_primary && size <= mp->rx_desc_sram_size) {
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001487 rxq->rx_desc_area = ioremap(mp->rx_desc_sram_addr,
1488 mp->rx_desc_sram_size);
1489 rxq->rx_desc_dma = mp->rx_desc_sram_addr;
1490 } else {
1491 rxq->rx_desc_area = dma_alloc_coherent(NULL, size,
1492 &rxq->rx_desc_dma,
1493 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001494 }
1495
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001496 if (rxq->rx_desc_area == NULL) {
1497 dev_printk(KERN_ERR, &mp->dev->dev,
1498 "can't allocate rx ring (%d bytes)\n", size);
1499 goto out;
1500 }
1501 memset(rxq->rx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001502
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001503 rxq->rx_desc_area_size = size;
1504 rxq->rx_skb = kmalloc(rxq->rx_ring_size * sizeof(*rxq->rx_skb),
1505 GFP_KERNEL);
1506 if (rxq->rx_skb == NULL) {
1507 dev_printk(KERN_ERR, &mp->dev->dev,
1508 "can't allocate rx skb ring\n");
1509 goto out_free;
1510 }
1511
1512 rx_desc = (struct rx_desc *)rxq->rx_desc_area;
1513 for (i = 0; i < rxq->rx_ring_size; i++) {
Lennert Buytenhek9da78742008-08-23 23:45:28 +02001514 int nexti;
1515
1516 nexti = i + 1;
1517 if (nexti == rxq->rx_ring_size)
1518 nexti = 0;
1519
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001520 rx_desc[i].next_desc_ptr = rxq->rx_desc_dma +
1521 nexti * sizeof(struct rx_desc);
1522 }
1523
1524 init_timer(&rxq->rx_oom);
1525 rxq->rx_oom.data = (unsigned long)rxq;
1526 rxq->rx_oom.function = rxq_refill_timer_wrapper;
1527
1528 return 0;
1529
1530
1531out_free:
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001532 if (index == mp->rxq_primary && size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001533 iounmap(rxq->rx_desc_area);
1534 else
1535 dma_free_coherent(NULL, size,
1536 rxq->rx_desc_area,
1537 rxq->rx_desc_dma);
1538
1539out:
1540 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001541}
1542
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001543static void rxq_deinit(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001544{
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001545 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
1546 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001547
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001548 rxq_disable(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001549
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001550 del_timer_sync(&rxq->rx_oom);
1551
1552 for (i = 0; i < rxq->rx_ring_size; i++) {
1553 if (rxq->rx_skb[i]) {
1554 dev_kfree_skb(rxq->rx_skb[i]);
1555 rxq->rx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001556 }
1557 }
1558
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001559 if (rxq->rx_desc_count) {
1560 dev_printk(KERN_ERR, &mp->dev->dev,
1561 "error freeing rx ring -- %d skbs stuck\n",
1562 rxq->rx_desc_count);
1563 }
1564
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001565 if (rxq->index == mp->rxq_primary &&
1566 rxq->rx_desc_area_size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001567 iounmap(rxq->rx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001568 else
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001569 dma_free_coherent(NULL, rxq->rx_desc_area_size,
1570 rxq->rx_desc_area, rxq->rx_desc_dma);
1571
1572 kfree(rxq->rx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001573}
1574
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001575static int txq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001576{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001577 struct tx_queue *txq = mp->txq + index;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001578 struct tx_desc *tx_desc;
1579 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001580 int i;
1581
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001582 txq->index = index;
1583
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001584 txq->tx_ring_size = mp->default_tx_ring_size;
1585
1586 txq->tx_desc_count = 0;
1587 txq->tx_curr_desc = 0;
1588 txq->tx_used_desc = 0;
1589
1590 size = txq->tx_ring_size * sizeof(struct tx_desc);
1591
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001592 if (index == mp->txq_primary && size <= mp->tx_desc_sram_size) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001593 txq->tx_desc_area = ioremap(mp->tx_desc_sram_addr,
1594 mp->tx_desc_sram_size);
1595 txq->tx_desc_dma = mp->tx_desc_sram_addr;
1596 } else {
1597 txq->tx_desc_area = dma_alloc_coherent(NULL, size,
1598 &txq->tx_desc_dma,
1599 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001600 }
1601
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001602 if (txq->tx_desc_area == NULL) {
1603 dev_printk(KERN_ERR, &mp->dev->dev,
1604 "can't allocate tx ring (%d bytes)\n", size);
1605 goto out;
1606 }
1607 memset(txq->tx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001608
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001609 txq->tx_desc_area_size = size;
1610 txq->tx_skb = kmalloc(txq->tx_ring_size * sizeof(*txq->tx_skb),
1611 GFP_KERNEL);
1612 if (txq->tx_skb == NULL) {
1613 dev_printk(KERN_ERR, &mp->dev->dev,
1614 "can't allocate tx skb ring\n");
1615 goto out_free;
1616 }
1617
1618 tx_desc = (struct tx_desc *)txq->tx_desc_area;
1619 for (i = 0; i < txq->tx_ring_size; i++) {
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001620 struct tx_desc *txd = tx_desc + i;
Lennert Buytenhek9da78742008-08-23 23:45:28 +02001621 int nexti;
1622
1623 nexti = i + 1;
1624 if (nexti == txq->tx_ring_size)
1625 nexti = 0;
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001626
1627 txd->cmd_sts = 0;
1628 txd->next_desc_ptr = txq->tx_desc_dma +
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001629 nexti * sizeof(struct tx_desc);
1630 }
1631
1632 return 0;
1633
1634
1635out_free:
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001636 if (index == mp->txq_primary && size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001637 iounmap(txq->tx_desc_area);
1638 else
1639 dma_free_coherent(NULL, size,
1640 txq->tx_desc_area,
1641 txq->tx_desc_dma);
1642
1643out:
1644 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001645}
1646
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001647static void txq_reclaim(struct tx_queue *txq, int force)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001648{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001649 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001650 unsigned long flags;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001651
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001652 spin_lock_irqsave(&mp->lock, flags);
1653 while (txq->tx_desc_count > 0) {
1654 int tx_index;
1655 struct tx_desc *desc;
1656 u32 cmd_sts;
1657 struct sk_buff *skb;
1658 dma_addr_t addr;
1659 int count;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001660
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001661 tx_index = txq->tx_used_desc;
1662 desc = &txq->tx_desc_area[tx_index];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001663 cmd_sts = desc->cmd_sts;
1664
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001665 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
1666 if (!force)
1667 break;
1668 desc->cmd_sts = cmd_sts & ~BUFFER_OWNED_BY_DMA;
1669 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001670
Lennert Buytenhek9da78742008-08-23 23:45:28 +02001671 txq->tx_used_desc = tx_index + 1;
1672 if (txq->tx_used_desc == txq->tx_ring_size)
1673 txq->tx_used_desc = 0;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001674 txq->tx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001675
1676 addr = desc->buf_ptr;
1677 count = desc->byte_cnt;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001678 skb = txq->tx_skb[tx_index];
1679 txq->tx_skb[tx_index] = NULL;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001680
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02001681 if (cmd_sts & ERROR_SUMMARY) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001682 dev_printk(KERN_INFO, &mp->dev->dev, "tx error\n");
1683 mp->dev->stats.tx_errors++;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001684 }
1685
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001686 /*
1687 * Drop mp->lock while we free the skb.
1688 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001689 spin_unlock_irqrestore(&mp->lock, flags);
1690
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02001691 if (cmd_sts & TX_FIRST_DESC)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001692 dma_unmap_single(NULL, addr, count, DMA_TO_DEVICE);
1693 else
1694 dma_unmap_page(NULL, addr, count, DMA_TO_DEVICE);
1695
1696 if (skb)
1697 dev_kfree_skb_irq(skb);
1698
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001699 spin_lock_irqsave(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001700 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001701 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001702}
1703
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001704static void txq_deinit(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001705{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001706 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001707
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001708 txq_disable(txq);
1709 txq_reclaim(txq, 1);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001710
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001711 BUG_ON(txq->tx_used_desc != txq->tx_curr_desc);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001712
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001713 if (txq->index == mp->txq_primary &&
1714 txq->tx_desc_area_size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001715 iounmap(txq->tx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001716 else
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001717 dma_free_coherent(NULL, txq->tx_desc_area_size,
1718 txq->tx_desc_area, txq->tx_desc_dma);
1719
1720 kfree(txq->tx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001721}
1722
1723
1724/* netdev ops and related ***************************************************/
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001725static void handle_link_event(struct mv643xx_eth_private *mp)
1726{
1727 struct net_device *dev = mp->dev;
1728 u32 port_status;
1729 int speed;
1730 int duplex;
1731 int fc;
1732
1733 port_status = rdl(mp, PORT_STATUS(mp->port_num));
1734 if (!(port_status & LINK_UP)) {
1735 if (netif_carrier_ok(dev)) {
1736 int i;
1737
1738 printk(KERN_INFO "%s: link down\n", dev->name);
1739
1740 netif_carrier_off(dev);
1741 netif_stop_queue(dev);
1742
1743 for (i = 0; i < 8; i++) {
1744 struct tx_queue *txq = mp->txq + i;
1745
1746 if (mp->txq_mask & (1 << i)) {
1747 txq_reclaim(txq, 1);
1748 txq_reset_hw_ptr(txq);
1749 }
1750 }
1751 }
1752 return;
1753 }
1754
1755 switch (port_status & PORT_SPEED_MASK) {
1756 case PORT_SPEED_10:
1757 speed = 10;
1758 break;
1759 case PORT_SPEED_100:
1760 speed = 100;
1761 break;
1762 case PORT_SPEED_1000:
1763 speed = 1000;
1764 break;
1765 default:
1766 speed = -1;
1767 break;
1768 }
1769 duplex = (port_status & FULL_DUPLEX) ? 1 : 0;
1770 fc = (port_status & FLOW_CONTROL_ENABLED) ? 1 : 0;
1771
1772 printk(KERN_INFO "%s: link up, %d Mb/s, %s duplex, "
1773 "flow control %sabled\n", dev->name,
1774 speed, duplex ? "full" : "half",
1775 fc ? "en" : "dis");
1776
1777 if (!netif_carrier_ok(dev)) {
1778 netif_carrier_on(dev);
1779 netif_wake_queue(dev);
1780 }
1781}
1782
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001783static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001784{
1785 struct net_device *dev = (struct net_device *)dev_id;
Lennert Buytenheke5371492008-06-01 02:18:13 +02001786 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001787 u32 int_cause;
1788 u32 int_cause_ext;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001789
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001790 int_cause = rdl(mp, INT_CAUSE(mp->port_num)) &
1791 (INT_TX_END | INT_RX | INT_EXT);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001792 if (int_cause == 0)
1793 return IRQ_NONE;
1794
1795 int_cause_ext = 0;
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02001796 if (int_cause & INT_EXT) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001797 int_cause_ext = rdl(mp, INT_CAUSE_EXT(mp->port_num))
Lennert Buytenhek073a3452008-06-01 02:00:31 +02001798 & (INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001799 wrl(mp, INT_CAUSE_EXT(mp->port_num), ~int_cause_ext);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001800 }
1801
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001802 if (int_cause_ext & (INT_EXT_PHY | INT_EXT_LINK))
1803 handle_link_event(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001804
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001805 /*
1806 * RxBuffer or RxError set for any of the 8 queues?
1807 */
Lennert Buytenheke5371492008-06-01 02:18:13 +02001808#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02001809 if (int_cause & INT_RX) {
Lennert Buytenhek819ddca2008-08-24 02:45:32 +02001810 wrl(mp, INT_CAUSE(mp->port_num), ~(int_cause & INT_RX));
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001811 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001812 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001813
1814 netif_rx_schedule(dev, &mp->napi);
1815 }
1816#else
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001817 if (int_cause & INT_RX) {
1818 int i;
1819
1820 for (i = 7; i >= 0; i--)
1821 if (mp->rxq_mask & (1 << i))
1822 rxq_process(mp->rxq + i, INT_MAX);
1823 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001824#endif
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001825
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001826 /*
1827 * TxBuffer or TxError set for any of the 8 queues?
1828 */
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001829 if (int_cause_ext & INT_EXT_TX) {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001830 int i;
1831
1832 for (i = 0; i < 8; i++)
1833 if (mp->txq_mask & (1 << i))
1834 txq_reclaim(mp->txq + i, 0);
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001835
1836 /*
1837 * Enough space again in the primary TX queue for a
1838 * full packet?
1839 */
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001840 if (netif_carrier_ok(dev)) {
1841 spin_lock(&mp->lock);
1842 __txq_maybe_wake(mp->txq + mp->txq_primary);
1843 spin_unlock(&mp->lock);
1844 }
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001845 }
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001846
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001847 /*
1848 * Any TxEnd interrupts?
1849 */
1850 if (int_cause & INT_TX_END) {
1851 int i;
1852
1853 wrl(mp, INT_CAUSE(mp->port_num), ~(int_cause & INT_TX_END));
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001854
1855 spin_lock(&mp->lock);
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001856 for (i = 0; i < 8; i++) {
1857 struct tx_queue *txq = mp->txq + i;
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001858 u32 hw_desc_ptr;
1859 u32 expected_ptr;
1860
1861 if ((int_cause & (INT_TX_END_0 << i)) == 0)
1862 continue;
1863
1864 hw_desc_ptr =
1865 rdl(mp, TXQ_CURRENT_DESC_PTR(mp->port_num, i));
1866 expected_ptr = (u32)txq->tx_desc_dma +
1867 txq->tx_curr_desc * sizeof(struct tx_desc);
1868
1869 if (hw_desc_ptr != expected_ptr)
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001870 txq_enable(txq);
1871 }
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001872 spin_unlock(&mp->lock);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001873 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001874
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001875 return IRQ_HANDLED;
1876}
1877
Lennert Buytenheke5371492008-06-01 02:18:13 +02001878static void phy_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001879{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001880 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001881
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02001882 smi_reg_read(mp, mp->phy_addr, MII_BMCR, &data);
1883 data |= BMCR_RESET;
1884 smi_reg_write(mp, mp->phy_addr, MII_BMCR, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001885
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001886 do {
1887 udelay(1);
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02001888 smi_reg_read(mp, mp->phy_addr, MII_BMCR, &data);
1889 } while (data & BMCR_RESET);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001890}
1891
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001892static void port_start(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001893{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001894 u32 pscr;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001895 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001896
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001897 /*
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001898 * Perform PHY reset, if there is a PHY.
1899 */
1900 if (mp->phy_addr != -1) {
1901 struct ethtool_cmd cmd;
1902
1903 mv643xx_eth_get_settings(mp->dev, &cmd);
1904 phy_reset(mp);
1905 mv643xx_eth_set_settings(mp->dev, &cmd);
1906 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001907
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001908 /*
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001909 * Configure basic link parameters.
1910 */
1911 pscr = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
1912
1913 pscr |= SERIAL_PORT_ENABLE;
1914 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1915
1916 pscr |= DO_NOT_FORCE_LINK_FAIL;
1917 if (mp->phy_addr == -1)
1918 pscr |= FORCE_LINK_PASS;
1919 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1920
1921 wrl(mp, SDMA_CONFIG(mp->port_num), PORT_SDMA_CONFIG_DEFAULT_VALUE);
1922
1923 /*
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001924 * Configure TX path and queues.
1925 */
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001926 tx_set_rate(mp, 1000000000, 16777216);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001927 for (i = 0; i < 8; i++) {
1928 struct tx_queue *txq = mp->txq + i;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001929
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001930 if ((mp->txq_mask & (1 << i)) == 0)
1931 continue;
1932
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001933 txq_reset_hw_ptr(txq);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001934 txq_set_rate(txq, 1000000000, 16777216);
1935 txq_set_fixed_prio_mode(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001936 }
1937
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001938 /*
1939 * Add configured unicast address to address filter table.
1940 */
1941 uc_addr_set(mp, mp->dev->dev_addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001942
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02001943 /*
1944 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
1945 * frames to RX queue #0.
1946 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001947 wrl(mp, PORT_CONFIG(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001948
Lennert Buytenhek376489a2008-06-01 01:17:44 +02001949 /*
1950 * Treat BPDUs as normal multicasts, and disable partition mode.
1951 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001952 wrl(mp, PORT_CONFIG_EXT(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001953
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001954 /*
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001955 * Enable the receive queues.
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001956 */
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001957 for (i = 0; i < 8; i++) {
1958 struct rx_queue *rxq = mp->rxq + i;
1959 int off = RXQ_CURRENT_DESC_PTR(mp->port_num, i);
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001960 u32 addr;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001961
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001962 if ((mp->rxq_mask & (1 << i)) == 0)
1963 continue;
1964
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001965 addr = (u32)rxq->rx_desc_dma;
1966 addr += rxq->rx_curr_desc * sizeof(struct rx_desc);
1967 wrl(mp, off, addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001968
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001969 rxq_enable(rxq);
1970 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001971}
1972
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001973static void set_rx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001974{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001975 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02001976 u32 val;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001977
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02001978 val = rdl(mp, SDMA_CONFIG(mp->port_num));
1979 if (mp->shared->extended_rx_coal_limit) {
1980 if (coal > 0xffff)
1981 coal = 0xffff;
1982 val &= ~0x023fff80;
1983 val |= (coal & 0x8000) << 10;
1984 val |= (coal & 0x7fff) << 7;
1985 } else {
1986 if (coal > 0x3fff)
1987 coal = 0x3fff;
1988 val &= ~0x003fff00;
1989 val |= (coal & 0x3fff) << 8;
1990 }
1991 wrl(mp, SDMA_CONFIG(mp->port_num), val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001992}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001993
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001994static void set_tx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001995{
1996 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
1997
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001998 if (coal > 0x3fff)
1999 coal = 0x3fff;
2000 wrl(mp, TX_FIFO_URGENT_THRESHOLD(mp->port_num), (coal & 0x3fff) << 4);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002001}
2002
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002003static int mv643xx_eth_open(struct net_device *dev)
2004{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002005 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002006 int err;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002007 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002008
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002009 wrl(mp, INT_CAUSE(mp->port_num), 0);
2010 wrl(mp, INT_CAUSE_EXT(mp->port_num), 0);
2011 rdl(mp, INT_CAUSE_EXT(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002012
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002013 err = request_irq(dev->irq, mv643xx_eth_irq,
Lennert Buytenhek2a1867a2008-08-23 23:43:38 +02002014 IRQF_SHARED, dev->name, dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002015 if (err) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002016 dev_printk(KERN_ERR, &dev->dev, "can't assign irq\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002017 return -EAGAIN;
2018 }
2019
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002020 init_mac_tables(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002021
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002022 for (i = 0; i < 8; i++) {
2023 if ((mp->rxq_mask & (1 << i)) == 0)
2024 continue;
2025
2026 err = rxq_init(mp, i);
2027 if (err) {
2028 while (--i >= 0)
2029 if (mp->rxq_mask & (1 << i))
2030 rxq_deinit(mp->rxq + i);
2031 goto out;
2032 }
2033
2034 rxq_refill(mp->rxq + i);
2035 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002036
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002037 for (i = 0; i < 8; i++) {
2038 if ((mp->txq_mask & (1 << i)) == 0)
2039 continue;
2040
2041 err = txq_init(mp, i);
2042 if (err) {
2043 while (--i >= 0)
2044 if (mp->txq_mask & (1 << i))
2045 txq_deinit(mp->txq + i);
2046 goto out_free;
2047 }
2048 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002049
Lennert Buytenheke5371492008-06-01 02:18:13 +02002050#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002051 napi_enable(&mp->napi);
2052#endif
2053
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02002054 netif_carrier_off(dev);
2055 netif_stop_queue(dev);
2056
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002057 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002058
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02002059 set_rx_coal(mp, 0);
2060 set_tx_coal(mp, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002061
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002062 wrl(mp, INT_MASK_EXT(mp->port_num),
2063 INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002064
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02002065 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002066
2067 return 0;
2068
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002069
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002070out_free:
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002071 for (i = 0; i < 8; i++)
2072 if (mp->rxq_mask & (1 << i))
2073 rxq_deinit(mp->rxq + i);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002074out:
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002075 free_irq(dev->irq, dev);
2076
2077 return err;
2078}
2079
Lennert Buytenheke5371492008-06-01 02:18:13 +02002080static void port_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002081{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002082 unsigned int data;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002083 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002084
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002085 for (i = 0; i < 8; i++) {
2086 if (mp->rxq_mask & (1 << i))
2087 rxq_disable(mp->rxq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002088 if (mp->txq_mask & (1 << i))
2089 txq_disable(mp->txq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002090 }
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002091
2092 while (1) {
2093 u32 ps = rdl(mp, PORT_STATUS(mp->port_num));
2094
2095 if ((ps & (TX_IN_PROGRESS | TX_FIFO_EMPTY)) == TX_FIFO_EMPTY)
2096 break;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002097 udelay(10);
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002098 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002099
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002100 /* Reset the Enable bit in the Configuration Register */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002101 data = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
2102 data &= ~(SERIAL_PORT_ENABLE |
2103 DO_NOT_FORCE_LINK_FAIL |
2104 FORCE_LINK_PASS);
2105 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002106}
2107
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002108static int mv643xx_eth_stop(struct net_device *dev)
2109{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002110 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002111 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002112
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002113 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
2114 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002115
Lennert Buytenheke5371492008-06-01 02:18:13 +02002116#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002117 napi_disable(&mp->napi);
2118#endif
2119 netif_carrier_off(dev);
2120 netif_stop_queue(dev);
2121
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002122 free_irq(dev->irq, dev);
2123
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02002124 port_reset(mp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002125 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002126
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002127 for (i = 0; i < 8; i++) {
2128 if (mp->rxq_mask & (1 << i))
2129 rxq_deinit(mp->rxq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002130 if (mp->txq_mask & (1 << i))
2131 txq_deinit(mp->txq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002132 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002133
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002134 return 0;
2135}
2136
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002137static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002138{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002139 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002140
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002141 if (mp->phy_addr != -1)
2142 return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL);
2143
2144 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002145}
2146
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002147static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
2148{
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002149 struct mv643xx_eth_private *mp = netdev_priv(dev);
2150
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002151 if (new_mtu < 64 || new_mtu > 9500)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002152 return -EINVAL;
2153
2154 dev->mtu = new_mtu;
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002155 tx_set_rate(mp, 1000000000, 16777216);
2156
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002157 if (!netif_running(dev))
2158 return 0;
2159
2160 /*
2161 * Stop and then re-open the interface. This will allocate RX
2162 * skbs of the new MTU.
2163 * There is a possible danger that the open will not succeed,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002164 * due to memory being full.
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002165 */
2166 mv643xx_eth_stop(dev);
2167 if (mv643xx_eth_open(dev)) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002168 dev_printk(KERN_ERR, &dev->dev,
2169 "fatal error on re-opening device after "
2170 "MTU change\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002171 }
2172
2173 return 0;
2174}
2175
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002176static void tx_timeout_task(struct work_struct *ugly)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002177{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002178 struct mv643xx_eth_private *mp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002179
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002180 mp = container_of(ugly, struct mv643xx_eth_private, tx_timeout_task);
2181 if (netif_running(mp->dev)) {
2182 netif_stop_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002183
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002184 port_reset(mp);
2185 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002186
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002187 __txq_maybe_wake(mp->txq + mp->txq_primary);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002188 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002189}
2190
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002191static void mv643xx_eth_tx_timeout(struct net_device *dev)
2192{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002193 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002194
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002195 dev_printk(KERN_INFO, &dev->dev, "tx timeout\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002196
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002197 schedule_work(&mp->tx_timeout_task);
2198}
2199
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002200#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002201static void mv643xx_eth_netpoll(struct net_device *dev)
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002202{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002203 struct mv643xx_eth_private *mp = netdev_priv(dev);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002204
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002205 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
2206 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002207
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002208 mv643xx_eth_irq(dev->irq, dev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002209
Lennert Buytenhekf2ca60f2008-07-07 00:03:00 +02002210 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002211}
2212#endif
2213
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002214static int mv643xx_eth_mdio_read(struct net_device *dev, int addr, int reg)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002215{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002216 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002217 int val;
2218
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002219 smi_reg_read(mp, addr, reg, &val);
2220
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002221 return val;
2222}
2223
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002224static void mv643xx_eth_mdio_write(struct net_device *dev, int addr, int reg, int val)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002225{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002226 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002227 smi_reg_write(mp, addr, reg, val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002228}
2229
2230
2231/* platform glue ************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02002232static void
2233mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private *msp,
2234 struct mbus_dram_target_info *dram)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002235{
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02002236 void __iomem *base = msp->base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002237 u32 win_enable;
2238 u32 win_protect;
2239 int i;
2240
2241 for (i = 0; i < 6; i++) {
2242 writel(0, base + WINDOW_BASE(i));
2243 writel(0, base + WINDOW_SIZE(i));
2244 if (i < 4)
2245 writel(0, base + WINDOW_REMAP_HIGH(i));
2246 }
2247
2248 win_enable = 0x3f;
2249 win_protect = 0;
2250
2251 for (i = 0; i < dram->num_cs; i++) {
2252 struct mbus_dram_window *cs = dram->cs + i;
2253
2254 writel((cs->base & 0xffff0000) |
2255 (cs->mbus_attr << 8) |
2256 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
2257 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
2258
2259 win_enable &= ~(1 << i);
2260 win_protect |= 3 << (2 * i);
2261 }
2262
2263 writel(win_enable, base + WINDOW_BAR_ENABLE);
2264 msp->win_protect = win_protect;
2265}
2266
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002267static void infer_hw_params(struct mv643xx_eth_shared_private *msp)
2268{
2269 /*
2270 * Check whether we have a 14-bit coal limit field in bits
2271 * [21:8], or a 16-bit coal limit in bits [25,21:7] of the
2272 * SDMA config register.
2273 */
2274 writel(0x02000000, msp->base + SDMA_CONFIG(0));
2275 if (readl(msp->base + SDMA_CONFIG(0)) & 0x02000000)
2276 msp->extended_rx_coal_limit = 1;
2277 else
2278 msp->extended_rx_coal_limit = 0;
Lennert Buytenhek1e881592008-06-02 01:57:36 +02002279
2280 /*
2281 * Check whether the TX rate control registers are in the
2282 * old or the new place.
2283 */
2284 writel(1, msp->base + TX_BW_MTU_MOVED(0));
2285 if (readl(msp->base + TX_BW_MTU_MOVED(0)) & 1)
2286 msp->tx_bw_control_moved = 1;
2287 else
2288 msp->tx_bw_control_moved = 0;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002289}
2290
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002291static int mv643xx_eth_shared_probe(struct platform_device *pdev)
2292{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002293 static int mv643xx_eth_version_printed = 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002294 struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002295 struct mv643xx_eth_shared_private *msp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002296 struct resource *res;
2297 int ret;
2298
Lennert Buytenheke5371492008-06-01 02:18:13 +02002299 if (!mv643xx_eth_version_printed++)
Lennert Buytenhek7dde1542008-07-15 12:20:30 +02002300 printk(KERN_NOTICE "MV-643xx 10/100/1000 ethernet "
2301 "driver version %s\n", mv643xx_eth_driver_version);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002302
2303 ret = -EINVAL;
2304 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2305 if (res == NULL)
2306 goto out;
2307
2308 ret = -ENOMEM;
2309 msp = kmalloc(sizeof(*msp), GFP_KERNEL);
2310 if (msp == NULL)
2311 goto out;
2312 memset(msp, 0, sizeof(*msp));
2313
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02002314 msp->base = ioremap(res->start, res->end - res->start + 1);
2315 if (msp->base == NULL)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002316 goto out_free;
2317
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +02002318 mutex_init(&msp->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002319
2320 /*
2321 * (Re-)program MBUS remapping windows if we are asked to.
2322 */
2323 if (pd != NULL && pd->dram != NULL)
2324 mv643xx_eth_conf_mbus_windows(msp, pd->dram);
2325
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002326 /*
2327 * Detect hardware parameters.
2328 */
2329 msp->t_clk = (pd != NULL && pd->t_clk != 0) ? pd->t_clk : 133000000;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002330 infer_hw_params(msp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002331
2332 platform_set_drvdata(pdev, msp);
2333
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002334 return 0;
2335
2336out_free:
2337 kfree(msp);
2338out:
2339 return ret;
2340}
2341
2342static int mv643xx_eth_shared_remove(struct platform_device *pdev)
2343{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002344 struct mv643xx_eth_shared_private *msp = platform_get_drvdata(pdev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002345
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02002346 iounmap(msp->base);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002347 kfree(msp);
2348
2349 return 0;
2350}
2351
2352static struct platform_driver mv643xx_eth_shared_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002353 .probe = mv643xx_eth_shared_probe,
2354 .remove = mv643xx_eth_shared_remove,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002355 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002356 .name = MV643XX_ETH_SHARED_NAME,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002357 .owner = THIS_MODULE,
2358 },
2359};
2360
Lennert Buytenheke5371492008-06-01 02:18:13 +02002361static void phy_addr_set(struct mv643xx_eth_private *mp, int phy_addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002362{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002363 int addr_shift = 5 * mp->port_num;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002364 u32 data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002365
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002366 data = rdl(mp, PHY_ADDR);
2367 data &= ~(0x1f << addr_shift);
2368 data |= (phy_addr & 0x1f) << addr_shift;
2369 wrl(mp, PHY_ADDR, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002370}
2371
Lennert Buytenheke5371492008-06-01 02:18:13 +02002372static int phy_addr_get(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002373{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002374 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002375
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002376 data = rdl(mp, PHY_ADDR);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002377
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002378 return (data >> (5 * mp->port_num)) & 0x1f;
2379}
2380
2381static void set_params(struct mv643xx_eth_private *mp,
2382 struct mv643xx_eth_platform_data *pd)
2383{
2384 struct net_device *dev = mp->dev;
2385
2386 if (is_valid_ether_addr(pd->mac_addr))
2387 memcpy(dev->dev_addr, pd->mac_addr, 6);
2388 else
2389 uc_addr_get(mp, dev->dev_addr);
2390
2391 if (pd->phy_addr == -1) {
2392 mp->shared_smi = NULL;
2393 mp->phy_addr = -1;
2394 } else {
2395 mp->shared_smi = mp->shared;
2396 if (pd->shared_smi != NULL)
2397 mp->shared_smi = platform_get_drvdata(pd->shared_smi);
2398
2399 if (pd->force_phy_addr || pd->phy_addr) {
2400 mp->phy_addr = pd->phy_addr & 0x3f;
2401 phy_addr_set(mp, mp->phy_addr);
2402 } else {
2403 mp->phy_addr = phy_addr_get(mp);
2404 }
2405 }
2406
2407 mp->default_rx_ring_size = DEFAULT_RX_QUEUE_SIZE;
2408 if (pd->rx_queue_size)
2409 mp->default_rx_ring_size = pd->rx_queue_size;
2410 mp->rx_desc_sram_addr = pd->rx_sram_addr;
2411 mp->rx_desc_sram_size = pd->rx_sram_size;
2412
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002413 if (pd->rx_queue_mask)
2414 mp->rxq_mask = pd->rx_queue_mask;
2415 else
2416 mp->rxq_mask = 0x01;
2417 mp->rxq_primary = fls(mp->rxq_mask) - 1;
2418
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002419 mp->default_tx_ring_size = DEFAULT_TX_QUEUE_SIZE;
2420 if (pd->tx_queue_size)
2421 mp->default_tx_ring_size = pd->tx_queue_size;
2422 mp->tx_desc_sram_addr = pd->tx_sram_addr;
2423 mp->tx_desc_sram_size = pd->tx_sram_size;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002424
2425 if (pd->tx_queue_mask)
2426 mp->txq_mask = pd->tx_queue_mask;
2427 else
2428 mp->txq_mask = 0x01;
2429 mp->txq_primary = fls(mp->txq_mask) - 1;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002430}
2431
Lennert Buytenheke5371492008-06-01 02:18:13 +02002432static int phy_detect(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002433{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002434 unsigned int data;
2435 unsigned int data2;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002436
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02002437 smi_reg_read(mp, mp->phy_addr, MII_BMCR, &data);
2438 smi_reg_write(mp, mp->phy_addr, MII_BMCR, data ^ BMCR_ANENABLE);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002439
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02002440 smi_reg_read(mp, mp->phy_addr, MII_BMCR, &data2);
2441 if (((data ^ data2) & BMCR_ANENABLE) == 0)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002442 return -ENODEV;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002443
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02002444 smi_reg_write(mp, mp->phy_addr, MII_BMCR, data);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002445
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002446 return 0;
2447}
2448
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002449static int phy_init(struct mv643xx_eth_private *mp,
2450 struct mv643xx_eth_platform_data *pd)
James Chapmand0412d92006-01-27 01:15:30 -07002451{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002452 struct ethtool_cmd cmd;
2453 int err;
James Chapmand0412d92006-01-27 01:15:30 -07002454
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002455 err = phy_detect(mp);
2456 if (err) {
2457 dev_printk(KERN_INFO, &mp->dev->dev,
2458 "no PHY detected at addr %d\n", mp->phy_addr);
2459 return err;
James Chapmand0412d92006-01-27 01:15:30 -07002460 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002461 phy_reset(mp);
2462
2463 mp->mii.phy_id = mp->phy_addr;
2464 mp->mii.phy_id_mask = 0x3f;
2465 mp->mii.reg_num_mask = 0x1f;
2466 mp->mii.dev = mp->dev;
2467 mp->mii.mdio_read = mv643xx_eth_mdio_read;
2468 mp->mii.mdio_write = mv643xx_eth_mdio_write;
2469
2470 mp->mii.supports_gmii = mii_check_gmii_support(&mp->mii);
2471
2472 memset(&cmd, 0, sizeof(cmd));
2473
2474 cmd.port = PORT_MII;
2475 cmd.transceiver = XCVR_INTERNAL;
2476 cmd.phy_address = mp->phy_addr;
2477 if (pd->speed == 0) {
2478 cmd.autoneg = AUTONEG_ENABLE;
2479 cmd.speed = SPEED_100;
2480 cmd.advertising = ADVERTISED_10baseT_Half |
2481 ADVERTISED_10baseT_Full |
2482 ADVERTISED_100baseT_Half |
2483 ADVERTISED_100baseT_Full;
2484 if (mp->mii.supports_gmii)
2485 cmd.advertising |= ADVERTISED_1000baseT_Full;
2486 } else {
2487 cmd.autoneg = AUTONEG_DISABLE;
2488 cmd.speed = pd->speed;
2489 cmd.duplex = pd->duplex;
2490 }
2491
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002492 mv643xx_eth_set_settings(mp->dev, &cmd);
2493
2494 return 0;
James Chapmand0412d92006-01-27 01:15:30 -07002495}
2496
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002497static void init_pscr(struct mv643xx_eth_private *mp, int speed, int duplex)
2498{
2499 u32 pscr;
2500
2501 pscr = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
2502 if (pscr & SERIAL_PORT_ENABLE) {
2503 pscr &= ~SERIAL_PORT_ENABLE;
2504 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
2505 }
2506
2507 pscr = MAX_RX_PACKET_9700BYTE | SERIAL_PORT_CONTROL_RESERVED;
2508 if (mp->phy_addr == -1) {
2509 pscr |= DISABLE_AUTO_NEG_SPEED_GMII;
2510 if (speed == SPEED_1000)
2511 pscr |= SET_GMII_SPEED_TO_1000;
2512 else if (speed == SPEED_100)
2513 pscr |= SET_MII_SPEED_TO_100;
2514
2515 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL;
2516
2517 pscr |= DISABLE_AUTO_NEG_FOR_DUPLEX;
2518 if (duplex == DUPLEX_FULL)
2519 pscr |= SET_FULL_DUPLEX_MODE;
2520 }
2521
2522 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
2523}
2524
Russell King3ae5eae2005-11-09 22:32:44 +00002525static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 struct mv643xx_eth_platform_data *pd;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002528 struct mv643xx_eth_private *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 struct resource *res;
Al Viroc5d64712007-10-13 08:30:26 +01002531 DECLARE_MAC_BUF(mac);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002532 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002534 pd = pdev->dev.platform_data;
2535 if (pd == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002536 dev_printk(KERN_ERR, &pdev->dev,
2537 "no mv643xx_eth_platform_data\n");
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002538 return -ENODEV;
2539 }
2540
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002541 if (pd->shared == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002542 dev_printk(KERN_ERR, &pdev->dev,
2543 "no mv643xx_eth_platform_data->shared\n");
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002544 return -ENODEV;
2545 }
2546
Lennert Buytenheke5371492008-06-01 02:18:13 +02002547 dev = alloc_etherdev(sizeof(struct mv643xx_eth_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (!dev)
2549 return -ENOMEM;
2550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002552 platform_set_drvdata(pdev, mp);
2553
2554 mp->shared = platform_get_drvdata(pd->shared);
2555 mp->port_num = pd->port_number;
2556
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002557 mp->dev = dev;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002558#ifdef MV643XX_ETH_NAPI
2559 netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, 64);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002560#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002562 set_params(mp, pd);
2563
2564 spin_lock_init(&mp->lock);
2565
2566 mib_counters_clear(mp);
2567 INIT_WORK(&mp->tx_timeout_task, tx_timeout_task);
2568
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002569 if (mp->phy_addr != -1) {
2570 err = phy_init(mp, pd);
2571 if (err)
2572 goto out;
2573
2574 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops);
2575 } else {
2576 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops_phyless);
2577 }
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002578 init_pscr(mp, pd->speed, pd->duplex);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002579
2580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2582 BUG_ON(!res);
2583 dev->irq = res->start;
2584
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002585 dev->hard_start_xmit = mv643xx_eth_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 dev->open = mv643xx_eth_open;
2587 dev->stop = mv643xx_eth_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002589 dev->set_mac_address = mv643xx_eth_set_mac_address;
2590 dev->do_ioctl = mv643xx_eth_ioctl;
2591 dev->change_mtu = mv643xx_eth_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 dev->tx_timeout = mv643xx_eth_tx_timeout;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002593#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenheke5371492008-06-01 02:18:13 +02002594 dev->poll_controller = mv643xx_eth_netpoll;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002595#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 dev->base_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Lennert Buytenheke5371492008-06-01 02:18:13 +02002599#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 /*
2601 * Zero copy can only work if we use Discovery II memory. Else, we will
2602 * have to map the buffers to ISA memory which is only 16 MB
2603 */
Wolfram Joost63890572006-01-16 16:57:41 -07002604 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Lennert Buytenheke32b6612008-07-24 06:22:59 +02002605 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606#endif
James Chapmanc28a4f82006-01-27 01:13:15 -07002607
Olaf Heringb0b8dab2006-04-27 18:23:49 -07002608 SET_NETDEV_DEV(dev, &pdev->dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002609
2610 if (mp->shared->win_protect)
2611 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
2612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 err = register_netdev(dev);
2614 if (err)
2615 goto out;
2616
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002617 dev_printk(KERN_NOTICE, &dev->dev, "port %d with MAC address %s\n",
2618 mp->port_num, print_mac(mac, dev->dev_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
2620 if (dev->features & NETIF_F_SG)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002621 dev_printk(KERN_NOTICE, &dev->dev, "scatter/gather enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623 if (dev->features & NETIF_F_IP_CSUM)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002624 dev_printk(KERN_NOTICE, &dev->dev, "tx checksum offload\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Lennert Buytenheke5371492008-06-01 02:18:13 +02002626#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002627 dev_printk(KERN_NOTICE, &dev->dev, "napi enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628#endif
2629
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002630 if (mp->tx_desc_sram_size > 0)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002631 dev_printk(KERN_NOTICE, &dev->dev, "configured with sram\n");
Nicolas DETb1529872005-10-28 17:46:30 -07002632
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 return 0;
2634
2635out:
2636 free_netdev(dev);
2637
2638 return err;
2639}
2640
Russell King3ae5eae2005-11-09 22:32:44 +00002641static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002643 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002645 unregister_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 flush_scheduled_work();
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002647 free_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Russell King3ae5eae2005-11-09 22:32:44 +00002649 platform_set_drvdata(pdev, NULL);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 return 0;
2652}
2653
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002654static void mv643xx_eth_shutdown(struct platform_device *pdev)
2655{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002656 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002657
2658 /* Mask all interrupts on ethernet port */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002659 wrl(mp, INT_MASK(mp->port_num), 0);
2660 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002661
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002662 if (netif_running(mp->dev))
2663 port_reset(mp);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002664}
2665
Russell King3ae5eae2005-11-09 22:32:44 +00002666static struct platform_driver mv643xx_eth_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002667 .probe = mv643xx_eth_probe,
2668 .remove = mv643xx_eth_remove,
2669 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00002670 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002671 .name = MV643XX_ETH_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07002672 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002673 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674};
2675
Lennert Buytenheke5371492008-06-01 02:18:13 +02002676static int __init mv643xx_eth_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677{
2678 int rc;
2679
Russell King3ae5eae2005-11-09 22:32:44 +00002680 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00002682 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00002684 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 return rc;
2688}
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002689module_init(mv643xx_eth_init_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Lennert Buytenheke5371492008-06-01 02:18:13 +02002691static void __exit mv643xx_eth_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692{
Russell King3ae5eae2005-11-09 22:32:44 +00002693 platform_driver_unregister(&mv643xx_eth_driver);
2694 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695}
Lennert Buytenheke5371492008-06-01 02:18:13 +02002696module_exit(mv643xx_eth_cleanup_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Lennert Buytenhek45675bc2008-06-02 02:02:30 +02002698MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, "
2699 "Manish Lachwani, Dale Farnsworth and Lennert Buytenhek");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002701MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -07002702MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002703MODULE_ALIAS("platform:" MV643XX_ETH_NAME);