blob: 3831a8bffbd6e576141d02a31856c94c76f7dd5e [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 Hering3bb8a182006-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
Lennert Buytenheke5371492008-06-01 02:18:13 +020061#define MV643XX_ETH_TX_FAST_REFILL
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020062
Lennert Buytenheke5371492008-06-01 02:18:13 +020063#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020064#define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1)
65#else
66#define MAX_DESCS_PER_SKB 1
67#endif
68
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020069/*
70 * Registers shared between all ports.
71 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020072#define PHY_ADDR 0x0000
73#define SMI_REG 0x0004
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +020074#define SMI_BUSY 0x10000000
75#define SMI_READ_VALID 0x08000000
76#define SMI_OPCODE_READ 0x04000000
77#define SMI_OPCODE_WRITE 0x00000000
78#define ERR_INT_CAUSE 0x0080
79#define ERR_INT_SMI_DONE 0x00000010
80#define ERR_INT_MASK 0x0084
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020081#define WINDOW_BASE(w) (0x0200 + ((w) << 3))
82#define WINDOW_SIZE(w) (0x0204 + ((w) << 3))
83#define WINDOW_REMAP_HIGH(w) (0x0280 + ((w) << 2))
84#define WINDOW_BAR_ENABLE 0x0290
85#define WINDOW_PROTECT(w) (0x0294 + ((w) << 4))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020086
87/*
88 * Per-port registers.
89 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020090#define PORT_CONFIG(p) (0x0400 + ((p) << 10))
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +020091#define UNICAST_PROMISCUOUS_MODE 0x00000001
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020092#define PORT_CONFIG_EXT(p) (0x0404 + ((p) << 10))
93#define MAC_ADDR_LOW(p) (0x0414 + ((p) << 10))
94#define MAC_ADDR_HIGH(p) (0x0418 + ((p) << 10))
95#define SDMA_CONFIG(p) (0x041c + ((p) << 10))
96#define PORT_SERIAL_CONTROL(p) (0x043c + ((p) << 10))
97#define PORT_STATUS(p) (0x0444 + ((p) << 10))
Lennert Buytenheka2a41682008-06-01 01:30:42 +020098#define TX_FIFO_EMPTY 0x00000400
Lennert Buytenhekae9ae062008-07-15 02:15:24 +020099#define TX_IN_PROGRESS 0x00000080
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +0200100#define PORT_SPEED_MASK 0x00000030
101#define PORT_SPEED_1000 0x00000010
102#define PORT_SPEED_100 0x00000020
103#define PORT_SPEED_10 0x00000000
104#define FLOW_CONTROL_ENABLED 0x00000008
105#define FULL_DUPLEX 0x00000004
Lennert Buytenhek81600eea92008-07-14 14:29:40 +0200106#define LINK_UP 0x00000002
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200107#define TXQ_COMMAND(p) (0x0448 + ((p) << 10))
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200108#define TXQ_FIX_PRIO_CONF(p) (0x044c + ((p) << 10))
109#define TX_BW_RATE(p) (0x0450 + ((p) << 10))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200110#define TX_BW_MTU(p) (0x0458 + ((p) << 10))
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200111#define TX_BW_BURST(p) (0x045c + ((p) << 10))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200112#define INT_CAUSE(p) (0x0460 + ((p) << 10))
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200113#define INT_TX_END_0 0x00080000
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +0200114#define INT_TX_END 0x07f80000
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200115#define INT_RX 0x0007fbfc
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200116#define INT_EXT 0x00000002
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200117#define INT_CAUSE_EXT(p) (0x0464 + ((p) << 10))
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200118#define INT_EXT_LINK 0x00100000
119#define INT_EXT_PHY 0x00010000
120#define INT_EXT_TX_ERROR_0 0x00000100
121#define INT_EXT_TX_0 0x00000001
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200122#define INT_EXT_TX 0x0000ffff
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200123#define INT_MASK(p) (0x0468 + ((p) << 10))
124#define INT_MASK_EXT(p) (0x046c + ((p) << 10))
125#define TX_FIFO_URGENT_THRESHOLD(p) (0x0474 + ((p) << 10))
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200126#define TXQ_FIX_PRIO_CONF_MOVED(p) (0x04dc + ((p) << 10))
127#define TX_BW_RATE_MOVED(p) (0x04e0 + ((p) << 10))
128#define TX_BW_MTU_MOVED(p) (0x04e8 + ((p) << 10))
129#define TX_BW_BURST_MOVED(p) (0x04ec + ((p) << 10))
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200130#define RXQ_CURRENT_DESC_PTR(p, q) (0x060c + ((p) << 10) + ((q) << 4))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200131#define RXQ_COMMAND(p) (0x0680 + ((p) << 10))
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200132#define TXQ_CURRENT_DESC_PTR(p, q) (0x06c0 + ((p) << 10) + ((q) << 2))
133#define TXQ_BW_TOKENS(p, q) (0x0700 + ((p) << 10) + ((q) << 4))
134#define TXQ_BW_CONF(p, q) (0x0704 + ((p) << 10) + ((q) << 4))
135#define TXQ_BW_WRR_CONF(p, q) (0x0708 + ((p) << 10) + ((q) << 4))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200136#define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
137#define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
138#define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
139#define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200140
Lennert Buytenhek2679a552008-06-01 01:18:58 +0200141
142/*
143 * SDMA configuration register.
144 */
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200145#define RX_BURST_SIZE_16_64BIT (4 << 1)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200146#define BLM_RX_NO_SWAP (1 << 4)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200147#define BLM_TX_NO_SWAP (1 << 5)
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200148#define TX_BURST_SIZE_16_64BIT (4 << 22)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200149
150#if defined(__BIG_ENDIAN)
151#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200152 RX_BURST_SIZE_16_64BIT | \
153 TX_BURST_SIZE_16_64BIT
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200154#elif defined(__LITTLE_ENDIAN)
155#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200156 RX_BURST_SIZE_16_64BIT | \
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200157 BLM_RX_NO_SWAP | \
158 BLM_TX_NO_SWAP | \
Lennert Buytenhekcd4ccf72008-07-10 14:40:51 +0200159 TX_BURST_SIZE_16_64BIT
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200160#else
161#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
162#endif
163
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200164
165/*
166 * Port serial control register.
167 */
168#define SET_MII_SPEED_TO_100 (1 << 24)
169#define SET_GMII_SPEED_TO_1000 (1 << 23)
170#define SET_FULL_DUPLEX_MODE (1 << 21)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200171#define MAX_RX_PACKET_9700BYTE (5 << 17)
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200172#define DISABLE_AUTO_NEG_SPEED_GMII (1 << 13)
173#define DO_NOT_FORCE_LINK_FAIL (1 << 10)
174#define SERIAL_PORT_CONTROL_RESERVED (1 << 9)
175#define DISABLE_AUTO_NEG_FOR_FLOW_CTRL (1 << 3)
176#define DISABLE_AUTO_NEG_FOR_DUPLEX (1 << 2)
177#define FORCE_LINK_PASS (1 << 1)
178#define SERIAL_PORT_ENABLE (1 << 0)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200179
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200180#define DEFAULT_RX_QUEUE_SIZE 400
181#define DEFAULT_TX_QUEUE_SIZE 800
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200182
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200183
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200184/*
185 * RX/TX descriptors.
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200186 */
187#if defined(__BIG_ENDIAN)
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200188struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200189 u16 byte_cnt; /* Descriptor buffer byte count */
190 u16 buf_size; /* Buffer size */
191 u32 cmd_sts; /* Descriptor command status */
192 u32 next_desc_ptr; /* Next descriptor pointer */
193 u32 buf_ptr; /* Descriptor buffer pointer */
194};
195
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200196struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200197 u16 byte_cnt; /* buffer byte count */
198 u16 l4i_chk; /* CPU provided TCP checksum */
199 u32 cmd_sts; /* Command/status field */
200 u32 next_desc_ptr; /* Pointer to next descriptor */
201 u32 buf_ptr; /* pointer to buffer for this descriptor*/
202};
203#elif defined(__LITTLE_ENDIAN)
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200204struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200205 u32 cmd_sts; /* Descriptor command status */
206 u16 buf_size; /* Buffer size */
207 u16 byte_cnt; /* Descriptor buffer byte count */
208 u32 buf_ptr; /* Descriptor buffer pointer */
209 u32 next_desc_ptr; /* Next descriptor pointer */
210};
211
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200212struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200213 u32 cmd_sts; /* Command/status field */
214 u16 l4i_chk; /* CPU provided TCP checksum */
215 u16 byte_cnt; /* buffer byte count */
216 u32 buf_ptr; /* pointer to buffer for this descriptor*/
217 u32 next_desc_ptr; /* Pointer to next descriptor */
218};
219#else
220#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
221#endif
222
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200223/* RX & TX descriptor command */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200224#define BUFFER_OWNED_BY_DMA 0x80000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200225
226/* RX & TX descriptor status */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200227#define ERROR_SUMMARY 0x00000001
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200228
229/* RX descriptor status */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200230#define LAYER_4_CHECKSUM_OK 0x40000000
231#define RX_ENABLE_INTERRUPT 0x20000000
232#define RX_FIRST_DESC 0x08000000
233#define RX_LAST_DESC 0x04000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200234
235/* TX descriptor command */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200236#define TX_ENABLE_INTERRUPT 0x00800000
237#define GEN_CRC 0x00400000
238#define TX_FIRST_DESC 0x00200000
239#define TX_LAST_DESC 0x00100000
240#define ZERO_PADDING 0x00080000
241#define GEN_IP_V4_CHECKSUM 0x00040000
242#define GEN_TCP_UDP_CHECKSUM 0x00020000
243#define UDP_FRAME 0x00010000
Lennert Buytenheke32b6612008-07-24 06:22:59 +0200244#define MAC_HDR_EXTRA_4_BYTES 0x00008000
245#define MAC_HDR_EXTRA_8_BYTES 0x00000200
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200246
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200247#define TX_IHL_SHIFT 11
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200248
249
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200250/* global *******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200251struct mv643xx_eth_shared_private {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200252 /*
253 * Ethernet controller base address.
254 */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200255 void __iomem *base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200256
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200257 /*
258 * Protects access to SMI_REG, which is shared between ports.
259 */
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +0200260 struct mutex phy_lock;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200261
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200262 /*
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +0200263 * If we have access to the error interrupt pin (which is
264 * somewhat misnamed as it not only reflects internal errors
265 * but also reflects SMI completion), use that to wait for
266 * SMI access completion instead of polling the SMI busy bit.
267 */
268 int err_interrupt;
269 wait_queue_head_t smi_busy_wait;
270
271 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200272 * Per-port MBUS window access register value.
273 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200274 u32 win_protect;
275
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200276 /*
277 * Hardware-specific parameters.
278 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200279 unsigned int t_clk;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +0200280 int extended_rx_coal_limit;
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200281 int tx_bw_control_moved;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200282};
283
284
285/* per-port *****************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200286struct mib_counters {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200287 u64 good_octets_received;
288 u32 bad_octets_received;
289 u32 internal_mac_transmit_err;
290 u32 good_frames_received;
291 u32 bad_frames_received;
292 u32 broadcast_frames_received;
293 u32 multicast_frames_received;
294 u32 frames_64_octets;
295 u32 frames_65_to_127_octets;
296 u32 frames_128_to_255_octets;
297 u32 frames_256_to_511_octets;
298 u32 frames_512_to_1023_octets;
299 u32 frames_1024_to_max_octets;
300 u64 good_octets_sent;
301 u32 good_frames_sent;
302 u32 excessive_collision;
303 u32 multicast_frames_sent;
304 u32 broadcast_frames_sent;
305 u32 unrec_mac_control_received;
306 u32 fc_sent;
307 u32 good_fc_received;
308 u32 bad_fc_received;
309 u32 undersize_received;
310 u32 fragments_received;
311 u32 oversize_received;
312 u32 jabber_received;
313 u32 mac_receive_error;
314 u32 bad_crc_event;
315 u32 collision;
316 u32 late_collision;
317};
318
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200319struct rx_queue {
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200320 int index;
321
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200322 int rx_ring_size;
323
324 int rx_desc_count;
325 int rx_curr_desc;
326 int rx_used_desc;
327
328 struct rx_desc *rx_desc_area;
329 dma_addr_t rx_desc_dma;
330 int rx_desc_area_size;
331 struct sk_buff **rx_skb;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200332};
333
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200334struct tx_queue {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200335 int index;
336
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200337 int tx_ring_size;
338
339 int tx_desc_count;
340 int tx_curr_desc;
341 int tx_used_desc;
342
343 struct tx_desc *tx_desc_area;
344 dma_addr_t tx_desc_dma;
345 int tx_desc_area_size;
346 struct sk_buff **tx_skb;
347};
348
Lennert Buytenheke5371492008-06-01 02:18:13 +0200349struct mv643xx_eth_private {
350 struct mv643xx_eth_shared_private *shared;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200351 int port_num;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200352
353 struct net_device *dev;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200354
355 struct mv643xx_eth_shared_private *shared_smi;
356 int phy_addr;
357
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200358 spinlock_t lock;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200359
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200360 struct mib_counters mib_counters;
361 struct work_struct tx_timeout_task;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200362 struct mii_if_info mii;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200363
364 /*
365 * RX state.
366 */
367 int default_rx_ring_size;
368 unsigned long rx_desc_sram_addr;
369 int rx_desc_sram_size;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200370 u8 rxq_mask;
371 int rxq_primary;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200372 struct napi_struct napi;
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200373 struct timer_list rx_oom;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200374 struct rx_queue rxq[8];
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200375
376 /*
377 * TX state.
378 */
379 int default_tx_ring_size;
380 unsigned long tx_desc_sram_addr;
381 int tx_desc_sram_size;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200382 u8 txq_mask;
383 int txq_primary;
384 struct tx_queue txq[8];
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200385#ifdef MV643XX_ETH_TX_FAST_REFILL
386 int tx_clean_threshold;
387#endif
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200388};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200390
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200391/* port register accessors **************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200392static inline u32 rdl(struct mv643xx_eth_private *mp, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200394 return readl(mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
Lennert Buytenheke5371492008-06-01 02:18:13 +0200397static inline void wrl(struct mv643xx_eth_private *mp, int offset, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200399 writel(data, mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200402
403/* rxq/txq helper functions *************************************************/
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200404static struct mv643xx_eth_private *rxq_to_mp(struct rx_queue *rxq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200406 return container_of(rxq, struct mv643xx_eth_private, rxq[rxq->index]);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200407}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200409static struct mv643xx_eth_private *txq_to_mp(struct tx_queue *txq)
410{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200411 return container_of(txq, struct mv643xx_eth_private, txq[txq->index]);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200412}
413
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200414static void rxq_enable(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200415{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200416 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200417 wrl(mp, RXQ_COMMAND(mp->port_num), 1 << rxq->index);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200418}
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700419
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200420static void rxq_disable(struct rx_queue *rxq)
421{
422 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200423 u8 mask = 1 << rxq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200424
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200425 wrl(mp, RXQ_COMMAND(mp->port_num), mask << 8);
426 while (rdl(mp, RXQ_COMMAND(mp->port_num)) & mask)
427 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200428}
429
Lennert Buytenhek6b368f62008-07-11 19:38:34 +0200430static void txq_reset_hw_ptr(struct tx_queue *txq)
431{
432 struct mv643xx_eth_private *mp = txq_to_mp(txq);
433 int off = TXQ_CURRENT_DESC_PTR(mp->port_num, txq->index);
434 u32 addr;
435
436 addr = (u32)txq->tx_desc_dma;
437 addr += txq->tx_curr_desc * sizeof(struct tx_desc);
438 wrl(mp, off, addr);
439}
440
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200441static void txq_enable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200442{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200443 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200444 wrl(mp, TXQ_COMMAND(mp->port_num), 1 << txq->index);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200445}
446
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200447static void txq_disable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200448{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200449 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200450 u8 mask = 1 << txq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200451
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200452 wrl(mp, TXQ_COMMAND(mp->port_num), mask << 8);
453 while (rdl(mp, TXQ_COMMAND(mp->port_num)) & mask)
454 udelay(10);
455}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200456
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200457static void __txq_maybe_wake(struct tx_queue *txq)
458{
459 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200460
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200461 /*
462 * netif_{stop,wake}_queue() flow control only applies to
463 * the primary queue.
464 */
465 BUG_ON(txq->index != mp->txq_primary);
466
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200467 if (txq->tx_ring_size - txq->tx_desc_count >= MAX_DESCS_PER_SKB)
468 netif_wake_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200469}
470
471
472/* rx ***********************************************************************/
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200473static void txq_reclaim(struct tx_queue *txq, int force);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200474
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200475static int rxq_refill(struct rx_queue *rxq, int budget, int *oom)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200476{
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200477 int skb_size;
478 int refilled;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200479
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200480 /*
481 * Reserve 2+14 bytes for an ethernet header (the hardware
482 * automatically prepends 2 bytes of dummy data to each
483 * received packet), 16 bytes for up to four VLAN tags, and
484 * 4 bytes for the trailing FCS -- 36 bytes total.
485 */
486 skb_size = rxq_to_mp(rxq)->dev->mtu + 36;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200487
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200488 /*
489 * Make sure that the skb size is a multiple of 8 bytes, as
490 * the lower three bits of the receive descriptor's buffer
491 * size field are ignored by the hardware.
492 */
493 skb_size = (skb_size + 7) & ~7;
494
495 refilled = 0;
496 while (refilled < budget && rxq->rx_desc_count < rxq->rx_ring_size) {
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200497 struct sk_buff *skb;
498 int unaligned;
499 int rx;
500
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200501 skb = dev_alloc_skb(skb_size + dma_get_cache_alignment() - 1);
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200502 if (skb == NULL) {
503 *oom = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200505 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200506
Ralf Baechle908b6372007-02-26 19:52:06 +0000507 unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700508 if (unaligned)
Ralf Baechle908b6372007-02-26 19:52:06 +0000509 skb_reserve(skb, dma_get_cache_alignment() - unaligned);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200510
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200511 refilled++;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200512 rxq->rx_desc_count++;
Lennert Buytenhek9da78742008-08-23 23:45:28 +0200513
514 rx = rxq->rx_used_desc++;
515 if (rxq->rx_used_desc == rxq->rx_ring_size)
516 rxq->rx_used_desc = 0;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200517
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200518 rxq->rx_desc_area[rx].buf_ptr = dma_map_single(NULL, skb->data,
519 skb_size, DMA_FROM_DEVICE);
520 rxq->rx_desc_area[rx].buf_size = skb_size;
521 rxq->rx_skb[rx] = skb;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200522 wmb();
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200523 rxq->rx_desc_area[rx].cmd_sts = BUFFER_OWNED_BY_DMA |
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200524 RX_ENABLE_INTERRUPT;
525 wmb();
526
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200527 /*
528 * The hardware automatically prepends 2 bytes of
529 * dummy data to each received packet, so that the
530 * IP header ends up 16-byte aligned.
531 */
532 skb_reserve(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200534
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200535 return refilled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200538static int rxq_process(struct rx_queue *rxq, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200540 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
541 struct net_device_stats *stats = &mp->dev->stats;
542 int rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200544 rx = 0;
Lennert Buytenhek9e1f3772008-08-24 02:33:47 +0200545 while (rx < budget && rxq->rx_desc_count) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200546 struct rx_desc *rx_desc;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200547 unsigned int cmd_sts;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200548 struct sk_buff *skb;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200549
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200550 rx_desc = &rxq->rx_desc_area[rxq->rx_curr_desc];
Lennert Buytenhek96587662008-06-01 10:31:56 +0200551
552 cmd_sts = rx_desc->cmd_sts;
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200553 if (cmd_sts & BUFFER_OWNED_BY_DMA)
Lennert Buytenhek96587662008-06-01 10:31:56 +0200554 break;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200555 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
Lennert Buytenhek3a499482008-08-24 07:19:48 +0200564 dma_unmap_single(NULL, rx_desc->buf_ptr,
Lennert Buytenhekabe78712008-08-24 03:00:20 +0200565 rx_desc->buf_size, DMA_FROM_DEVICE);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200566 rxq->rx_desc_count--;
567 rx++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700568
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700569 /*
570 * Update statistics.
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200571 *
572 * Note that the descriptor byte count includes 2 dummy
573 * bytes automatically inserted by the hardware at the
574 * start of the packet (which we don't count), and a 4
575 * byte CRC at the end of the packet (which we do count).
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 stats->rx_packets++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200578 stats->rx_bytes += rx_desc->byte_cnt - 2;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200581 * In case we received a packet without first / last bits
582 * on, or the error summary bit is set, the packet needs
583 * to be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
Lennert Buytenhek96587662008-06-01 10:31:56 +0200585 if (((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200586 (RX_FIRST_DESC | RX_LAST_DESC))
Lennert Buytenhek96587662008-06-01 10:31:56 +0200587 || (cmd_sts & ERROR_SUMMARY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 stats->rx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200589
Lennert Buytenhek96587662008-06-01 10:31:56 +0200590 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200591 (RX_FIRST_DESC | RX_LAST_DESC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (net_ratelimit())
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200593 dev_printk(KERN_ERR, &mp->dev->dev,
594 "received packet spanning "
595 "multiple descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200597
Lennert Buytenhek96587662008-06-01 10:31:56 +0200598 if (cmd_sts & ERROR_SUMMARY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 stats->rx_errors++;
600
Lennert Buytenhek78fff832008-08-24 01:03:57 +0200601 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 } else {
603 /*
604 * The -4 is for the CRC in the trailer of the
605 * received packet
606 */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200607 skb_put(skb, rx_desc->byte_cnt - 2 - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Lennert Buytenhek96587662008-06-01 10:31:56 +0200609 if (cmd_sts & LAYER_4_CHECKSUM_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 skb->ip_summed = CHECKSUM_UNNECESSARY;
611 skb->csum = htons(
Lennert Buytenhek96587662008-06-01 10:31:56 +0200612 (cmd_sts & 0x0007fff8) >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200614 skb->protocol = eth_type_trans(skb, mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200617
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200618 mp->dev->last_rx = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200620
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200621 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Lennert Buytenheke5371492008-06-01 02:18:13 +0200624static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200626 struct mv643xx_eth_private *mp;
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200627 int work_done;
628 int oom;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200629 int i;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200630
631 mp = container_of(napi, struct mv643xx_eth_private, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Lennert Buytenheke5371492008-06-01 02:18:13 +0200633#ifdef MV643XX_ETH_TX_FAST_REFILL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (++mp->tx_clean_threshold > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 mp->tx_clean_threshold = 0;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200636 for (i = 0; i < 8; i++)
637 if (mp->txq_mask & (1 << i))
638 txq_reclaim(mp->txq + i, 0);
Lennert Buytenhek4dfc1c82008-07-15 13:34:51 +0200639
640 if (netif_carrier_ok(mp->dev)) {
Lennert Buytenhek8e0b1bf2008-08-24 02:30:42 +0200641 spin_lock_irq(&mp->lock);
Lennert Buytenhek4dfc1c82008-07-15 13:34:51 +0200642 __txq_maybe_wake(mp->txq + mp->txq_primary);
Lennert Buytenhek8e0b1bf2008-08-24 02:30:42 +0200643 spin_unlock_irq(&mp->lock);
Lennert Buytenhek4dfc1c82008-07-15 13:34:51 +0200644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646#endif
647
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200648 work_done = 0;
649 oom = 0;
650 for (i = 7; work_done < budget && i >= 0; i--) {
651 if (mp->rxq_mask & (1 << i)) {
652 struct rx_queue *rxq = mp->rxq + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200654 work_done += rxq_process(rxq, budget - work_done);
655 work_done += rxq_refill(rxq, budget - work_done, &oom);
656 }
657 }
658
659 if (work_done < budget) {
660 if (oom)
661 mod_timer(&mp->rx_oom, jiffies + (HZ / 10));
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200662 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 Buytenhek2257e052008-08-24 04:33:36 +0200666 return work_done;
667}
668
669static inline void oom_timer_wrapper(unsigned long data)
670{
671 struct mv643xx_eth_private *mp = (void *)data;
672
673 napi_schedule(&mp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200676
677/* tx ***********************************************************************/
Paul Janzenf7ea3332006-01-16 16:52:13 -0700678static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
679{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200680 int frag;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700681
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700682 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200683 skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
684 if (fragp->size <= 8 && fragp->page_offset & 7)
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700685 return 1;
686 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200687
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700688 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700689}
690
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200691static int txq_alloc_desc_index(struct tx_queue *txq)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700692{
693 int tx_desc_curr;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700694
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200695 BUG_ON(txq->tx_desc_count >= txq->tx_ring_size);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700696
Lennert Buytenhek9da78742008-08-23 23:45:28 +0200697 tx_desc_curr = txq->tx_curr_desc++;
698 if (txq->tx_curr_desc == txq->tx_ring_size)
699 txq->tx_curr_desc = 0;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700700
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200701 BUG_ON(txq->tx_curr_desc == txq->tx_used_desc);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700702
703 return tx_desc_curr;
704}
705
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200706static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700707{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200708 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700709 int frag;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700710
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200711 for (frag = 0; frag < nr_frags; frag++) {
712 skb_frag_t *this_frag;
713 int tx_index;
714 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700715
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200716 this_frag = &skb_shinfo(skb)->frags[frag];
717 tx_index = txq_alloc_desc_index(txq);
718 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700719
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200720 /*
721 * The last fragment will generate an interrupt
722 * which will free the skb on TX completion.
723 */
724 if (frag == nr_frags - 1) {
725 desc->cmd_sts = BUFFER_OWNED_BY_DMA |
726 ZERO_PADDING | TX_LAST_DESC |
727 TX_ENABLE_INTERRUPT;
728 txq->tx_skb[tx_index] = skb;
729 } else {
730 desc->cmd_sts = BUFFER_OWNED_BY_DMA;
731 txq->tx_skb[tx_index] = NULL;
732 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700733
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700734 desc->l4i_chk = 0;
735 desc->byte_cnt = this_frag->size;
736 desc->buf_ptr = dma_map_page(NULL, this_frag->page,
737 this_frag->page_offset,
738 this_frag->size,
739 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700740 }
741}
742
Byron Bradley324ff2c2008-02-04 23:47:15 -0800743static inline __be16 sum16_as_be(__sum16 sum)
744{
745 return (__force __be16)sum;
746}
747
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200748static void txq_submit_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700749{
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200750 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200751 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700752 int tx_index;
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200753 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700754 u32 cmd_sts;
755 int length;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700756
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200757 cmd_sts = TX_FIRST_DESC | GEN_CRC | BUFFER_OWNED_BY_DMA;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700758
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200759 tx_index = txq_alloc_desc_index(txq);
760 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700761
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700762 if (nr_frags) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200763 txq_submit_frag_skb(txq, skb);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700764
765 length = skb_headlen(skb);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200766 txq->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700767 } else {
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200768 cmd_sts |= ZERO_PADDING | TX_LAST_DESC | TX_ENABLE_INTERRUPT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700769 length = skb->len;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200770 txq->tx_skb[tx_index] = skb;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700771 }
772
773 desc->byte_cnt = length;
774 desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700775
Patrick McHardy84fa7932006-08-29 16:44:56 -0700776 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Lennert Buytenheke32b6612008-07-24 06:22:59 +0200777 int mac_hdr_len;
778
779 BUG_ON(skb->protocol != htons(ETH_P_IP) &&
780 skb->protocol != htons(ETH_P_8021Q));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700781
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200782 cmd_sts |= GEN_TCP_UDP_CHECKSUM |
783 GEN_IP_V4_CHECKSUM |
784 ip_hdr(skb)->ihl << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700785
Lennert Buytenheke32b6612008-07-24 06:22:59 +0200786 mac_hdr_len = (void *)ip_hdr(skb) - (void *)skb->data;
787 switch (mac_hdr_len - ETH_HLEN) {
788 case 0:
789 break;
790 case 4:
791 cmd_sts |= MAC_HDR_EXTRA_4_BYTES;
792 break;
793 case 8:
794 cmd_sts |= MAC_HDR_EXTRA_8_BYTES;
795 break;
796 case 12:
797 cmd_sts |= MAC_HDR_EXTRA_4_BYTES;
798 cmd_sts |= MAC_HDR_EXTRA_8_BYTES;
799 break;
800 default:
801 if (net_ratelimit())
802 dev_printk(KERN_ERR, &txq_to_mp(txq)->dev->dev,
803 "mac header length is %d?!\n", mac_hdr_len);
804 break;
805 }
806
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700807 switch (ip_hdr(skb)->protocol) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700808 case IPPROTO_UDP:
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200809 cmd_sts |= UDP_FRAME;
Byron Bradley324ff2c2008-02-04 23:47:15 -0800810 desc->l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700811 break;
812 case IPPROTO_TCP:
Byron Bradley324ff2c2008-02-04 23:47:15 -0800813 desc->l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700814 break;
815 default:
816 BUG();
817 }
818 } else {
819 /* Errata BTS #50, IHL must be 5 if no HW checksum */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200820 cmd_sts |= 5 << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700821 desc->l4i_chk = 0;
822 }
823
824 /* ensure all other descriptors are written before first cmd_sts */
825 wmb();
826 desc->cmd_sts = cmd_sts;
827
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200828 /* clear TX_END interrupt status */
829 wrl(mp, INT_CAUSE(mp->port_num), ~(INT_TX_END_0 << txq->index));
830 rdl(mp, INT_CAUSE(mp->port_num));
831
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700832 /* ensure all descriptors are written before poking hardware */
833 wmb();
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200834 txq_enable(txq);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700835
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200836 txq->tx_desc_count += nr_frags + 1;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700837}
838
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200839static int mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200841 struct mv643xx_eth_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700842 struct net_device_stats *stats = &dev->stats;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200843 struct tx_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700846 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
847 stats->tx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200848 dev_printk(KERN_DEBUG, &dev->dev,
849 "failed to linearize skb with tiny "
850 "unaligned fragment\n");
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700851 return NETDEV_TX_BUSY;
Dale Farnsworth94843562006-04-11 18:24:26 -0700852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 spin_lock_irqsave(&mp->lock, flags);
855
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200856 txq = mp->txq + mp->txq_primary;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200857
858 if (txq->tx_ring_size - txq->tx_desc_count < MAX_DESCS_PER_SKB) {
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700859 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200860 if (txq->index == mp->txq_primary && net_ratelimit())
861 dev_printk(KERN_ERR, &dev->dev,
862 "primary tx queue full?!\n");
863 kfree_skb(skb);
864 return NETDEV_TX_OK;
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700865 }
866
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200867 txq_submit_skb(txq, skb);
Dale Farnsworthe7e381f2007-09-14 11:23:16 -0700868 stats->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 stats->tx_packets++;
870 dev->trans_start = jiffies;
871
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200872 if (txq->index == mp->txq_primary) {
873 int entries_left;
874
875 entries_left = txq->tx_ring_size - txq->tx_desc_count;
876 if (entries_left < MAX_DESCS_PER_SKB)
877 netif_stop_queue(dev);
878 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 spin_unlock_irqrestore(&mp->lock, flags);
881
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700882 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200885
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200886/* tx rate control **********************************************************/
887/*
888 * Set total maximum TX rate (shared by all TX queues for this port)
889 * to 'rate' bits per second, with a maximum burst of 'burst' bytes.
890 */
891static void tx_set_rate(struct mv643xx_eth_private *mp, int rate, int burst)
892{
893 int token_rate;
894 int mtu;
895 int bucket_size;
896
897 token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
898 if (token_rate > 1023)
899 token_rate = 1023;
900
901 mtu = (mp->dev->mtu + 255) >> 8;
902 if (mtu > 63)
903 mtu = 63;
904
905 bucket_size = (burst + 255) >> 8;
906 if (bucket_size > 65535)
907 bucket_size = 65535;
908
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200909 if (mp->shared->tx_bw_control_moved) {
910 wrl(mp, TX_BW_RATE_MOVED(mp->port_num), token_rate);
911 wrl(mp, TX_BW_MTU_MOVED(mp->port_num), mtu);
912 wrl(mp, TX_BW_BURST_MOVED(mp->port_num), bucket_size);
913 } else {
914 wrl(mp, TX_BW_RATE(mp->port_num), token_rate);
915 wrl(mp, TX_BW_MTU(mp->port_num), mtu);
916 wrl(mp, TX_BW_BURST(mp->port_num), bucket_size);
917 }
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200918}
919
920static void txq_set_rate(struct tx_queue *txq, int rate, int burst)
921{
922 struct mv643xx_eth_private *mp = txq_to_mp(txq);
923 int token_rate;
924 int bucket_size;
925
926 token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
927 if (token_rate > 1023)
928 token_rate = 1023;
929
930 bucket_size = (burst + 255) >> 8;
931 if (bucket_size > 65535)
932 bucket_size = 65535;
933
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200934 wrl(mp, TXQ_BW_TOKENS(mp->port_num, txq->index), token_rate << 14);
935 wrl(mp, TXQ_BW_CONF(mp->port_num, txq->index),
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200936 (bucket_size << 10) | token_rate);
937}
938
939static void txq_set_fixed_prio_mode(struct tx_queue *txq)
940{
941 struct mv643xx_eth_private *mp = txq_to_mp(txq);
942 int off;
943 u32 val;
944
945 /*
946 * Turn on fixed priority mode.
947 */
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200948 if (mp->shared->tx_bw_control_moved)
949 off = TXQ_FIX_PRIO_CONF_MOVED(mp->port_num);
950 else
951 off = TXQ_FIX_PRIO_CONF(mp->port_num);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200952
953 val = rdl(mp, off);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200954 val |= 1 << txq->index;
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200955 wrl(mp, off, val);
956}
957
958static void txq_set_wrr(struct tx_queue *txq, int weight)
959{
960 struct mv643xx_eth_private *mp = txq_to_mp(txq);
961 int off;
962 u32 val;
963
964 /*
965 * Turn off fixed priority mode.
966 */
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200967 if (mp->shared->tx_bw_control_moved)
968 off = TXQ_FIX_PRIO_CONF_MOVED(mp->port_num);
969 else
970 off = TXQ_FIX_PRIO_CONF(mp->port_num);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200971
972 val = rdl(mp, off);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200973 val &= ~(1 << txq->index);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200974 wrl(mp, off, val);
975
976 /*
977 * Configure WRR weight for this queue.
978 */
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200979 off = TXQ_BW_WRR_CONF(mp->port_num, txq->index);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200980
981 val = rdl(mp, off);
982 val = (val & ~0xff) | (weight & 0xff);
983 wrl(mp, off, val);
984}
985
986
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200987/* mii management interface *************************************************/
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +0200988static irqreturn_t mv643xx_eth_err_irq(int irq, void *dev_id)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200989{
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +0200990 struct mv643xx_eth_shared_private *msp = dev_id;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200991
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +0200992 if (readl(msp->base + ERR_INT_CAUSE) & ERR_INT_SMI_DONE) {
993 writel(~ERR_INT_SMI_DONE, msp->base + ERR_INT_CAUSE);
994 wake_up(&msp->smi_busy_wait);
995 return IRQ_HANDLED;
996 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200997
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +0200998 return IRQ_NONE;
999}
1000
1001static int smi_is_done(struct mv643xx_eth_shared_private *msp)
1002{
1003 return !(readl(msp->base + SMI_REG) & SMI_BUSY);
1004}
1005
1006static int smi_wait_ready(struct mv643xx_eth_shared_private *msp)
1007{
1008 if (msp->err_interrupt == NO_IRQ) {
1009 int i;
1010
1011 for (i = 0; !smi_is_done(msp); i++) {
1012 if (i == 10)
1013 return -ETIMEDOUT;
1014 msleep(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001015 }
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001016
1017 return 0;
1018 }
1019
1020 if (!wait_event_timeout(msp->smi_busy_wait, smi_is_done(msp),
1021 msecs_to_jiffies(100)))
1022 return -ETIMEDOUT;
1023
1024 return 0;
1025}
1026
1027static int smi_reg_read(struct mv643xx_eth_private *mp,
1028 unsigned int addr, unsigned int reg)
1029{
1030 struct mv643xx_eth_shared_private *msp = mp->shared_smi;
1031 void __iomem *smi_reg = msp->base + SMI_REG;
1032 int ret;
1033
1034 mutex_lock(&msp->phy_lock);
1035
1036 if (smi_wait_ready(msp)) {
1037 printk("%s: SMI bus busy timeout\n", mp->dev->name);
1038 ret = -ETIMEDOUT;
1039 goto out;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001040 }
1041
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001042 writel(SMI_OPCODE_READ | (reg << 21) | (addr << 16), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001043
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001044 if (smi_wait_ready(msp)) {
1045 printk("%s: SMI bus busy timeout\n", mp->dev->name);
1046 ret = -ETIMEDOUT;
1047 goto out;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001048 }
1049
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001050 ret = readl(smi_reg);
1051 if (!(ret & SMI_READ_VALID)) {
1052 printk("%s: SMI bus read not valid\n", mp->dev->name);
1053 ret = -ENODEV;
1054 goto out;
1055 }
1056
1057 ret &= 0xffff;
1058
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001059out:
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001060 mutex_unlock(&msp->phy_lock);
1061
1062 return ret;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001063}
1064
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001065static int smi_reg_write(struct mv643xx_eth_private *mp, unsigned int addr,
1066 unsigned int reg, unsigned int value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001067{
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001068 struct mv643xx_eth_shared_private *msp = mp->shared_smi;
1069 void __iomem *smi_reg = msp->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001070
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001071 mutex_lock(&msp->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001072
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001073 if (smi_wait_ready(msp)) {
1074 printk("%s: SMI bus busy timeout\n", mp->dev->name);
1075 mutex_unlock(&msp->phy_lock);
1076 return -ETIMEDOUT;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001077 }
1078
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001079 writel(SMI_OPCODE_WRITE | (reg << 21) |
1080 (addr << 16) | (value & 0xffff), smi_reg);
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001081
1082 mutex_unlock(&msp->phy_lock);
1083
1084 return 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001085}
1086
1087
1088/* mib counters *************************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001089static inline u32 mib_read(struct mv643xx_eth_private *mp, int offset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001090{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001091 return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001092}
1093
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001094static void mib_counters_clear(struct mv643xx_eth_private *mp)
1095{
1096 int i;
1097
1098 for (i = 0; i < 0x80; i += 4)
1099 mib_read(mp, i);
1100}
1101
1102static void mib_counters_update(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001103{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001104 struct mib_counters *p = &mp->mib_counters;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001105
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001106 p->good_octets_received += mib_read(mp, 0x00);
1107 p->good_octets_received += (u64)mib_read(mp, 0x04) << 32;
1108 p->bad_octets_received += mib_read(mp, 0x08);
1109 p->internal_mac_transmit_err += mib_read(mp, 0x0c);
1110 p->good_frames_received += mib_read(mp, 0x10);
1111 p->bad_frames_received += mib_read(mp, 0x14);
1112 p->broadcast_frames_received += mib_read(mp, 0x18);
1113 p->multicast_frames_received += mib_read(mp, 0x1c);
1114 p->frames_64_octets += mib_read(mp, 0x20);
1115 p->frames_65_to_127_octets += mib_read(mp, 0x24);
1116 p->frames_128_to_255_octets += mib_read(mp, 0x28);
1117 p->frames_256_to_511_octets += mib_read(mp, 0x2c);
1118 p->frames_512_to_1023_octets += mib_read(mp, 0x30);
1119 p->frames_1024_to_max_octets += mib_read(mp, 0x34);
1120 p->good_octets_sent += mib_read(mp, 0x38);
1121 p->good_octets_sent += (u64)mib_read(mp, 0x3c) << 32;
1122 p->good_frames_sent += mib_read(mp, 0x40);
1123 p->excessive_collision += mib_read(mp, 0x44);
1124 p->multicast_frames_sent += mib_read(mp, 0x48);
1125 p->broadcast_frames_sent += mib_read(mp, 0x4c);
1126 p->unrec_mac_control_received += mib_read(mp, 0x50);
1127 p->fc_sent += mib_read(mp, 0x54);
1128 p->good_fc_received += mib_read(mp, 0x58);
1129 p->bad_fc_received += mib_read(mp, 0x5c);
1130 p->undersize_received += mib_read(mp, 0x60);
1131 p->fragments_received += mib_read(mp, 0x64);
1132 p->oversize_received += mib_read(mp, 0x68);
1133 p->jabber_received += mib_read(mp, 0x6c);
1134 p->mac_receive_error += mib_read(mp, 0x70);
1135 p->bad_crc_event += mib_read(mp, 0x74);
1136 p->collision += mib_read(mp, 0x78);
1137 p->late_collision += mib_read(mp, 0x7c);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001138}
1139
1140
1141/* ethtool ******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02001142struct mv643xx_eth_stats {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001143 char stat_string[ETH_GSTRING_LEN];
1144 int sizeof_stat;
Lennert Buytenhek16820052008-06-01 11:40:29 +02001145 int netdev_off;
1146 int mp_off;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001147};
1148
Lennert Buytenhek16820052008-06-01 11:40:29 +02001149#define SSTAT(m) \
1150 { #m, FIELD_SIZEOF(struct net_device_stats, m), \
1151 offsetof(struct net_device, stats.m), -1 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001152
Lennert Buytenhek16820052008-06-01 11:40:29 +02001153#define MIBSTAT(m) \
1154 { #m, FIELD_SIZEOF(struct mib_counters, m), \
1155 -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
1156
1157static const struct mv643xx_eth_stats mv643xx_eth_stats[] = {
1158 SSTAT(rx_packets),
1159 SSTAT(tx_packets),
1160 SSTAT(rx_bytes),
1161 SSTAT(tx_bytes),
1162 SSTAT(rx_errors),
1163 SSTAT(tx_errors),
1164 SSTAT(rx_dropped),
1165 SSTAT(tx_dropped),
1166 MIBSTAT(good_octets_received),
1167 MIBSTAT(bad_octets_received),
1168 MIBSTAT(internal_mac_transmit_err),
1169 MIBSTAT(good_frames_received),
1170 MIBSTAT(bad_frames_received),
1171 MIBSTAT(broadcast_frames_received),
1172 MIBSTAT(multicast_frames_received),
1173 MIBSTAT(frames_64_octets),
1174 MIBSTAT(frames_65_to_127_octets),
1175 MIBSTAT(frames_128_to_255_octets),
1176 MIBSTAT(frames_256_to_511_octets),
1177 MIBSTAT(frames_512_to_1023_octets),
1178 MIBSTAT(frames_1024_to_max_octets),
1179 MIBSTAT(good_octets_sent),
1180 MIBSTAT(good_frames_sent),
1181 MIBSTAT(excessive_collision),
1182 MIBSTAT(multicast_frames_sent),
1183 MIBSTAT(broadcast_frames_sent),
1184 MIBSTAT(unrec_mac_control_received),
1185 MIBSTAT(fc_sent),
1186 MIBSTAT(good_fc_received),
1187 MIBSTAT(bad_fc_received),
1188 MIBSTAT(undersize_received),
1189 MIBSTAT(fragments_received),
1190 MIBSTAT(oversize_received),
1191 MIBSTAT(jabber_received),
1192 MIBSTAT(mac_receive_error),
1193 MIBSTAT(bad_crc_event),
1194 MIBSTAT(collision),
1195 MIBSTAT(late_collision),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001196};
1197
Lennert Buytenheke5371492008-06-01 02:18:13 +02001198static int mv643xx_eth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001199{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001200 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001201 int err;
1202
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001203 err = mii_ethtool_gset(&mp->mii, cmd);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001204
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001205 /*
1206 * The MAC does not support 1000baseT_Half.
1207 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001208 cmd->supported &= ~SUPPORTED_1000baseT_Half;
1209 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1210
1211 return err;
1212}
1213
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001214static int mv643xx_eth_get_settings_phyless(struct net_device *dev, struct ethtool_cmd *cmd)
1215{
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001216 struct mv643xx_eth_private *mp = netdev_priv(dev);
1217 u32 port_status;
1218
1219 port_status = rdl(mp, PORT_STATUS(mp->port_num));
1220
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001221 cmd->supported = SUPPORTED_MII;
1222 cmd->advertising = ADVERTISED_MII;
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001223 switch (port_status & PORT_SPEED_MASK) {
1224 case PORT_SPEED_10:
1225 cmd->speed = SPEED_10;
1226 break;
1227 case PORT_SPEED_100:
1228 cmd->speed = SPEED_100;
1229 break;
1230 case PORT_SPEED_1000:
1231 cmd->speed = SPEED_1000;
1232 break;
1233 default:
1234 cmd->speed = -1;
1235 break;
1236 }
1237 cmd->duplex = (port_status & FULL_DUPLEX) ? DUPLEX_FULL : DUPLEX_HALF;
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001238 cmd->port = PORT_MII;
1239 cmd->phy_address = 0;
1240 cmd->transceiver = XCVR_INTERNAL;
1241 cmd->autoneg = AUTONEG_DISABLE;
1242 cmd->maxtxpkt = 1;
1243 cmd->maxrxpkt = 1;
1244
1245 return 0;
1246}
1247
Lennert Buytenheke5371492008-06-01 02:18:13 +02001248static int mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001249{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001250 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001251
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001252 /*
1253 * The MAC does not support 1000baseT_Half.
1254 */
1255 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1256
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +02001257 return mii_ethtool_sset(&mp->mii, cmd);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001258}
1259
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001260static int mv643xx_eth_set_settings_phyless(struct net_device *dev, struct ethtool_cmd *cmd)
1261{
1262 return -EINVAL;
1263}
1264
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001265static void mv643xx_eth_get_drvinfo(struct net_device *dev,
1266 struct ethtool_drvinfo *drvinfo)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001267{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001268 strncpy(drvinfo->driver, mv643xx_eth_driver_name, 32);
1269 strncpy(drvinfo->version, mv643xx_eth_driver_version, 32);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001270 strncpy(drvinfo->fw_version, "N/A", 32);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001271 strncpy(drvinfo->bus_info, "platform", 32);
Lennert Buytenhek16820052008-06-01 11:40:29 +02001272 drvinfo->n_stats = ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001273}
1274
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001275static int mv643xx_eth_nway_reset(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001276{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001277 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001278
1279 return mii_nway_restart(&mp->mii);
1280}
1281
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001282static int mv643xx_eth_nway_reset_phyless(struct net_device *dev)
1283{
1284 return -EINVAL;
1285}
1286
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001287static u32 mv643xx_eth_get_link(struct net_device *dev)
1288{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001289 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001290
1291 return mii_link_ok(&mp->mii);
1292}
1293
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001294static u32 mv643xx_eth_get_link_phyless(struct net_device *dev)
1295{
1296 return 1;
1297}
1298
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001299static void mv643xx_eth_get_strings(struct net_device *dev,
1300 uint32_t stringset, uint8_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001301{
1302 int i;
1303
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001304 if (stringset == ETH_SS_STATS) {
1305 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001306 memcpy(data + i * ETH_GSTRING_LEN,
Lennert Buytenhek16820052008-06-01 11:40:29 +02001307 mv643xx_eth_stats[i].stat_string,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001308 ETH_GSTRING_LEN);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001309 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001310 }
1311}
1312
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001313static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
1314 struct ethtool_stats *stats,
1315 uint64_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001316{
Lennert Buytenhekb9873842008-08-24 05:59:16 +02001317 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001318 int i;
1319
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001320 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001321
Lennert Buytenhek16820052008-06-01 11:40:29 +02001322 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
1323 const struct mv643xx_eth_stats *stat;
1324 void *p;
1325
1326 stat = mv643xx_eth_stats + i;
1327
1328 if (stat->netdev_off >= 0)
1329 p = ((void *)mp->dev) + stat->netdev_off;
1330 else
1331 p = ((void *)mp) + stat->mp_off;
1332
1333 data[i] = (stat->sizeof_stat == 8) ?
1334 *(uint64_t *)p : *(uint32_t *)p;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001335 }
1336}
1337
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001338static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001339{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001340 if (sset == ETH_SS_STATS)
Lennert Buytenhek16820052008-06-01 11:40:29 +02001341 return ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001342
1343 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001344}
1345
Lennert Buytenheke5371492008-06-01 02:18:13 +02001346static const struct ethtool_ops mv643xx_eth_ethtool_ops = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001347 .get_settings = mv643xx_eth_get_settings,
1348 .set_settings = mv643xx_eth_set_settings,
1349 .get_drvinfo = mv643xx_eth_get_drvinfo,
1350 .nway_reset = mv643xx_eth_nway_reset,
1351 .get_link = mv643xx_eth_get_link,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001352 .set_sg = ethtool_op_set_sg,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001353 .get_strings = mv643xx_eth_get_strings,
1354 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001355 .get_sset_count = mv643xx_eth_get_sset_count,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001356};
1357
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001358static const struct ethtool_ops mv643xx_eth_ethtool_ops_phyless = {
1359 .get_settings = mv643xx_eth_get_settings_phyless,
1360 .set_settings = mv643xx_eth_set_settings_phyless,
1361 .get_drvinfo = mv643xx_eth_get_drvinfo,
1362 .nway_reset = mv643xx_eth_nway_reset_phyless,
1363 .get_link = mv643xx_eth_get_link_phyless,
1364 .set_sg = ethtool_op_set_sg,
1365 .get_strings = mv643xx_eth_get_strings,
1366 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
1367 .get_sset_count = mv643xx_eth_get_sset_count,
1368};
1369
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001370
1371/* address handling *********************************************************/
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001372static void uc_addr_get(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001373{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001374 unsigned int mac_h;
1375 unsigned int mac_l;
1376
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001377 mac_h = rdl(mp, MAC_ADDR_HIGH(mp->port_num));
1378 mac_l = rdl(mp, MAC_ADDR_LOW(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001379
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001380 addr[0] = (mac_h >> 24) & 0xff;
1381 addr[1] = (mac_h >> 16) & 0xff;
1382 addr[2] = (mac_h >> 8) & 0xff;
1383 addr[3] = mac_h & 0xff;
1384 addr[4] = (mac_l >> 8) & 0xff;
1385 addr[5] = mac_l & 0xff;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001386}
1387
Lennert Buytenheke5371492008-06-01 02:18:13 +02001388static void init_mac_tables(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001389{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001390 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001391
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001392 for (i = 0; i < 0x100; i += 4) {
1393 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1394 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001395 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001396
1397 for (i = 0; i < 0x10; i += 4)
1398 wrl(mp, UNICAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001399}
1400
Lennert Buytenheke5371492008-06-01 02:18:13 +02001401static void set_filter_table_entry(struct mv643xx_eth_private *mp,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001402 int table, unsigned char entry)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001403{
1404 unsigned int table_reg;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001405
1406 /* Set "accepts frame bit" at specified table entry */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001407 table_reg = rdl(mp, table + (entry & 0xfc));
1408 table_reg |= 0x01 << (8 * (entry & 3));
1409 wrl(mp, table + (entry & 0xfc), table_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001410}
1411
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001412static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001413{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001414 unsigned int mac_h;
1415 unsigned int mac_l;
1416 int table;
1417
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001418 mac_l = (addr[4] << 8) | addr[5];
1419 mac_h = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001420
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001421 wrl(mp, MAC_ADDR_LOW(mp->port_num), mac_l);
1422 wrl(mp, MAC_ADDR_HIGH(mp->port_num), mac_h);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001423
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001424 table = UNICAST_TABLE(mp->port_num);
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001425 set_filter_table_entry(mp, table, addr[5] & 0x0f);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001426}
1427
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001428static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
1429{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001430 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001431
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001432 /* +2 is for the offset of the HW addr type */
1433 memcpy(dev->dev_addr, addr + 2, 6);
1434
1435 init_mac_tables(mp);
1436 uc_addr_set(mp, dev->dev_addr);
1437
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001438 return 0;
1439}
1440
Lennert Buytenhek69876562008-06-01 11:43:32 +02001441static int addr_crc(unsigned char *addr)
1442{
1443 int crc = 0;
1444 int i;
1445
1446 for (i = 0; i < 6; i++) {
1447 int j;
1448
1449 crc = (crc ^ addr[i]) << 8;
1450 for (j = 7; j >= 0; j--) {
1451 if (crc & (0x100 << j))
1452 crc ^= 0x107 << j;
1453 }
1454 }
1455
1456 return crc;
1457}
1458
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001459static void mv643xx_eth_set_rx_mode(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001460{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001461 struct mv643xx_eth_private *mp = netdev_priv(dev);
1462 u32 port_config;
1463 struct dev_addr_list *addr;
1464 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001465
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001466 port_config = rdl(mp, PORT_CONFIG(mp->port_num));
1467 if (dev->flags & IFF_PROMISC)
1468 port_config |= UNICAST_PROMISCUOUS_MODE;
1469 else
1470 port_config &= ~UNICAST_PROMISCUOUS_MODE;
1471 wrl(mp, PORT_CONFIG(mp->port_num), port_config);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001472
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001473 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
1474 int port_num = mp->port_num;
1475 u32 accept = 0x01010101;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001476
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001477 for (i = 0; i < 0x100; i += 4) {
1478 wrl(mp, SPECIAL_MCAST_TABLE(port_num) + i, accept);
1479 wrl(mp, OTHER_MCAST_TABLE(port_num) + i, accept);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001480 }
1481 return;
1482 }
1483
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001484 for (i = 0; i < 0x100; i += 4) {
1485 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1486 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001487 }
1488
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001489 for (addr = dev->mc_list; addr != NULL; addr = addr->next) {
1490 u8 *a = addr->da_addr;
1491 int table;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001492
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001493 if (addr->da_addrlen != 6)
1494 continue;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001495
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001496 if (memcmp(a, "\x01\x00\x5e\x00\x00", 5) == 0) {
1497 table = SPECIAL_MCAST_TABLE(mp->port_num);
1498 set_filter_table_entry(mp, table, a[5]);
1499 } else {
1500 int crc = addr_crc(a);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001501
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001502 table = OTHER_MCAST_TABLE(mp->port_num);
1503 set_filter_table_entry(mp, table, crc);
1504 }
1505 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001506}
1507
1508
1509/* rx/tx queue initialisation ***********************************************/
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001510static int rxq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001511{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001512 struct rx_queue *rxq = mp->rxq + index;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001513 struct rx_desc *rx_desc;
1514 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001515 int i;
1516
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001517 rxq->index = index;
1518
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001519 rxq->rx_ring_size = mp->default_rx_ring_size;
1520
1521 rxq->rx_desc_count = 0;
1522 rxq->rx_curr_desc = 0;
1523 rxq->rx_used_desc = 0;
1524
1525 size = rxq->rx_ring_size * sizeof(struct rx_desc);
1526
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001527 if (index == mp->rxq_primary && size <= mp->rx_desc_sram_size) {
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001528 rxq->rx_desc_area = ioremap(mp->rx_desc_sram_addr,
1529 mp->rx_desc_sram_size);
1530 rxq->rx_desc_dma = mp->rx_desc_sram_addr;
1531 } else {
1532 rxq->rx_desc_area = dma_alloc_coherent(NULL, size,
1533 &rxq->rx_desc_dma,
1534 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001535 }
1536
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001537 if (rxq->rx_desc_area == NULL) {
1538 dev_printk(KERN_ERR, &mp->dev->dev,
1539 "can't allocate rx ring (%d bytes)\n", size);
1540 goto out;
1541 }
1542 memset(rxq->rx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001543
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001544 rxq->rx_desc_area_size = size;
1545 rxq->rx_skb = kmalloc(rxq->rx_ring_size * sizeof(*rxq->rx_skb),
1546 GFP_KERNEL);
1547 if (rxq->rx_skb == NULL) {
1548 dev_printk(KERN_ERR, &mp->dev->dev,
1549 "can't allocate rx skb ring\n");
1550 goto out_free;
1551 }
1552
1553 rx_desc = (struct rx_desc *)rxq->rx_desc_area;
1554 for (i = 0; i < rxq->rx_ring_size; i++) {
Lennert Buytenhek9da78742008-08-23 23:45:28 +02001555 int nexti;
1556
1557 nexti = i + 1;
1558 if (nexti == rxq->rx_ring_size)
1559 nexti = 0;
1560
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001561 rx_desc[i].next_desc_ptr = rxq->rx_desc_dma +
1562 nexti * sizeof(struct rx_desc);
1563 }
1564
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001565 return 0;
1566
1567
1568out_free:
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001569 if (index == mp->rxq_primary && size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001570 iounmap(rxq->rx_desc_area);
1571 else
1572 dma_free_coherent(NULL, size,
1573 rxq->rx_desc_area,
1574 rxq->rx_desc_dma);
1575
1576out:
1577 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001578}
1579
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001580static void rxq_deinit(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001581{
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001582 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
1583 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001584
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001585 rxq_disable(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001586
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001587 for (i = 0; i < rxq->rx_ring_size; i++) {
1588 if (rxq->rx_skb[i]) {
1589 dev_kfree_skb(rxq->rx_skb[i]);
1590 rxq->rx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001591 }
1592 }
1593
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001594 if (rxq->rx_desc_count) {
1595 dev_printk(KERN_ERR, &mp->dev->dev,
1596 "error freeing rx ring -- %d skbs stuck\n",
1597 rxq->rx_desc_count);
1598 }
1599
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001600 if (rxq->index == mp->rxq_primary &&
1601 rxq->rx_desc_area_size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001602 iounmap(rxq->rx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001603 else
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001604 dma_free_coherent(NULL, rxq->rx_desc_area_size,
1605 rxq->rx_desc_area, rxq->rx_desc_dma);
1606
1607 kfree(rxq->rx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001608}
1609
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001610static int txq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001611{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001612 struct tx_queue *txq = mp->txq + index;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001613 struct tx_desc *tx_desc;
1614 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001615 int i;
1616
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001617 txq->index = index;
1618
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001619 txq->tx_ring_size = mp->default_tx_ring_size;
1620
1621 txq->tx_desc_count = 0;
1622 txq->tx_curr_desc = 0;
1623 txq->tx_used_desc = 0;
1624
1625 size = txq->tx_ring_size * sizeof(struct tx_desc);
1626
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001627 if (index == mp->txq_primary && size <= mp->tx_desc_sram_size) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001628 txq->tx_desc_area = ioremap(mp->tx_desc_sram_addr,
1629 mp->tx_desc_sram_size);
1630 txq->tx_desc_dma = mp->tx_desc_sram_addr;
1631 } else {
1632 txq->tx_desc_area = dma_alloc_coherent(NULL, size,
1633 &txq->tx_desc_dma,
1634 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001635 }
1636
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001637 if (txq->tx_desc_area == NULL) {
1638 dev_printk(KERN_ERR, &mp->dev->dev,
1639 "can't allocate tx ring (%d bytes)\n", size);
1640 goto out;
1641 }
1642 memset(txq->tx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001643
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001644 txq->tx_desc_area_size = size;
1645 txq->tx_skb = kmalloc(txq->tx_ring_size * sizeof(*txq->tx_skb),
1646 GFP_KERNEL);
1647 if (txq->tx_skb == NULL) {
1648 dev_printk(KERN_ERR, &mp->dev->dev,
1649 "can't allocate tx skb ring\n");
1650 goto out_free;
1651 }
1652
1653 tx_desc = (struct tx_desc *)txq->tx_desc_area;
1654 for (i = 0; i < txq->tx_ring_size; i++) {
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001655 struct tx_desc *txd = tx_desc + i;
Lennert Buytenhek9da78742008-08-23 23:45:28 +02001656 int nexti;
1657
1658 nexti = i + 1;
1659 if (nexti == txq->tx_ring_size)
1660 nexti = 0;
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001661
1662 txd->cmd_sts = 0;
1663 txd->next_desc_ptr = txq->tx_desc_dma +
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001664 nexti * sizeof(struct tx_desc);
1665 }
1666
1667 return 0;
1668
1669
1670out_free:
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001671 if (index == mp->txq_primary && size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001672 iounmap(txq->tx_desc_area);
1673 else
1674 dma_free_coherent(NULL, size,
1675 txq->tx_desc_area,
1676 txq->tx_desc_dma);
1677
1678out:
1679 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001680}
1681
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001682static void txq_reclaim(struct tx_queue *txq, int force)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001683{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001684 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001685 unsigned long flags;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001686
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001687 spin_lock_irqsave(&mp->lock, flags);
1688 while (txq->tx_desc_count > 0) {
1689 int tx_index;
1690 struct tx_desc *desc;
1691 u32 cmd_sts;
1692 struct sk_buff *skb;
1693 dma_addr_t addr;
1694 int count;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001695
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001696 tx_index = txq->tx_used_desc;
1697 desc = &txq->tx_desc_area[tx_index];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001698 cmd_sts = desc->cmd_sts;
1699
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001700 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
1701 if (!force)
1702 break;
1703 desc->cmd_sts = cmd_sts & ~BUFFER_OWNED_BY_DMA;
1704 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001705
Lennert Buytenhek9da78742008-08-23 23:45:28 +02001706 txq->tx_used_desc = tx_index + 1;
1707 if (txq->tx_used_desc == txq->tx_ring_size)
1708 txq->tx_used_desc = 0;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001709 txq->tx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001710
1711 addr = desc->buf_ptr;
1712 count = desc->byte_cnt;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001713 skb = txq->tx_skb[tx_index];
1714 txq->tx_skb[tx_index] = NULL;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001715
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001716 if (cmd_sts & ERROR_SUMMARY) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001717 dev_printk(KERN_INFO, &mp->dev->dev, "tx error\n");
1718 mp->dev->stats.tx_errors++;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001719 }
1720
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001721 /*
1722 * Drop mp->lock while we free the skb.
1723 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001724 spin_unlock_irqrestore(&mp->lock, flags);
1725
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001726 if (cmd_sts & TX_FIRST_DESC)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001727 dma_unmap_single(NULL, addr, count, DMA_TO_DEVICE);
1728 else
1729 dma_unmap_page(NULL, addr, count, DMA_TO_DEVICE);
1730
1731 if (skb)
1732 dev_kfree_skb_irq(skb);
1733
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001734 spin_lock_irqsave(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001735 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001736 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001737}
1738
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001739static void txq_deinit(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001740{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001741 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001742
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001743 txq_disable(txq);
1744 txq_reclaim(txq, 1);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001745
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001746 BUG_ON(txq->tx_used_desc != txq->tx_curr_desc);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001747
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001748 if (txq->index == mp->txq_primary &&
1749 txq->tx_desc_area_size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001750 iounmap(txq->tx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001751 else
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001752 dma_free_coherent(NULL, txq->tx_desc_area_size,
1753 txq->tx_desc_area, txq->tx_desc_dma);
1754
1755 kfree(txq->tx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001756}
1757
1758
1759/* netdev ops and related ***************************************************/
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001760static void handle_link_event(struct mv643xx_eth_private *mp)
1761{
1762 struct net_device *dev = mp->dev;
1763 u32 port_status;
1764 int speed;
1765 int duplex;
1766 int fc;
1767
1768 port_status = rdl(mp, PORT_STATUS(mp->port_num));
1769 if (!(port_status & LINK_UP)) {
1770 if (netif_carrier_ok(dev)) {
1771 int i;
1772
1773 printk(KERN_INFO "%s: link down\n", dev->name);
1774
1775 netif_carrier_off(dev);
1776 netif_stop_queue(dev);
1777
1778 for (i = 0; i < 8; i++) {
1779 struct tx_queue *txq = mp->txq + i;
1780
1781 if (mp->txq_mask & (1 << i)) {
1782 txq_reclaim(txq, 1);
1783 txq_reset_hw_ptr(txq);
1784 }
1785 }
1786 }
1787 return;
1788 }
1789
1790 switch (port_status & PORT_SPEED_MASK) {
1791 case PORT_SPEED_10:
1792 speed = 10;
1793 break;
1794 case PORT_SPEED_100:
1795 speed = 100;
1796 break;
1797 case PORT_SPEED_1000:
1798 speed = 1000;
1799 break;
1800 default:
1801 speed = -1;
1802 break;
1803 }
1804 duplex = (port_status & FULL_DUPLEX) ? 1 : 0;
1805 fc = (port_status & FLOW_CONTROL_ENABLED) ? 1 : 0;
1806
1807 printk(KERN_INFO "%s: link up, %d Mb/s, %s duplex, "
1808 "flow control %sabled\n", dev->name,
1809 speed, duplex ? "full" : "half",
1810 fc ? "en" : "dis");
1811
1812 if (!netif_carrier_ok(dev)) {
1813 netif_carrier_on(dev);
1814 netif_wake_queue(dev);
1815 }
1816}
1817
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001818static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001819{
1820 struct net_device *dev = (struct net_device *)dev_id;
Lennert Buytenheke5371492008-06-01 02:18:13 +02001821 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001822 u32 int_cause;
1823 u32 int_cause_ext;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001824
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001825 int_cause = rdl(mp, INT_CAUSE(mp->port_num)) &
1826 (INT_TX_END | INT_RX | INT_EXT);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001827 if (int_cause == 0)
1828 return IRQ_NONE;
1829
1830 int_cause_ext = 0;
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001831 if (int_cause & INT_EXT) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001832 int_cause_ext = rdl(mp, INT_CAUSE_EXT(mp->port_num))
Lennert Buytenhek073a3452008-06-01 02:00:31 +02001833 & (INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001834 wrl(mp, INT_CAUSE_EXT(mp->port_num), ~int_cause_ext);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001835 }
1836
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001837 if (int_cause_ext & (INT_EXT_PHY | INT_EXT_LINK))
1838 handle_link_event(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001839
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001840 /*
1841 * RxBuffer or RxError set for any of the 8 queues?
1842 */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001843 if (int_cause & INT_RX) {
Lennert Buytenhek819ddca2008-08-24 02:45:32 +02001844 wrl(mp, INT_CAUSE(mp->port_num), ~(int_cause & INT_RX));
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001845 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001846 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001847
Lennert Buytenhek2257e052008-08-24 04:33:36 +02001848 napi_schedule(&mp->napi);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001849 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001850
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001851 /*
1852 * TxBuffer or TxError set for any of the 8 queues?
1853 */
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001854 if (int_cause_ext & INT_EXT_TX) {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001855 int i;
1856
1857 for (i = 0; i < 8; i++)
1858 if (mp->txq_mask & (1 << i))
1859 txq_reclaim(mp->txq + i, 0);
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001860
1861 /*
1862 * Enough space again in the primary TX queue for a
1863 * full packet?
1864 */
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001865 if (netif_carrier_ok(dev)) {
1866 spin_lock(&mp->lock);
1867 __txq_maybe_wake(mp->txq + mp->txq_primary);
1868 spin_unlock(&mp->lock);
1869 }
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001870 }
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001871
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001872 /*
1873 * Any TxEnd interrupts?
1874 */
1875 if (int_cause & INT_TX_END) {
1876 int i;
1877
1878 wrl(mp, INT_CAUSE(mp->port_num), ~(int_cause & INT_TX_END));
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001879
1880 spin_lock(&mp->lock);
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001881 for (i = 0; i < 8; i++) {
1882 struct tx_queue *txq = mp->txq + i;
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001883 u32 hw_desc_ptr;
1884 u32 expected_ptr;
1885
1886 if ((int_cause & (INT_TX_END_0 << i)) == 0)
1887 continue;
1888
1889 hw_desc_ptr =
1890 rdl(mp, TXQ_CURRENT_DESC_PTR(mp->port_num, i));
1891 expected_ptr = (u32)txq->tx_desc_dma +
1892 txq->tx_curr_desc * sizeof(struct tx_desc);
1893
1894 if (hw_desc_ptr != expected_ptr)
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001895 txq_enable(txq);
1896 }
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001897 spin_unlock(&mp->lock);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001898 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001899
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001900 return IRQ_HANDLED;
1901}
1902
Lennert Buytenheke5371492008-06-01 02:18:13 +02001903static void phy_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001904{
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001905 int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001906
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001907 data = smi_reg_read(mp, mp->phy_addr, MII_BMCR);
1908 if (data < 0)
1909 return;
1910
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02001911 data |= BMCR_RESET;
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001912 if (smi_reg_write(mp, mp->phy_addr, MII_BMCR, data) < 0)
1913 return;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001914
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001915 do {
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02001916 data = smi_reg_read(mp, mp->phy_addr, MII_BMCR);
1917 } while (data >= 0 && data & BMCR_RESET);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001918}
1919
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001920static void port_start(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001921{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001922 u32 pscr;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001923 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001924
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001925 /*
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001926 * Perform PHY reset, if there is a PHY.
1927 */
1928 if (mp->phy_addr != -1) {
1929 struct ethtool_cmd cmd;
1930
1931 mv643xx_eth_get_settings(mp->dev, &cmd);
1932 phy_reset(mp);
1933 mv643xx_eth_set_settings(mp->dev, &cmd);
1934 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001935
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001936 /*
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001937 * Configure basic link parameters.
1938 */
1939 pscr = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
1940
1941 pscr |= SERIAL_PORT_ENABLE;
1942 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1943
1944 pscr |= DO_NOT_FORCE_LINK_FAIL;
1945 if (mp->phy_addr == -1)
1946 pscr |= FORCE_LINK_PASS;
1947 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1948
1949 wrl(mp, SDMA_CONFIG(mp->port_num), PORT_SDMA_CONFIG_DEFAULT_VALUE);
1950
1951 /*
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001952 * Configure TX path and queues.
1953 */
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001954 tx_set_rate(mp, 1000000000, 16777216);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001955 for (i = 0; i < 8; i++) {
1956 struct tx_queue *txq = mp->txq + i;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001957
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001958 if ((mp->txq_mask & (1 << i)) == 0)
1959 continue;
1960
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001961 txq_reset_hw_ptr(txq);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001962 txq_set_rate(txq, 1000000000, 16777216);
1963 txq_set_fixed_prio_mode(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001964 }
1965
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001966 /*
1967 * Add configured unicast address to address filter table.
1968 */
1969 uc_addr_set(mp, mp->dev->dev_addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001970
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02001971 /*
1972 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
1973 * frames to RX queue #0.
1974 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001975 wrl(mp, PORT_CONFIG(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001976
Lennert Buytenhek376489a2008-06-01 01:17:44 +02001977 /*
1978 * Treat BPDUs as normal multicasts, and disable partition mode.
1979 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001980 wrl(mp, PORT_CONFIG_EXT(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001981
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001982 /*
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001983 * Enable the receive queues.
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001984 */
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001985 for (i = 0; i < 8; i++) {
1986 struct rx_queue *rxq = mp->rxq + i;
1987 int off = RXQ_CURRENT_DESC_PTR(mp->port_num, i);
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001988 u32 addr;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001989
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001990 if ((mp->rxq_mask & (1 << i)) == 0)
1991 continue;
1992
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001993 addr = (u32)rxq->rx_desc_dma;
1994 addr += rxq->rx_curr_desc * sizeof(struct rx_desc);
1995 wrl(mp, off, addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001996
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001997 rxq_enable(rxq);
1998 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001999}
2000
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02002001static void set_rx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002002{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002003 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002004 u32 val;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002005
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002006 val = rdl(mp, SDMA_CONFIG(mp->port_num));
2007 if (mp->shared->extended_rx_coal_limit) {
2008 if (coal > 0xffff)
2009 coal = 0xffff;
2010 val &= ~0x023fff80;
2011 val |= (coal & 0x8000) << 10;
2012 val |= (coal & 0x7fff) << 7;
2013 } else {
2014 if (coal > 0x3fff)
2015 coal = 0x3fff;
2016 val &= ~0x003fff00;
2017 val |= (coal & 0x3fff) << 8;
2018 }
2019 wrl(mp, SDMA_CONFIG(mp->port_num), val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002020}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002021
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02002022static void set_tx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002023{
2024 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
2025
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002026 if (coal > 0x3fff)
2027 coal = 0x3fff;
2028 wrl(mp, TX_FIFO_URGENT_THRESHOLD(mp->port_num), (coal & 0x3fff) << 4);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002029}
2030
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002031static int mv643xx_eth_open(struct net_device *dev)
2032{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002033 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002034 int err;
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002035 int oom;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002036 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002037
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002038 wrl(mp, INT_CAUSE(mp->port_num), 0);
2039 wrl(mp, INT_CAUSE_EXT(mp->port_num), 0);
2040 rdl(mp, INT_CAUSE_EXT(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002041
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002042 err = request_irq(dev->irq, mv643xx_eth_irq,
Lennert Buytenhek2a1867a2008-08-23 23:43:38 +02002043 IRQF_SHARED, dev->name, dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002044 if (err) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002045 dev_printk(KERN_ERR, &dev->dev, "can't assign irq\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002046 return -EAGAIN;
2047 }
2048
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002049 init_mac_tables(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002050
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002051 napi_enable(&mp->napi);
2052
2053 oom = 0;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002054 for (i = 0; i < 8; i++) {
2055 if ((mp->rxq_mask & (1 << i)) == 0)
2056 continue;
2057
2058 err = rxq_init(mp, i);
2059 if (err) {
2060 while (--i >= 0)
2061 if (mp->rxq_mask & (1 << i))
2062 rxq_deinit(mp->rxq + i);
2063 goto out;
2064 }
2065
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002066 rxq_refill(mp->rxq + i, INT_MAX, &oom);
2067 }
2068
2069 if (oom) {
2070 mp->rx_oom.expires = jiffies + (HZ / 10);
2071 add_timer(&mp->rx_oom);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002072 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002073
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002074 for (i = 0; i < 8; i++) {
2075 if ((mp->txq_mask & (1 << i)) == 0)
2076 continue;
2077
2078 err = txq_init(mp, i);
2079 if (err) {
2080 while (--i >= 0)
2081 if (mp->txq_mask & (1 << i))
2082 txq_deinit(mp->txq + i);
2083 goto out_free;
2084 }
2085 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002086
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02002087 netif_carrier_off(dev);
2088 netif_stop_queue(dev);
2089
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002090 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002091
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02002092 set_rx_coal(mp, 0);
2093 set_tx_coal(mp, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002094
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002095 wrl(mp, INT_MASK_EXT(mp->port_num),
2096 INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002097
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02002098 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002099
2100 return 0;
2101
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002102
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002103out_free:
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002104 for (i = 0; i < 8; i++)
2105 if (mp->rxq_mask & (1 << i))
2106 rxq_deinit(mp->rxq + i);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002107out:
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002108 free_irq(dev->irq, dev);
2109
2110 return err;
2111}
2112
Lennert Buytenheke5371492008-06-01 02:18:13 +02002113static void port_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002114{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002115 unsigned int data;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002116 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002117
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002118 for (i = 0; i < 8; i++) {
2119 if (mp->rxq_mask & (1 << i))
2120 rxq_disable(mp->rxq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002121 if (mp->txq_mask & (1 << i))
2122 txq_disable(mp->txq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002123 }
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002124
2125 while (1) {
2126 u32 ps = rdl(mp, PORT_STATUS(mp->port_num));
2127
2128 if ((ps & (TX_IN_PROGRESS | TX_FIFO_EMPTY)) == TX_FIFO_EMPTY)
2129 break;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002130 udelay(10);
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002131 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002132
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002133 /* Reset the Enable bit in the Configuration Register */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002134 data = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
2135 data &= ~(SERIAL_PORT_ENABLE |
2136 DO_NOT_FORCE_LINK_FAIL |
2137 FORCE_LINK_PASS);
2138 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002139}
2140
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002141static int mv643xx_eth_stop(struct net_device *dev)
2142{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002143 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002144 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002145
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002146 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
2147 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002148
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002149 napi_disable(&mp->napi);
Lennert Buytenhek78fff832008-08-24 01:03:57 +02002150
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002151 del_timer_sync(&mp->rx_oom);
2152
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002153 netif_carrier_off(dev);
2154 netif_stop_queue(dev);
2155
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002156 free_irq(dev->irq, dev);
2157
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002158 port_reset(mp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002159 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002160
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002161 for (i = 0; i < 8; i++) {
2162 if (mp->rxq_mask & (1 << i))
2163 rxq_deinit(mp->rxq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002164 if (mp->txq_mask & (1 << i))
2165 txq_deinit(mp->txq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002166 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002167
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002168 return 0;
2169}
2170
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002171static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002172{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002173 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002174
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002175 if (mp->phy_addr != -1)
2176 return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL);
2177
2178 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002179}
2180
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002181static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
2182{
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002183 struct mv643xx_eth_private *mp = netdev_priv(dev);
2184
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002185 if (new_mtu < 64 || new_mtu > 9500)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002186 return -EINVAL;
2187
2188 dev->mtu = new_mtu;
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002189 tx_set_rate(mp, 1000000000, 16777216);
2190
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002191 if (!netif_running(dev))
2192 return 0;
2193
2194 /*
2195 * Stop and then re-open the interface. This will allocate RX
2196 * skbs of the new MTU.
2197 * There is a possible danger that the open will not succeed,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002198 * due to memory being full.
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002199 */
2200 mv643xx_eth_stop(dev);
2201 if (mv643xx_eth_open(dev)) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002202 dev_printk(KERN_ERR, &dev->dev,
2203 "fatal error on re-opening device after "
2204 "MTU change\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002205 }
2206
2207 return 0;
2208}
2209
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002210static void tx_timeout_task(struct work_struct *ugly)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002211{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002212 struct mv643xx_eth_private *mp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002213
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002214 mp = container_of(ugly, struct mv643xx_eth_private, tx_timeout_task);
2215 if (netif_running(mp->dev)) {
2216 netif_stop_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002217
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002218 port_reset(mp);
2219 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002220
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002221 __txq_maybe_wake(mp->txq + mp->txq_primary);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002222 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002223}
2224
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002225static void mv643xx_eth_tx_timeout(struct net_device *dev)
2226{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002227 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002228
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002229 dev_printk(KERN_INFO, &dev->dev, "tx timeout\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002230
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002231 schedule_work(&mp->tx_timeout_task);
2232}
2233
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002234#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002235static void mv643xx_eth_netpoll(struct net_device *dev)
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002236{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002237 struct mv643xx_eth_private *mp = netdev_priv(dev);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002238
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002239 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
2240 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002241
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002242 mv643xx_eth_irq(dev->irq, dev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002243
Lennert Buytenhekf2ca60f2008-07-07 00:03:00 +02002244 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002245}
2246#endif
2247
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002248static int mv643xx_eth_mdio_read(struct net_device *dev, int addr, int reg)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002249{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002250 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002251 return smi_reg_read(mp, addr, reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002252}
2253
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002254static void mv643xx_eth_mdio_write(struct net_device *dev, int addr, int reg, int val)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002255{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002256 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002257 smi_reg_write(mp, addr, reg, val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002258}
2259
2260
2261/* platform glue ************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02002262static void
2263mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private *msp,
2264 struct mbus_dram_target_info *dram)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002265{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002266 void __iomem *base = msp->base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002267 u32 win_enable;
2268 u32 win_protect;
2269 int i;
2270
2271 for (i = 0; i < 6; i++) {
2272 writel(0, base + WINDOW_BASE(i));
2273 writel(0, base + WINDOW_SIZE(i));
2274 if (i < 4)
2275 writel(0, base + WINDOW_REMAP_HIGH(i));
2276 }
2277
2278 win_enable = 0x3f;
2279 win_protect = 0;
2280
2281 for (i = 0; i < dram->num_cs; i++) {
2282 struct mbus_dram_window *cs = dram->cs + i;
2283
2284 writel((cs->base & 0xffff0000) |
2285 (cs->mbus_attr << 8) |
2286 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
2287 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
2288
2289 win_enable &= ~(1 << i);
2290 win_protect |= 3 << (2 * i);
2291 }
2292
2293 writel(win_enable, base + WINDOW_BAR_ENABLE);
2294 msp->win_protect = win_protect;
2295}
2296
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002297static void infer_hw_params(struct mv643xx_eth_shared_private *msp)
2298{
2299 /*
2300 * Check whether we have a 14-bit coal limit field in bits
2301 * [21:8], or a 16-bit coal limit in bits [25,21:7] of the
2302 * SDMA config register.
2303 */
2304 writel(0x02000000, msp->base + SDMA_CONFIG(0));
2305 if (readl(msp->base + SDMA_CONFIG(0)) & 0x02000000)
2306 msp->extended_rx_coal_limit = 1;
2307 else
2308 msp->extended_rx_coal_limit = 0;
Lennert Buytenhek1e881592008-06-02 01:57:36 +02002309
2310 /*
2311 * Check whether the TX rate control registers are in the
2312 * old or the new place.
2313 */
2314 writel(1, msp->base + TX_BW_MTU_MOVED(0));
2315 if (readl(msp->base + TX_BW_MTU_MOVED(0)) & 1)
2316 msp->tx_bw_control_moved = 1;
2317 else
2318 msp->tx_bw_control_moved = 0;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002319}
2320
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002321static int mv643xx_eth_shared_probe(struct platform_device *pdev)
2322{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002323 static int mv643xx_eth_version_printed = 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002324 struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002325 struct mv643xx_eth_shared_private *msp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002326 struct resource *res;
2327 int ret;
2328
Lennert Buytenheke5371492008-06-01 02:18:13 +02002329 if (!mv643xx_eth_version_printed++)
Lennert Buytenhek7dde1542008-07-15 12:20:30 +02002330 printk(KERN_NOTICE "MV-643xx 10/100/1000 ethernet "
2331 "driver version %s\n", mv643xx_eth_driver_version);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002332
2333 ret = -EINVAL;
2334 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2335 if (res == NULL)
2336 goto out;
2337
2338 ret = -ENOMEM;
2339 msp = kmalloc(sizeof(*msp), GFP_KERNEL);
2340 if (msp == NULL)
2341 goto out;
2342 memset(msp, 0, sizeof(*msp));
2343
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002344 msp->base = ioremap(res->start, res->end - res->start + 1);
2345 if (msp->base == NULL)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002346 goto out_free;
2347
Lennert Buytenhek2b3ba0e2008-08-24 05:41:09 +02002348 mutex_init(&msp->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002349
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002350 msp->err_interrupt = NO_IRQ;
2351 init_waitqueue_head(&msp->smi_busy_wait);
2352
2353 /*
2354 * Check whether the error interrupt is hooked up.
2355 */
2356 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2357 if (res != NULL) {
2358 int err;
2359
2360 err = request_irq(res->start, mv643xx_eth_err_irq,
2361 IRQF_SHARED, "mv643xx_eth", msp);
2362 if (!err) {
2363 writel(ERR_INT_SMI_DONE, msp->base + ERR_INT_MASK);
2364 msp->err_interrupt = res->start;
2365 }
2366 }
2367
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002368 /*
2369 * (Re-)program MBUS remapping windows if we are asked to.
2370 */
2371 if (pd != NULL && pd->dram != NULL)
2372 mv643xx_eth_conf_mbus_windows(msp, pd->dram);
2373
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002374 /*
2375 * Detect hardware parameters.
2376 */
2377 msp->t_clk = (pd != NULL && pd->t_clk != 0) ? pd->t_clk : 133000000;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002378 infer_hw_params(msp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002379
2380 platform_set_drvdata(pdev, msp);
2381
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002382 return 0;
2383
2384out_free:
2385 kfree(msp);
2386out:
2387 return ret;
2388}
2389
2390static int mv643xx_eth_shared_remove(struct platform_device *pdev)
2391{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002392 struct mv643xx_eth_shared_private *msp = platform_get_drvdata(pdev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002393
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002394 if (msp->err_interrupt != NO_IRQ)
2395 free_irq(msp->err_interrupt, msp);
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002396 iounmap(msp->base);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002397 kfree(msp);
2398
2399 return 0;
2400}
2401
2402static struct platform_driver mv643xx_eth_shared_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002403 .probe = mv643xx_eth_shared_probe,
2404 .remove = mv643xx_eth_shared_remove,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002405 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002406 .name = MV643XX_ETH_SHARED_NAME,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002407 .owner = THIS_MODULE,
2408 },
2409};
2410
Lennert Buytenheke5371492008-06-01 02:18:13 +02002411static void phy_addr_set(struct mv643xx_eth_private *mp, int phy_addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002412{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002413 int addr_shift = 5 * mp->port_num;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002414 u32 data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002415
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002416 data = rdl(mp, PHY_ADDR);
2417 data &= ~(0x1f << addr_shift);
2418 data |= (phy_addr & 0x1f) << addr_shift;
2419 wrl(mp, PHY_ADDR, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002420}
2421
Lennert Buytenheke5371492008-06-01 02:18:13 +02002422static int phy_addr_get(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002423{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002424 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002425
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002426 data = rdl(mp, PHY_ADDR);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002427
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002428 return (data >> (5 * mp->port_num)) & 0x1f;
2429}
2430
2431static void set_params(struct mv643xx_eth_private *mp,
2432 struct mv643xx_eth_platform_data *pd)
2433{
2434 struct net_device *dev = mp->dev;
2435
2436 if (is_valid_ether_addr(pd->mac_addr))
2437 memcpy(dev->dev_addr, pd->mac_addr, 6);
2438 else
2439 uc_addr_get(mp, dev->dev_addr);
2440
2441 if (pd->phy_addr == -1) {
2442 mp->shared_smi = NULL;
2443 mp->phy_addr = -1;
2444 } else {
2445 mp->shared_smi = mp->shared;
2446 if (pd->shared_smi != NULL)
2447 mp->shared_smi = platform_get_drvdata(pd->shared_smi);
2448
2449 if (pd->force_phy_addr || pd->phy_addr) {
2450 mp->phy_addr = pd->phy_addr & 0x3f;
2451 phy_addr_set(mp, mp->phy_addr);
2452 } else {
2453 mp->phy_addr = phy_addr_get(mp);
2454 }
2455 }
2456
2457 mp->default_rx_ring_size = DEFAULT_RX_QUEUE_SIZE;
2458 if (pd->rx_queue_size)
2459 mp->default_rx_ring_size = pd->rx_queue_size;
2460 mp->rx_desc_sram_addr = pd->rx_sram_addr;
2461 mp->rx_desc_sram_size = pd->rx_sram_size;
2462
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002463 if (pd->rx_queue_mask)
2464 mp->rxq_mask = pd->rx_queue_mask;
2465 else
2466 mp->rxq_mask = 0x01;
2467 mp->rxq_primary = fls(mp->rxq_mask) - 1;
2468
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002469 mp->default_tx_ring_size = DEFAULT_TX_QUEUE_SIZE;
2470 if (pd->tx_queue_size)
2471 mp->default_tx_ring_size = pd->tx_queue_size;
2472 mp->tx_desc_sram_addr = pd->tx_sram_addr;
2473 mp->tx_desc_sram_size = pd->tx_sram_size;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002474
2475 if (pd->tx_queue_mask)
2476 mp->txq_mask = pd->tx_queue_mask;
2477 else
2478 mp->txq_mask = 0x01;
2479 mp->txq_primary = fls(mp->txq_mask) - 1;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002480}
2481
Lennert Buytenheke5371492008-06-01 02:18:13 +02002482static int phy_detect(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002483{
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002484 int data;
2485 int data2;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002486
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002487 data = smi_reg_read(mp, mp->phy_addr, MII_BMCR);
2488 if (data < 0)
2489 return -ENODEV;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002490
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002491 if (smi_reg_write(mp, mp->phy_addr, MII_BMCR, data ^ BMCR_ANENABLE) < 0)
2492 return -ENODEV;
2493
2494 data2 = smi_reg_read(mp, mp->phy_addr, MII_BMCR);
2495 if (data2 < 0)
2496 return -ENODEV;
2497
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02002498 if (((data ^ data2) & BMCR_ANENABLE) == 0)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002499 return -ENODEV;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002500
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02002501 smi_reg_write(mp, mp->phy_addr, MII_BMCR, data);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002502
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002503 return 0;
2504}
2505
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002506static int phy_init(struct mv643xx_eth_private *mp,
2507 struct mv643xx_eth_platform_data *pd)
James Chapmand0412d92006-01-27 01:15:30 -07002508{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002509 struct ethtool_cmd cmd;
2510 int err;
James Chapmand0412d92006-01-27 01:15:30 -07002511
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002512 err = phy_detect(mp);
2513 if (err) {
2514 dev_printk(KERN_INFO, &mp->dev->dev,
2515 "no PHY detected at addr %d\n", mp->phy_addr);
2516 return err;
James Chapmand0412d92006-01-27 01:15:30 -07002517 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002518 phy_reset(mp);
2519
2520 mp->mii.phy_id = mp->phy_addr;
2521 mp->mii.phy_id_mask = 0x3f;
2522 mp->mii.reg_num_mask = 0x1f;
2523 mp->mii.dev = mp->dev;
2524 mp->mii.mdio_read = mv643xx_eth_mdio_read;
2525 mp->mii.mdio_write = mv643xx_eth_mdio_write;
2526
2527 mp->mii.supports_gmii = mii_check_gmii_support(&mp->mii);
2528
2529 memset(&cmd, 0, sizeof(cmd));
2530
2531 cmd.port = PORT_MII;
2532 cmd.transceiver = XCVR_INTERNAL;
2533 cmd.phy_address = mp->phy_addr;
2534 if (pd->speed == 0) {
2535 cmd.autoneg = AUTONEG_ENABLE;
2536 cmd.speed = SPEED_100;
2537 cmd.advertising = ADVERTISED_10baseT_Half |
2538 ADVERTISED_10baseT_Full |
2539 ADVERTISED_100baseT_Half |
2540 ADVERTISED_100baseT_Full;
2541 if (mp->mii.supports_gmii)
2542 cmd.advertising |= ADVERTISED_1000baseT_Full;
2543 } else {
2544 cmd.autoneg = AUTONEG_DISABLE;
2545 cmd.speed = pd->speed;
2546 cmd.duplex = pd->duplex;
2547 }
2548
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002549 mv643xx_eth_set_settings(mp->dev, &cmd);
2550
2551 return 0;
James Chapmand0412d92006-01-27 01:15:30 -07002552}
2553
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002554static void init_pscr(struct mv643xx_eth_private *mp, int speed, int duplex)
2555{
2556 u32 pscr;
2557
2558 pscr = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
2559 if (pscr & SERIAL_PORT_ENABLE) {
2560 pscr &= ~SERIAL_PORT_ENABLE;
2561 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
2562 }
2563
2564 pscr = MAX_RX_PACKET_9700BYTE | SERIAL_PORT_CONTROL_RESERVED;
2565 if (mp->phy_addr == -1) {
2566 pscr |= DISABLE_AUTO_NEG_SPEED_GMII;
2567 if (speed == SPEED_1000)
2568 pscr |= SET_GMII_SPEED_TO_1000;
2569 else if (speed == SPEED_100)
2570 pscr |= SET_MII_SPEED_TO_100;
2571
2572 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL;
2573
2574 pscr |= DISABLE_AUTO_NEG_FOR_DUPLEX;
2575 if (duplex == DUPLEX_FULL)
2576 pscr |= SET_FULL_DUPLEX_MODE;
2577 }
2578
2579 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
2580}
2581
Russell King3ae5eae2005-11-09 22:32:44 +00002582static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 struct mv643xx_eth_platform_data *pd;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002585 struct mv643xx_eth_private *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 struct resource *res;
Al Viroc5d64712007-10-13 08:30:26 +01002588 DECLARE_MAC_BUF(mac);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002589 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002591 pd = pdev->dev.platform_data;
2592 if (pd == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002593 dev_printk(KERN_ERR, &pdev->dev,
2594 "no mv643xx_eth_platform_data\n");
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002595 return -ENODEV;
2596 }
2597
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002598 if (pd->shared == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002599 dev_printk(KERN_ERR, &pdev->dev,
2600 "no mv643xx_eth_platform_data->shared\n");
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002601 return -ENODEV;
2602 }
2603
Lennert Buytenheke5371492008-06-01 02:18:13 +02002604 dev = alloc_etherdev(sizeof(struct mv643xx_eth_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (!dev)
2606 return -ENOMEM;
2607
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002609 platform_set_drvdata(pdev, mp);
2610
2611 mp->shared = platform_get_drvdata(pd->shared);
2612 mp->port_num = pd->port_number;
2613
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002614 mp->dev = dev;
Lennert Buytenhek78fff832008-08-24 01:03:57 +02002615
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002616 set_params(mp, pd);
2617
2618 spin_lock_init(&mp->lock);
2619
2620 mib_counters_clear(mp);
2621 INIT_WORK(&mp->tx_timeout_task, tx_timeout_task);
2622
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002623 if (mp->phy_addr != -1) {
2624 err = phy_init(mp, pd);
2625 if (err)
2626 goto out;
2627
2628 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops);
2629 } else {
2630 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops_phyless);
2631 }
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002632 init_pscr(mp, pd->speed, pd->duplex);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002633
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002634 netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, 128);
2635
2636 init_timer(&mp->rx_oom);
2637 mp->rx_oom.data = (unsigned long)mp;
2638 mp->rx_oom.function = oom_timer_wrapper;
2639
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002640
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2642 BUG_ON(!res);
2643 dev->irq = res->start;
2644
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002645 dev->hard_start_xmit = mv643xx_eth_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 dev->open = mv643xx_eth_open;
2647 dev->stop = mv643xx_eth_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002649 dev->set_mac_address = mv643xx_eth_set_mac_address;
2650 dev->do_ioctl = mv643xx_eth_ioctl;
2651 dev->change_mtu = mv643xx_eth_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 dev->tx_timeout = mv643xx_eth_tx_timeout;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002653#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenheke5371492008-06-01 02:18:13 +02002654 dev->poll_controller = mv643xx_eth_netpoll;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002655#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 dev->base_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Lennert Buytenheke5371492008-06-01 02:18:13 +02002659#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 /*
2661 * Zero copy can only work if we use Discovery II memory. Else, we will
2662 * have to map the buffers to ISA memory which is only 16 MB
2663 */
Wolfram Joost63890572006-01-16 16:57:41 -07002664 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Lennert Buytenheke32b6612008-07-24 06:22:59 +02002665 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666#endif
James Chapmanc28a4f82006-01-27 01:13:15 -07002667
Olaf Heringb0b8dab2006-04-27 18:23:49 -07002668 SET_NETDEV_DEV(dev, &pdev->dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002669
2670 if (mp->shared->win_protect)
2671 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
2672
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 err = register_netdev(dev);
2674 if (err)
2675 goto out;
2676
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002677 dev_printk(KERN_NOTICE, &dev->dev, "port %d with MAC address %s\n",
2678 mp->port_num, print_mac(mac, dev->dev_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
2680 if (dev->features & NETIF_F_SG)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002681 dev_printk(KERN_NOTICE, &dev->dev, "scatter/gather enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683 if (dev->features & NETIF_F_IP_CSUM)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002684 dev_printk(KERN_NOTICE, &dev->dev, "tx checksum offload\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002686 if (mp->tx_desc_sram_size > 0)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002687 dev_printk(KERN_NOTICE, &dev->dev, "configured with sram\n");
Nicolas DETb1529872005-10-28 17:46:30 -07002688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 return 0;
2690
2691out:
2692 free_netdev(dev);
2693
2694 return err;
2695}
2696
Russell King3ae5eae2005-11-09 22:32:44 +00002697static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002699 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002701 unregister_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 flush_scheduled_work();
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002703 free_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Russell King3ae5eae2005-11-09 22:32:44 +00002705 platform_set_drvdata(pdev, NULL);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return 0;
2708}
2709
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002710static void mv643xx_eth_shutdown(struct platform_device *pdev)
2711{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002712 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002713
2714 /* Mask all interrupts on ethernet port */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002715 wrl(mp, INT_MASK(mp->port_num), 0);
2716 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002717
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002718 if (netif_running(mp->dev))
2719 port_reset(mp);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002720}
2721
Russell King3ae5eae2005-11-09 22:32:44 +00002722static struct platform_driver mv643xx_eth_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002723 .probe = mv643xx_eth_probe,
2724 .remove = mv643xx_eth_remove,
2725 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00002726 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002727 .name = MV643XX_ETH_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07002728 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002729 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730};
2731
Lennert Buytenheke5371492008-06-01 02:18:13 +02002732static int __init mv643xx_eth_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
2734 int rc;
2735
Russell King3ae5eae2005-11-09 22:32:44 +00002736 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00002738 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00002740 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return rc;
2744}
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002745module_init(mv643xx_eth_init_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Lennert Buytenheke5371492008-06-01 02:18:13 +02002747static void __exit mv643xx_eth_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
Russell King3ae5eae2005-11-09 22:32:44 +00002749 platform_driver_unregister(&mv643xx_eth_driver);
2750 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751}
Lennert Buytenheke5371492008-06-01 02:18:13 +02002752module_exit(mv643xx_eth_cleanup_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Lennert Buytenhek45675bc2008-06-02 02:02:30 +02002754MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, "
2755 "Manish Lachwani, Dale Farnsworth and Lennert Buytenhek");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002757MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -07002758MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002759MODULE_ALIAS("platform:" MV643XX_ETH_NAME);