blob: 910920e212590410ee3db9010a95f92dcdffeae0 [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 Buytenhek45675bc2008-06-02 02:02:30 +020058static char mv643xx_eth_driver_version[] = "1.1";
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +020059
Lennert Buytenheke5371492008-06-01 02:18:13 +020060#define MV643XX_ETH_CHECKSUM_OFFLOAD_TX
61#define MV643XX_ETH_NAPI
62#define MV643XX_ETH_TX_FAST_REFILL
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020063
Lennert Buytenheke5371492008-06-01 02:18:13 +020064#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020065#define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1)
66#else
67#define MAX_DESCS_PER_SKB 1
68#endif
69
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020070/*
71 * Registers shared between all ports.
72 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020073#define PHY_ADDR 0x0000
74#define SMI_REG 0x0004
75#define WINDOW_BASE(w) (0x0200 + ((w) << 3))
76#define WINDOW_SIZE(w) (0x0204 + ((w) << 3))
77#define WINDOW_REMAP_HIGH(w) (0x0280 + ((w) << 2))
78#define WINDOW_BAR_ENABLE 0x0290
79#define WINDOW_PROTECT(w) (0x0294 + ((w) << 4))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020080
81/*
82 * Per-port registers.
83 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020084#define PORT_CONFIG(p) (0x0400 + ((p) << 10))
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +020085#define UNICAST_PROMISCUOUS_MODE 0x00000001
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020086#define PORT_CONFIG_EXT(p) (0x0404 + ((p) << 10))
87#define MAC_ADDR_LOW(p) (0x0414 + ((p) << 10))
88#define MAC_ADDR_HIGH(p) (0x0418 + ((p) << 10))
89#define SDMA_CONFIG(p) (0x041c + ((p) << 10))
90#define PORT_SERIAL_CONTROL(p) (0x043c + ((p) << 10))
91#define PORT_STATUS(p) (0x0444 + ((p) << 10))
Lennert Buytenheka2a41682008-06-01 01:30:42 +020092#define TX_FIFO_EMPTY 0x00000400
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020093#define TXQ_COMMAND(p) (0x0448 + ((p) << 10))
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +020094#define TXQ_FIX_PRIO_CONF(p) (0x044c + ((p) << 10))
95#define TX_BW_RATE(p) (0x0450 + ((p) << 10))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020096#define TX_BW_MTU(p) (0x0458 + ((p) << 10))
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +020097#define TX_BW_BURST(p) (0x045c + ((p) << 10))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020098#define INT_CAUSE(p) (0x0460 + ((p) << 10))
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +020099#define INT_TX_END_0 0x00080000
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +0200100#define INT_TX_END 0x07f80000
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200101#define INT_RX 0x0007fbfc
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200102#define INT_EXT 0x00000002
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200103#define INT_CAUSE_EXT(p) (0x0464 + ((p) << 10))
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200104#define INT_EXT_LINK 0x00100000
105#define INT_EXT_PHY 0x00010000
106#define INT_EXT_TX_ERROR_0 0x00000100
107#define INT_EXT_TX_0 0x00000001
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200108#define INT_EXT_TX 0x0000ffff
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200109#define INT_MASK(p) (0x0468 + ((p) << 10))
110#define INT_MASK_EXT(p) (0x046c + ((p) << 10))
111#define TX_FIFO_URGENT_THRESHOLD(p) (0x0474 + ((p) << 10))
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200112#define TXQ_FIX_PRIO_CONF_MOVED(p) (0x04dc + ((p) << 10))
113#define TX_BW_RATE_MOVED(p) (0x04e0 + ((p) << 10))
114#define TX_BW_MTU_MOVED(p) (0x04e8 + ((p) << 10))
115#define TX_BW_BURST_MOVED(p) (0x04ec + ((p) << 10))
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200116#define RXQ_CURRENT_DESC_PTR(p, q) (0x060c + ((p) << 10) + ((q) << 4))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200117#define RXQ_COMMAND(p) (0x0680 + ((p) << 10))
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200118#define TXQ_CURRENT_DESC_PTR(p, q) (0x06c0 + ((p) << 10) + ((q) << 2))
119#define TXQ_BW_TOKENS(p, q) (0x0700 + ((p) << 10) + ((q) << 4))
120#define TXQ_BW_CONF(p, q) (0x0704 + ((p) << 10) + ((q) << 4))
121#define TXQ_BW_WRR_CONF(p, q) (0x0708 + ((p) << 10) + ((q) << 4))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200122#define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
123#define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
124#define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
125#define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200126
Lennert Buytenhek2679a552008-06-01 01:18:58 +0200127
128/*
129 * SDMA configuration register.
130 */
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200131#define RX_BURST_SIZE_4_64BIT (2 << 1)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200132#define BLM_RX_NO_SWAP (1 << 4)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200133#define BLM_TX_NO_SWAP (1 << 5)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200134#define TX_BURST_SIZE_4_64BIT (2 << 22)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200135
136#if defined(__BIG_ENDIAN)
137#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
138 RX_BURST_SIZE_4_64BIT | \
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200139 TX_BURST_SIZE_4_64BIT
140#elif defined(__LITTLE_ENDIAN)
141#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
142 RX_BURST_SIZE_4_64BIT | \
143 BLM_RX_NO_SWAP | \
144 BLM_TX_NO_SWAP | \
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200145 TX_BURST_SIZE_4_64BIT
146#else
147#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
148#endif
149
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200150
151/*
152 * Port serial control register.
153 */
154#define SET_MII_SPEED_TO_100 (1 << 24)
155#define SET_GMII_SPEED_TO_1000 (1 << 23)
156#define SET_FULL_DUPLEX_MODE (1 << 21)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200157#define MAX_RX_PACKET_1522BYTE (1 << 17)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200158#define MAX_RX_PACKET_9700BYTE (5 << 17)
159#define MAX_RX_PACKET_MASK (7 << 17)
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200160#define DISABLE_AUTO_NEG_SPEED_GMII (1 << 13)
161#define DO_NOT_FORCE_LINK_FAIL (1 << 10)
162#define SERIAL_PORT_CONTROL_RESERVED (1 << 9)
163#define DISABLE_AUTO_NEG_FOR_FLOW_CTRL (1 << 3)
164#define DISABLE_AUTO_NEG_FOR_DUPLEX (1 << 2)
165#define FORCE_LINK_PASS (1 << 1)
166#define SERIAL_PORT_ENABLE (1 << 0)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200167
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200168#define DEFAULT_RX_QUEUE_SIZE 400
169#define DEFAULT_TX_QUEUE_SIZE 800
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200170
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200171
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200172/*
173 * RX/TX descriptors.
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200174 */
175#if defined(__BIG_ENDIAN)
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200176struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200177 u16 byte_cnt; /* Descriptor buffer byte count */
178 u16 buf_size; /* Buffer size */
179 u32 cmd_sts; /* Descriptor command status */
180 u32 next_desc_ptr; /* Next descriptor pointer */
181 u32 buf_ptr; /* Descriptor buffer pointer */
182};
183
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200184struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200185 u16 byte_cnt; /* buffer byte count */
186 u16 l4i_chk; /* CPU provided TCP checksum */
187 u32 cmd_sts; /* Command/status field */
188 u32 next_desc_ptr; /* Pointer to next descriptor */
189 u32 buf_ptr; /* pointer to buffer for this descriptor*/
190};
191#elif defined(__LITTLE_ENDIAN)
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200192struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200193 u32 cmd_sts; /* Descriptor command status */
194 u16 buf_size; /* Buffer size */
195 u16 byte_cnt; /* Descriptor buffer byte count */
196 u32 buf_ptr; /* Descriptor buffer pointer */
197 u32 next_desc_ptr; /* Next descriptor pointer */
198};
199
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200200struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200201 u32 cmd_sts; /* Command/status field */
202 u16 l4i_chk; /* CPU provided TCP checksum */
203 u16 byte_cnt; /* buffer byte count */
204 u32 buf_ptr; /* pointer to buffer for this descriptor*/
205 u32 next_desc_ptr; /* Pointer to next descriptor */
206};
207#else
208#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
209#endif
210
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200211/* RX & TX descriptor command */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200212#define BUFFER_OWNED_BY_DMA 0x80000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200213
214/* RX & TX descriptor status */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200215#define ERROR_SUMMARY 0x00000001
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200216
217/* RX descriptor status */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200218#define LAYER_4_CHECKSUM_OK 0x40000000
219#define RX_ENABLE_INTERRUPT 0x20000000
220#define RX_FIRST_DESC 0x08000000
221#define RX_LAST_DESC 0x04000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200222
223/* TX descriptor command */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200224#define TX_ENABLE_INTERRUPT 0x00800000
225#define GEN_CRC 0x00400000
226#define TX_FIRST_DESC 0x00200000
227#define TX_LAST_DESC 0x00100000
228#define ZERO_PADDING 0x00080000
229#define GEN_IP_V4_CHECKSUM 0x00040000
230#define GEN_TCP_UDP_CHECKSUM 0x00020000
231#define UDP_FRAME 0x00010000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200232
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200233#define TX_IHL_SHIFT 11
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200234
235
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200236/* global *******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200237struct mv643xx_eth_shared_private {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200238 /*
239 * Ethernet controller base address.
240 */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200241 void __iomem *base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200242
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200243 /*
244 * Protects access to SMI_REG, which is shared between ports.
245 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200246 spinlock_t phy_lock;
247
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200248 /*
249 * Per-port MBUS window access register value.
250 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200251 u32 win_protect;
252
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200253 /*
254 * Hardware-specific parameters.
255 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200256 unsigned int t_clk;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +0200257 int extended_rx_coal_limit;
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200258 int tx_bw_control_moved;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200259};
260
261
262/* per-port *****************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200263struct mib_counters {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200264 u64 good_octets_received;
265 u32 bad_octets_received;
266 u32 internal_mac_transmit_err;
267 u32 good_frames_received;
268 u32 bad_frames_received;
269 u32 broadcast_frames_received;
270 u32 multicast_frames_received;
271 u32 frames_64_octets;
272 u32 frames_65_to_127_octets;
273 u32 frames_128_to_255_octets;
274 u32 frames_256_to_511_octets;
275 u32 frames_512_to_1023_octets;
276 u32 frames_1024_to_max_octets;
277 u64 good_octets_sent;
278 u32 good_frames_sent;
279 u32 excessive_collision;
280 u32 multicast_frames_sent;
281 u32 broadcast_frames_sent;
282 u32 unrec_mac_control_received;
283 u32 fc_sent;
284 u32 good_fc_received;
285 u32 bad_fc_received;
286 u32 undersize_received;
287 u32 fragments_received;
288 u32 oversize_received;
289 u32 jabber_received;
290 u32 mac_receive_error;
291 u32 bad_crc_event;
292 u32 collision;
293 u32 late_collision;
294};
295
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200296struct rx_queue {
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200297 int index;
298
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200299 int rx_ring_size;
300
301 int rx_desc_count;
302 int rx_curr_desc;
303 int rx_used_desc;
304
305 struct rx_desc *rx_desc_area;
306 dma_addr_t rx_desc_dma;
307 int rx_desc_area_size;
308 struct sk_buff **rx_skb;
309
310 struct timer_list rx_oom;
311};
312
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200313struct tx_queue {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200314 int index;
315
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200316 int tx_ring_size;
317
318 int tx_desc_count;
319 int tx_curr_desc;
320 int tx_used_desc;
321
322 struct tx_desc *tx_desc_area;
323 dma_addr_t tx_desc_dma;
324 int tx_desc_area_size;
325 struct sk_buff **tx_skb;
326};
327
Lennert Buytenheke5371492008-06-01 02:18:13 +0200328struct mv643xx_eth_private {
329 struct mv643xx_eth_shared_private *shared;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200330 int port_num;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200331
332 struct net_device *dev;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200333
334 struct mv643xx_eth_shared_private *shared_smi;
335 int phy_addr;
336
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200337 spinlock_t lock;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200338
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200339 struct mib_counters mib_counters;
340 struct work_struct tx_timeout_task;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200341 struct mii_if_info mii;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200342
343 /*
344 * RX state.
345 */
346 int default_rx_ring_size;
347 unsigned long rx_desc_sram_addr;
348 int rx_desc_sram_size;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200349 u8 rxq_mask;
350 int rxq_primary;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200351 struct napi_struct napi;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200352 struct rx_queue rxq[8];
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200353
354 /*
355 * TX state.
356 */
357 int default_tx_ring_size;
358 unsigned long tx_desc_sram_addr;
359 int tx_desc_sram_size;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200360 u8 txq_mask;
361 int txq_primary;
362 struct tx_queue txq[8];
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200363#ifdef MV643XX_ETH_TX_FAST_REFILL
364 int tx_clean_threshold;
365#endif
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200366};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200368
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200369/* port register accessors **************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200370static inline u32 rdl(struct mv643xx_eth_private *mp, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200372 return readl(mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Lennert Buytenheke5371492008-06-01 02:18:13 +0200375static inline void wrl(struct mv643xx_eth_private *mp, int offset, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200377 writel(data, mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200380
381/* rxq/txq helper functions *************************************************/
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200382static struct mv643xx_eth_private *rxq_to_mp(struct rx_queue *rxq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200384 return container_of(rxq, struct mv643xx_eth_private, rxq[rxq->index]);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200385}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200387static struct mv643xx_eth_private *txq_to_mp(struct tx_queue *txq)
388{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200389 return container_of(txq, struct mv643xx_eth_private, txq[txq->index]);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200390}
391
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200392static void rxq_enable(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200393{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200394 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200395 wrl(mp, RXQ_COMMAND(mp->port_num), 1 << rxq->index);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200396}
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700397
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200398static void rxq_disable(struct rx_queue *rxq)
399{
400 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200401 u8 mask = 1 << rxq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200402
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200403 wrl(mp, RXQ_COMMAND(mp->port_num), mask << 8);
404 while (rdl(mp, RXQ_COMMAND(mp->port_num)) & mask)
405 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200406}
407
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200408static void txq_enable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200409{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200410 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200411 wrl(mp, TXQ_COMMAND(mp->port_num), 1 << txq->index);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200412}
413
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200414static void txq_disable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200415{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200416 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200417 u8 mask = 1 << txq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200418
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200419 wrl(mp, TXQ_COMMAND(mp->port_num), mask << 8);
420 while (rdl(mp, TXQ_COMMAND(mp->port_num)) & mask)
421 udelay(10);
422}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200423
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200424static void __txq_maybe_wake(struct tx_queue *txq)
425{
426 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200427
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200428 /*
429 * netif_{stop,wake}_queue() flow control only applies to
430 * the primary queue.
431 */
432 BUG_ON(txq->index != mp->txq_primary);
433
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200434 if (txq->tx_ring_size - txq->tx_desc_count >= MAX_DESCS_PER_SKB)
435 netif_wake_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200436}
437
438
439/* rx ***********************************************************************/
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200440static void txq_reclaim(struct tx_queue *txq, int force);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200441
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200442static void rxq_refill(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200443{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200444 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200445 unsigned long flags;
446
447 spin_lock_irqsave(&mp->lock, flags);
448
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200449 while (rxq->rx_desc_count < rxq->rx_ring_size) {
450 int skb_size;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200451 struct sk_buff *skb;
452 int unaligned;
453 int rx;
454
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200455 /*
456 * Reserve 2+14 bytes for an ethernet header (the
457 * hardware automatically prepends 2 bytes of dummy
458 * data to each received packet), 4 bytes for a VLAN
459 * header, and 4 bytes for the trailing FCS -- 24
460 * bytes total.
461 */
462 skb_size = mp->dev->mtu + 24;
463
464 skb = dev_alloc_skb(skb_size + dma_get_cache_alignment() - 1);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200465 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 break;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200467
Ralf Baechle908b6372007-02-26 19:52:06 +0000468 unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700469 if (unaligned)
Ralf Baechle908b6372007-02-26 19:52:06 +0000470 skb_reserve(skb, dma_get_cache_alignment() - unaligned);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200471
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200472 rxq->rx_desc_count++;
473 rx = rxq->rx_used_desc;
474 rxq->rx_used_desc = (rx + 1) % rxq->rx_ring_size;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200475
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200476 rxq->rx_desc_area[rx].buf_ptr = dma_map_single(NULL, skb->data,
477 skb_size, DMA_FROM_DEVICE);
478 rxq->rx_desc_area[rx].buf_size = skb_size;
479 rxq->rx_skb[rx] = skb;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200480 wmb();
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200481 rxq->rx_desc_area[rx].cmd_sts = BUFFER_OWNED_BY_DMA |
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200482 RX_ENABLE_INTERRUPT;
483 wmb();
484
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200485 /*
486 * The hardware automatically prepends 2 bytes of
487 * dummy data to each received packet, so that the
488 * IP header ends up 16-byte aligned.
489 */
490 skb_reserve(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200492
Lennert Buytenhek12e4ab72008-06-02 01:58:01 +0200493 if (rxq->rx_desc_count != rxq->rx_ring_size) {
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200494 rxq->rx_oom.expires = jiffies + (HZ / 10);
495 add_timer(&rxq->rx_oom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200497
498 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200501static inline void rxq_refill_timer_wrapper(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200503 rxq_refill((struct rx_queue *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200506static int rxq_process(struct rx_queue *rxq, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200508 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
509 struct net_device_stats *stats = &mp->dev->stats;
510 int rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200512 rx = 0;
513 while (rx < budget) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200514 struct rx_desc *rx_desc;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200515 unsigned int cmd_sts;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200516 struct sk_buff *skb;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200517 unsigned long flags;
518
519 spin_lock_irqsave(&mp->lock, flags);
520
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200521 rx_desc = &rxq->rx_desc_area[rxq->rx_curr_desc];
Lennert Buytenhek96587662008-06-01 10:31:56 +0200522
523 cmd_sts = rx_desc->cmd_sts;
524 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
525 spin_unlock_irqrestore(&mp->lock, flags);
526 break;
527 }
528 rmb();
529
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200530 skb = rxq->rx_skb[rxq->rx_curr_desc];
531 rxq->rx_skb[rxq->rx_curr_desc] = NULL;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200532
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200533 rxq->rx_curr_desc = (rxq->rx_curr_desc + 1) % rxq->rx_ring_size;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200534
535 spin_unlock_irqrestore(&mp->lock, flags);
536
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200537 dma_unmap_single(NULL, rx_desc->buf_ptr + 2,
538 mp->dev->mtu + 24, DMA_FROM_DEVICE);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200539 rxq->rx_desc_count--;
540 rx++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700541
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700542 /*
543 * Update statistics.
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200544 *
545 * Note that the descriptor byte count includes 2 dummy
546 * bytes automatically inserted by the hardware at the
547 * start of the packet (which we don't count), and a 4
548 * byte CRC at the end of the packet (which we do count).
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700549 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 stats->rx_packets++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200551 stats->rx_bytes += rx_desc->byte_cnt - 2;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200554 * In case we received a packet without first / last bits
555 * on, or the error summary bit is set, the packet needs
556 * to be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Lennert Buytenhek96587662008-06-01 10:31:56 +0200558 if (((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200559 (RX_FIRST_DESC | RX_LAST_DESC))
Lennert Buytenhek96587662008-06-01 10:31:56 +0200560 || (cmd_sts & ERROR_SUMMARY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 stats->rx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200562
Lennert Buytenhek96587662008-06-01 10:31:56 +0200563 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200564 (RX_FIRST_DESC | RX_LAST_DESC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (net_ratelimit())
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200566 dev_printk(KERN_ERR, &mp->dev->dev,
567 "received packet spanning "
568 "multiple descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200570
Lennert Buytenhek96587662008-06-01 10:31:56 +0200571 if (cmd_sts & ERROR_SUMMARY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 stats->rx_errors++;
573
574 dev_kfree_skb_irq(skb);
575 } else {
576 /*
577 * The -4 is for the CRC in the trailer of the
578 * received packet
579 */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200580 skb_put(skb, rx_desc->byte_cnt - 2 - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Lennert Buytenhek96587662008-06-01 10:31:56 +0200582 if (cmd_sts & LAYER_4_CHECKSUM_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 skb->ip_summed = CHECKSUM_UNNECESSARY;
584 skb->csum = htons(
Lennert Buytenhek96587662008-06-01 10:31:56 +0200585 (cmd_sts & 0x0007fff8) >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200587 skb->protocol = eth_type_trans(skb, mp->dev);
Lennert Buytenheke5371492008-06-01 02:18:13 +0200588#ifdef MV643XX_ETH_NAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 netif_receive_skb(skb);
590#else
591 netif_rx(skb);
592#endif
593 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200594
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200595 mp->dev->last_rx = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200597
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200598 rxq_refill(rxq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200600 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Lennert Buytenheke5371492008-06-01 02:18:13 +0200603#ifdef MV643XX_ETH_NAPI
Lennert Buytenheke5371492008-06-01 02:18:13 +0200604static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200606 struct mv643xx_eth_private *mp;
607 int rx;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200608 int i;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200609
610 mp = container_of(napi, struct mv643xx_eth_private, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Lennert Buytenheke5371492008-06-01 02:18:13 +0200612#ifdef MV643XX_ETH_TX_FAST_REFILL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (++mp->tx_clean_threshold > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 mp->tx_clean_threshold = 0;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200615 for (i = 0; i < 8; i++)
616 if (mp->txq_mask & (1 << i))
617 txq_reclaim(mp->txq + i, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619#endif
620
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200621 rx = 0;
622 for (i = 7; rx < budget && i >= 0; i--)
623 if (mp->rxq_mask & (1 << i))
624 rx += rxq_process(mp->rxq + i, budget - rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200626 if (rx < budget) {
627 netif_rx_complete(mp->dev, napi);
628 wrl(mp, INT_CAUSE(mp->port_num), 0);
629 wrl(mp, INT_CAUSE_EXT(mp->port_num), 0);
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +0200630 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200633 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635#endif
636
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200637
638/* tx ***********************************************************************/
Paul Janzenf7ea3332006-01-16 16:52:13 -0700639static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
640{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200641 int frag;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700642
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700643 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200644 skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
645 if (fragp->size <= 8 && fragp->page_offset & 7)
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700646 return 1;
647 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200648
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700649 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700650}
651
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200652static int txq_alloc_desc_index(struct tx_queue *txq)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700653{
654 int tx_desc_curr;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700655
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200656 BUG_ON(txq->tx_desc_count >= txq->tx_ring_size);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700657
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200658 tx_desc_curr = txq->tx_curr_desc;
659 txq->tx_curr_desc = (tx_desc_curr + 1) % txq->tx_ring_size;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700660
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200661 BUG_ON(txq->tx_curr_desc == txq->tx_used_desc);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700662
663 return tx_desc_curr;
664}
665
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200666static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700667{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200668 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700669 int frag;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700670
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200671 for (frag = 0; frag < nr_frags; frag++) {
672 skb_frag_t *this_frag;
673 int tx_index;
674 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700675
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200676 this_frag = &skb_shinfo(skb)->frags[frag];
677 tx_index = txq_alloc_desc_index(txq);
678 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700679
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200680 /*
681 * The last fragment will generate an interrupt
682 * which will free the skb on TX completion.
683 */
684 if (frag == nr_frags - 1) {
685 desc->cmd_sts = BUFFER_OWNED_BY_DMA |
686 ZERO_PADDING | TX_LAST_DESC |
687 TX_ENABLE_INTERRUPT;
688 txq->tx_skb[tx_index] = skb;
689 } else {
690 desc->cmd_sts = BUFFER_OWNED_BY_DMA;
691 txq->tx_skb[tx_index] = NULL;
692 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700693
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700694 desc->l4i_chk = 0;
695 desc->byte_cnt = this_frag->size;
696 desc->buf_ptr = dma_map_page(NULL, this_frag->page,
697 this_frag->page_offset,
698 this_frag->size,
699 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700700 }
701}
702
Byron Bradley324ff2c2008-02-04 23:47:15 -0800703static inline __be16 sum16_as_be(__sum16 sum)
704{
705 return (__force __be16)sum;
706}
707
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200708static void txq_submit_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700709{
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200710 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200711 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700712 int tx_index;
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200713 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700714 u32 cmd_sts;
715 int length;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700716
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200717 cmd_sts = TX_FIRST_DESC | GEN_CRC | BUFFER_OWNED_BY_DMA;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700718
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200719 tx_index = txq_alloc_desc_index(txq);
720 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700721
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700722 if (nr_frags) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200723 txq_submit_frag_skb(txq, skb);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700724
725 length = skb_headlen(skb);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200726 txq->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700727 } else {
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200728 cmd_sts |= ZERO_PADDING | TX_LAST_DESC | TX_ENABLE_INTERRUPT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700729 length = skb->len;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200730 txq->tx_skb[tx_index] = skb;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700731 }
732
733 desc->byte_cnt = length;
734 desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700735
Patrick McHardy84fa7932006-08-29 16:44:56 -0700736 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Byron Bradley324ff2c2008-02-04 23:47:15 -0800737 BUG_ON(skb->protocol != htons(ETH_P_IP));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700738
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200739 cmd_sts |= GEN_TCP_UDP_CHECKSUM |
740 GEN_IP_V4_CHECKSUM |
741 ip_hdr(skb)->ihl << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700742
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700743 switch (ip_hdr(skb)->protocol) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700744 case IPPROTO_UDP:
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200745 cmd_sts |= UDP_FRAME;
Byron Bradley324ff2c2008-02-04 23:47:15 -0800746 desc->l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700747 break;
748 case IPPROTO_TCP:
Byron Bradley324ff2c2008-02-04 23:47:15 -0800749 desc->l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700750 break;
751 default:
752 BUG();
753 }
754 } else {
755 /* Errata BTS #50, IHL must be 5 if no HW checksum */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200756 cmd_sts |= 5 << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700757 desc->l4i_chk = 0;
758 }
759
760 /* ensure all other descriptors are written before first cmd_sts */
761 wmb();
762 desc->cmd_sts = cmd_sts;
763
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200764 /* clear TX_END interrupt status */
765 wrl(mp, INT_CAUSE(mp->port_num), ~(INT_TX_END_0 << txq->index));
766 rdl(mp, INT_CAUSE(mp->port_num));
767
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700768 /* ensure all descriptors are written before poking hardware */
769 wmb();
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200770 txq_enable(txq);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700771
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200772 txq->tx_desc_count += nr_frags + 1;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700773}
774
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200775static int mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200777 struct mv643xx_eth_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700778 struct net_device_stats *stats = &dev->stats;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200779 struct tx_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700782 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
783 stats->tx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200784 dev_printk(KERN_DEBUG, &dev->dev,
785 "failed to linearize skb with tiny "
786 "unaligned fragment\n");
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700787 return NETDEV_TX_BUSY;
Dale Farnsworth94843562006-04-11 18:24:26 -0700788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 spin_lock_irqsave(&mp->lock, flags);
791
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200792 txq = mp->txq + mp->txq_primary;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200793
794 if (txq->tx_ring_size - txq->tx_desc_count < MAX_DESCS_PER_SKB) {
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700795 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200796 if (txq->index == mp->txq_primary && net_ratelimit())
797 dev_printk(KERN_ERR, &dev->dev,
798 "primary tx queue full?!\n");
799 kfree_skb(skb);
800 return NETDEV_TX_OK;
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700801 }
802
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200803 txq_submit_skb(txq, skb);
Dale Farnsworthe7e381f2007-09-14 11:23:16 -0700804 stats->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 stats->tx_packets++;
806 dev->trans_start = jiffies;
807
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200808 if (txq->index == mp->txq_primary) {
809 int entries_left;
810
811 entries_left = txq->tx_ring_size - txq->tx_desc_count;
812 if (entries_left < MAX_DESCS_PER_SKB)
813 netif_stop_queue(dev);
814 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 spin_unlock_irqrestore(&mp->lock, flags);
817
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700818 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200821
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200822/* tx rate control **********************************************************/
823/*
824 * Set total maximum TX rate (shared by all TX queues for this port)
825 * to 'rate' bits per second, with a maximum burst of 'burst' bytes.
826 */
827static void tx_set_rate(struct mv643xx_eth_private *mp, int rate, int burst)
828{
829 int token_rate;
830 int mtu;
831 int bucket_size;
832
833 token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
834 if (token_rate > 1023)
835 token_rate = 1023;
836
837 mtu = (mp->dev->mtu + 255) >> 8;
838 if (mtu > 63)
839 mtu = 63;
840
841 bucket_size = (burst + 255) >> 8;
842 if (bucket_size > 65535)
843 bucket_size = 65535;
844
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200845 if (mp->shared->tx_bw_control_moved) {
846 wrl(mp, TX_BW_RATE_MOVED(mp->port_num), token_rate);
847 wrl(mp, TX_BW_MTU_MOVED(mp->port_num), mtu);
848 wrl(mp, TX_BW_BURST_MOVED(mp->port_num), bucket_size);
849 } else {
850 wrl(mp, TX_BW_RATE(mp->port_num), token_rate);
851 wrl(mp, TX_BW_MTU(mp->port_num), mtu);
852 wrl(mp, TX_BW_BURST(mp->port_num), bucket_size);
853 }
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200854}
855
856static void txq_set_rate(struct tx_queue *txq, int rate, int burst)
857{
858 struct mv643xx_eth_private *mp = txq_to_mp(txq);
859 int token_rate;
860 int bucket_size;
861
862 token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
863 if (token_rate > 1023)
864 token_rate = 1023;
865
866 bucket_size = (burst + 255) >> 8;
867 if (bucket_size > 65535)
868 bucket_size = 65535;
869
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200870 wrl(mp, TXQ_BW_TOKENS(mp->port_num, txq->index), token_rate << 14);
871 wrl(mp, TXQ_BW_CONF(mp->port_num, txq->index),
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200872 (bucket_size << 10) | token_rate);
873}
874
875static void txq_set_fixed_prio_mode(struct tx_queue *txq)
876{
877 struct mv643xx_eth_private *mp = txq_to_mp(txq);
878 int off;
879 u32 val;
880
881 /*
882 * Turn on fixed priority mode.
883 */
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200884 if (mp->shared->tx_bw_control_moved)
885 off = TXQ_FIX_PRIO_CONF_MOVED(mp->port_num);
886 else
887 off = TXQ_FIX_PRIO_CONF(mp->port_num);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200888
889 val = rdl(mp, off);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200890 val |= 1 << txq->index;
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200891 wrl(mp, off, val);
892}
893
894static void txq_set_wrr(struct tx_queue *txq, int weight)
895{
896 struct mv643xx_eth_private *mp = txq_to_mp(txq);
897 int off;
898 u32 val;
899
900 /*
901 * Turn off fixed priority mode.
902 */
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200903 if (mp->shared->tx_bw_control_moved)
904 off = TXQ_FIX_PRIO_CONF_MOVED(mp->port_num);
905 else
906 off = TXQ_FIX_PRIO_CONF(mp->port_num);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200907
908 val = rdl(mp, off);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200909 val &= ~(1 << txq->index);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200910 wrl(mp, off, val);
911
912 /*
913 * Configure WRR weight for this queue.
914 */
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200915 off = TXQ_BW_WRR_CONF(mp->port_num, txq->index);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200916
917 val = rdl(mp, off);
918 val = (val & ~0xff) | (weight & 0xff);
919 wrl(mp, off, val);
920}
921
922
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200923/* mii management interface *************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200924#define SMI_BUSY 0x10000000
925#define SMI_READ_VALID 0x08000000
926#define SMI_OPCODE_READ 0x04000000
927#define SMI_OPCODE_WRITE 0x00000000
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200928
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200929static void smi_reg_read(struct mv643xx_eth_private *mp, unsigned int addr,
930 unsigned int reg, unsigned int *value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200931{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200932 void __iomem *smi_reg = mp->shared_smi->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200933 unsigned long flags;
934 int i;
935
936 /* the SMI register is a shared resource */
937 spin_lock_irqsave(&mp->shared_smi->phy_lock, flags);
938
939 /* wait for the SMI register to become available */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200940 for (i = 0; readl(smi_reg) & SMI_BUSY; i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200941 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200942 printk("%s: PHY busy timeout\n", mp->dev->name);
943 goto out;
944 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200945 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200946 }
947
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200948 writel(SMI_OPCODE_READ | (reg << 21) | (addr << 16), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200949
950 /* now wait for the data to be valid */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200951 for (i = 0; !(readl(smi_reg) & SMI_READ_VALID); i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200952 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200953 printk("%s: PHY read timeout\n", mp->dev->name);
954 goto out;
955 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200956 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200957 }
958
959 *value = readl(smi_reg) & 0xffff;
960out:
961 spin_unlock_irqrestore(&mp->shared_smi->phy_lock, flags);
962}
963
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200964static void smi_reg_write(struct mv643xx_eth_private *mp,
965 unsigned int addr,
966 unsigned int reg, unsigned int value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200967{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200968 void __iomem *smi_reg = mp->shared_smi->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200969 unsigned long flags;
970 int i;
971
972 /* the SMI register is a shared resource */
973 spin_lock_irqsave(&mp->shared_smi->phy_lock, flags);
974
975 /* wait for the SMI register to become available */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200976 for (i = 0; readl(smi_reg) & SMI_BUSY; i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200977 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200978 printk("%s: PHY busy timeout\n", mp->dev->name);
979 goto out;
980 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200981 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200982 }
983
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200984 writel(SMI_OPCODE_WRITE | (reg << 21) |
985 (addr << 16) | (value & 0xffff), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200986out:
987 spin_unlock_irqrestore(&mp->shared_smi->phy_lock, flags);
988}
989
990
991/* mib counters *************************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200992static inline u32 mib_read(struct mv643xx_eth_private *mp, int offset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200993{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200994 return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200995}
996
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200997static void mib_counters_clear(struct mv643xx_eth_private *mp)
998{
999 int i;
1000
1001 for (i = 0; i < 0x80; i += 4)
1002 mib_read(mp, i);
1003}
1004
1005static void mib_counters_update(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001006{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001007 struct mib_counters *p = &mp->mib_counters;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001008
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001009 p->good_octets_received += mib_read(mp, 0x00);
1010 p->good_octets_received += (u64)mib_read(mp, 0x04) << 32;
1011 p->bad_octets_received += mib_read(mp, 0x08);
1012 p->internal_mac_transmit_err += mib_read(mp, 0x0c);
1013 p->good_frames_received += mib_read(mp, 0x10);
1014 p->bad_frames_received += mib_read(mp, 0x14);
1015 p->broadcast_frames_received += mib_read(mp, 0x18);
1016 p->multicast_frames_received += mib_read(mp, 0x1c);
1017 p->frames_64_octets += mib_read(mp, 0x20);
1018 p->frames_65_to_127_octets += mib_read(mp, 0x24);
1019 p->frames_128_to_255_octets += mib_read(mp, 0x28);
1020 p->frames_256_to_511_octets += mib_read(mp, 0x2c);
1021 p->frames_512_to_1023_octets += mib_read(mp, 0x30);
1022 p->frames_1024_to_max_octets += mib_read(mp, 0x34);
1023 p->good_octets_sent += mib_read(mp, 0x38);
1024 p->good_octets_sent += (u64)mib_read(mp, 0x3c) << 32;
1025 p->good_frames_sent += mib_read(mp, 0x40);
1026 p->excessive_collision += mib_read(mp, 0x44);
1027 p->multicast_frames_sent += mib_read(mp, 0x48);
1028 p->broadcast_frames_sent += mib_read(mp, 0x4c);
1029 p->unrec_mac_control_received += mib_read(mp, 0x50);
1030 p->fc_sent += mib_read(mp, 0x54);
1031 p->good_fc_received += mib_read(mp, 0x58);
1032 p->bad_fc_received += mib_read(mp, 0x5c);
1033 p->undersize_received += mib_read(mp, 0x60);
1034 p->fragments_received += mib_read(mp, 0x64);
1035 p->oversize_received += mib_read(mp, 0x68);
1036 p->jabber_received += mib_read(mp, 0x6c);
1037 p->mac_receive_error += mib_read(mp, 0x70);
1038 p->bad_crc_event += mib_read(mp, 0x74);
1039 p->collision += mib_read(mp, 0x78);
1040 p->late_collision += mib_read(mp, 0x7c);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001041}
1042
1043
1044/* ethtool ******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02001045struct mv643xx_eth_stats {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001046 char stat_string[ETH_GSTRING_LEN];
1047 int sizeof_stat;
Lennert Buytenhek16820052008-06-01 11:40:29 +02001048 int netdev_off;
1049 int mp_off;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001050};
1051
Lennert Buytenhek16820052008-06-01 11:40:29 +02001052#define SSTAT(m) \
1053 { #m, FIELD_SIZEOF(struct net_device_stats, m), \
1054 offsetof(struct net_device, stats.m), -1 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001055
Lennert Buytenhek16820052008-06-01 11:40:29 +02001056#define MIBSTAT(m) \
1057 { #m, FIELD_SIZEOF(struct mib_counters, m), \
1058 -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
1059
1060static const struct mv643xx_eth_stats mv643xx_eth_stats[] = {
1061 SSTAT(rx_packets),
1062 SSTAT(tx_packets),
1063 SSTAT(rx_bytes),
1064 SSTAT(tx_bytes),
1065 SSTAT(rx_errors),
1066 SSTAT(tx_errors),
1067 SSTAT(rx_dropped),
1068 SSTAT(tx_dropped),
1069 MIBSTAT(good_octets_received),
1070 MIBSTAT(bad_octets_received),
1071 MIBSTAT(internal_mac_transmit_err),
1072 MIBSTAT(good_frames_received),
1073 MIBSTAT(bad_frames_received),
1074 MIBSTAT(broadcast_frames_received),
1075 MIBSTAT(multicast_frames_received),
1076 MIBSTAT(frames_64_octets),
1077 MIBSTAT(frames_65_to_127_octets),
1078 MIBSTAT(frames_128_to_255_octets),
1079 MIBSTAT(frames_256_to_511_octets),
1080 MIBSTAT(frames_512_to_1023_octets),
1081 MIBSTAT(frames_1024_to_max_octets),
1082 MIBSTAT(good_octets_sent),
1083 MIBSTAT(good_frames_sent),
1084 MIBSTAT(excessive_collision),
1085 MIBSTAT(multicast_frames_sent),
1086 MIBSTAT(broadcast_frames_sent),
1087 MIBSTAT(unrec_mac_control_received),
1088 MIBSTAT(fc_sent),
1089 MIBSTAT(good_fc_received),
1090 MIBSTAT(bad_fc_received),
1091 MIBSTAT(undersize_received),
1092 MIBSTAT(fragments_received),
1093 MIBSTAT(oversize_received),
1094 MIBSTAT(jabber_received),
1095 MIBSTAT(mac_receive_error),
1096 MIBSTAT(bad_crc_event),
1097 MIBSTAT(collision),
1098 MIBSTAT(late_collision),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001099};
1100
Lennert Buytenheke5371492008-06-01 02:18:13 +02001101static int mv643xx_eth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001102{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001103 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001104 int err;
1105
1106 spin_lock_irq(&mp->lock);
1107 err = mii_ethtool_gset(&mp->mii, cmd);
1108 spin_unlock_irq(&mp->lock);
1109
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001110 /*
1111 * The MAC does not support 1000baseT_Half.
1112 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001113 cmd->supported &= ~SUPPORTED_1000baseT_Half;
1114 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1115
1116 return err;
1117}
1118
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001119static int mv643xx_eth_get_settings_phyless(struct net_device *dev, struct ethtool_cmd *cmd)
1120{
1121 cmd->supported = SUPPORTED_MII;
1122 cmd->advertising = ADVERTISED_MII;
1123 cmd->speed = SPEED_1000;
1124 cmd->duplex = DUPLEX_FULL;
1125 cmd->port = PORT_MII;
1126 cmd->phy_address = 0;
1127 cmd->transceiver = XCVR_INTERNAL;
1128 cmd->autoneg = AUTONEG_DISABLE;
1129 cmd->maxtxpkt = 1;
1130 cmd->maxrxpkt = 1;
1131
1132 return 0;
1133}
1134
Lennert Buytenheke5371492008-06-01 02:18:13 +02001135static int mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001136{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001137 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001138 int err;
1139
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001140 /*
1141 * The MAC does not support 1000baseT_Half.
1142 */
1143 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1144
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001145 spin_lock_irq(&mp->lock);
1146 err = mii_ethtool_sset(&mp->mii, cmd);
1147 spin_unlock_irq(&mp->lock);
1148
1149 return err;
1150}
1151
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001152static int mv643xx_eth_set_settings_phyless(struct net_device *dev, struct ethtool_cmd *cmd)
1153{
1154 return -EINVAL;
1155}
1156
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001157static void mv643xx_eth_get_drvinfo(struct net_device *dev,
1158 struct ethtool_drvinfo *drvinfo)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001159{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001160 strncpy(drvinfo->driver, mv643xx_eth_driver_name, 32);
1161 strncpy(drvinfo->version, mv643xx_eth_driver_version, 32);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001162 strncpy(drvinfo->fw_version, "N/A", 32);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001163 strncpy(drvinfo->bus_info, "platform", 32);
Lennert Buytenhek16820052008-06-01 11:40:29 +02001164 drvinfo->n_stats = ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001165}
1166
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001167static int mv643xx_eth_nway_reset(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001168{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001169 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001170
1171 return mii_nway_restart(&mp->mii);
1172}
1173
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001174static int mv643xx_eth_nway_reset_phyless(struct net_device *dev)
1175{
1176 return -EINVAL;
1177}
1178
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001179static u32 mv643xx_eth_get_link(struct net_device *dev)
1180{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001181 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001182
1183 return mii_link_ok(&mp->mii);
1184}
1185
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001186static u32 mv643xx_eth_get_link_phyless(struct net_device *dev)
1187{
1188 return 1;
1189}
1190
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001191static void mv643xx_eth_get_strings(struct net_device *dev,
1192 uint32_t stringset, uint8_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001193{
1194 int i;
1195
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001196 if (stringset == ETH_SS_STATS) {
1197 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001198 memcpy(data + i * ETH_GSTRING_LEN,
Lennert Buytenhek16820052008-06-01 11:40:29 +02001199 mv643xx_eth_stats[i].stat_string,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001200 ETH_GSTRING_LEN);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001201 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001202 }
1203}
1204
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001205static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
1206 struct ethtool_stats *stats,
1207 uint64_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001208{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001209 struct mv643xx_eth_private *mp = dev->priv;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001210 int i;
1211
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001212 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001213
Lennert Buytenhek16820052008-06-01 11:40:29 +02001214 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
1215 const struct mv643xx_eth_stats *stat;
1216 void *p;
1217
1218 stat = mv643xx_eth_stats + i;
1219
1220 if (stat->netdev_off >= 0)
1221 p = ((void *)mp->dev) + stat->netdev_off;
1222 else
1223 p = ((void *)mp) + stat->mp_off;
1224
1225 data[i] = (stat->sizeof_stat == 8) ?
1226 *(uint64_t *)p : *(uint32_t *)p;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001227 }
1228}
1229
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001230static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001231{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001232 if (sset == ETH_SS_STATS)
Lennert Buytenhek16820052008-06-01 11:40:29 +02001233 return ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001234
1235 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001236}
1237
Lennert Buytenheke5371492008-06-01 02:18:13 +02001238static const struct ethtool_ops mv643xx_eth_ethtool_ops = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001239 .get_settings = mv643xx_eth_get_settings,
1240 .set_settings = mv643xx_eth_set_settings,
1241 .get_drvinfo = mv643xx_eth_get_drvinfo,
1242 .nway_reset = mv643xx_eth_nway_reset,
1243 .get_link = mv643xx_eth_get_link,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001244 .set_sg = ethtool_op_set_sg,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001245 .get_strings = mv643xx_eth_get_strings,
1246 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001247 .get_sset_count = mv643xx_eth_get_sset_count,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001248};
1249
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001250static const struct ethtool_ops mv643xx_eth_ethtool_ops_phyless = {
1251 .get_settings = mv643xx_eth_get_settings_phyless,
1252 .set_settings = mv643xx_eth_set_settings_phyless,
1253 .get_drvinfo = mv643xx_eth_get_drvinfo,
1254 .nway_reset = mv643xx_eth_nway_reset_phyless,
1255 .get_link = mv643xx_eth_get_link_phyless,
1256 .set_sg = ethtool_op_set_sg,
1257 .get_strings = mv643xx_eth_get_strings,
1258 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
1259 .get_sset_count = mv643xx_eth_get_sset_count,
1260};
1261
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001262
1263/* address handling *********************************************************/
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001264static void uc_addr_get(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001265{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001266 unsigned int mac_h;
1267 unsigned int mac_l;
1268
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001269 mac_h = rdl(mp, MAC_ADDR_HIGH(mp->port_num));
1270 mac_l = rdl(mp, MAC_ADDR_LOW(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001271
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001272 addr[0] = (mac_h >> 24) & 0xff;
1273 addr[1] = (mac_h >> 16) & 0xff;
1274 addr[2] = (mac_h >> 8) & 0xff;
1275 addr[3] = mac_h & 0xff;
1276 addr[4] = (mac_l >> 8) & 0xff;
1277 addr[5] = mac_l & 0xff;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001278}
1279
Lennert Buytenheke5371492008-06-01 02:18:13 +02001280static void init_mac_tables(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001281{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001282 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001283
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001284 for (i = 0; i < 0x100; i += 4) {
1285 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1286 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001287 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001288
1289 for (i = 0; i < 0x10; i += 4)
1290 wrl(mp, UNICAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001291}
1292
Lennert Buytenheke5371492008-06-01 02:18:13 +02001293static void set_filter_table_entry(struct mv643xx_eth_private *mp,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001294 int table, unsigned char entry)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001295{
1296 unsigned int table_reg;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001297
1298 /* Set "accepts frame bit" at specified table entry */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001299 table_reg = rdl(mp, table + (entry & 0xfc));
1300 table_reg |= 0x01 << (8 * (entry & 3));
1301 wrl(mp, table + (entry & 0xfc), table_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001302}
1303
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001304static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001305{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001306 unsigned int mac_h;
1307 unsigned int mac_l;
1308 int table;
1309
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001310 mac_l = (addr[4] << 8) | addr[5];
1311 mac_h = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001312
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001313 wrl(mp, MAC_ADDR_LOW(mp->port_num), mac_l);
1314 wrl(mp, MAC_ADDR_HIGH(mp->port_num), mac_h);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001315
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001316 table = UNICAST_TABLE(mp->port_num);
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001317 set_filter_table_entry(mp, table, addr[5] & 0x0f);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001318}
1319
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001320static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
1321{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001322 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001323
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001324 /* +2 is for the offset of the HW addr type */
1325 memcpy(dev->dev_addr, addr + 2, 6);
1326
1327 init_mac_tables(mp);
1328 uc_addr_set(mp, dev->dev_addr);
1329
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001330 return 0;
1331}
1332
Lennert Buytenhek69876562008-06-01 11:43:32 +02001333static int addr_crc(unsigned char *addr)
1334{
1335 int crc = 0;
1336 int i;
1337
1338 for (i = 0; i < 6; i++) {
1339 int j;
1340
1341 crc = (crc ^ addr[i]) << 8;
1342 for (j = 7; j >= 0; j--) {
1343 if (crc & (0x100 << j))
1344 crc ^= 0x107 << j;
1345 }
1346 }
1347
1348 return crc;
1349}
1350
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001351static void mv643xx_eth_set_rx_mode(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001352{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001353 struct mv643xx_eth_private *mp = netdev_priv(dev);
1354 u32 port_config;
1355 struct dev_addr_list *addr;
1356 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001357
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001358 port_config = rdl(mp, PORT_CONFIG(mp->port_num));
1359 if (dev->flags & IFF_PROMISC)
1360 port_config |= UNICAST_PROMISCUOUS_MODE;
1361 else
1362 port_config &= ~UNICAST_PROMISCUOUS_MODE;
1363 wrl(mp, PORT_CONFIG(mp->port_num), port_config);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001364
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001365 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
1366 int port_num = mp->port_num;
1367 u32 accept = 0x01010101;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001368
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001369 for (i = 0; i < 0x100; i += 4) {
1370 wrl(mp, SPECIAL_MCAST_TABLE(port_num) + i, accept);
1371 wrl(mp, OTHER_MCAST_TABLE(port_num) + i, accept);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001372 }
1373 return;
1374 }
1375
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001376 for (i = 0; i < 0x100; i += 4) {
1377 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1378 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001379 }
1380
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001381 for (addr = dev->mc_list; addr != NULL; addr = addr->next) {
1382 u8 *a = addr->da_addr;
1383 int table;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001384
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001385 if (addr->da_addrlen != 6)
1386 continue;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001387
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001388 if (memcmp(a, "\x01\x00\x5e\x00\x00", 5) == 0) {
1389 table = SPECIAL_MCAST_TABLE(mp->port_num);
1390 set_filter_table_entry(mp, table, a[5]);
1391 } else {
1392 int crc = addr_crc(a);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001393
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001394 table = OTHER_MCAST_TABLE(mp->port_num);
1395 set_filter_table_entry(mp, table, crc);
1396 }
1397 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001398}
1399
1400
1401/* rx/tx queue initialisation ***********************************************/
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001402static int rxq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001403{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001404 struct rx_queue *rxq = mp->rxq + index;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001405 struct rx_desc *rx_desc;
1406 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001407 int i;
1408
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001409 rxq->index = index;
1410
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001411 rxq->rx_ring_size = mp->default_rx_ring_size;
1412
1413 rxq->rx_desc_count = 0;
1414 rxq->rx_curr_desc = 0;
1415 rxq->rx_used_desc = 0;
1416
1417 size = rxq->rx_ring_size * sizeof(struct rx_desc);
1418
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001419 if (index == mp->rxq_primary && size <= mp->rx_desc_sram_size) {
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001420 rxq->rx_desc_area = ioremap(mp->rx_desc_sram_addr,
1421 mp->rx_desc_sram_size);
1422 rxq->rx_desc_dma = mp->rx_desc_sram_addr;
1423 } else {
1424 rxq->rx_desc_area = dma_alloc_coherent(NULL, size,
1425 &rxq->rx_desc_dma,
1426 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001427 }
1428
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001429 if (rxq->rx_desc_area == NULL) {
1430 dev_printk(KERN_ERR, &mp->dev->dev,
1431 "can't allocate rx ring (%d bytes)\n", size);
1432 goto out;
1433 }
1434 memset(rxq->rx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001435
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001436 rxq->rx_desc_area_size = size;
1437 rxq->rx_skb = kmalloc(rxq->rx_ring_size * sizeof(*rxq->rx_skb),
1438 GFP_KERNEL);
1439 if (rxq->rx_skb == NULL) {
1440 dev_printk(KERN_ERR, &mp->dev->dev,
1441 "can't allocate rx skb ring\n");
1442 goto out_free;
1443 }
1444
1445 rx_desc = (struct rx_desc *)rxq->rx_desc_area;
1446 for (i = 0; i < rxq->rx_ring_size; i++) {
1447 int nexti = (i + 1) % rxq->rx_ring_size;
1448 rx_desc[i].next_desc_ptr = rxq->rx_desc_dma +
1449 nexti * sizeof(struct rx_desc);
1450 }
1451
1452 init_timer(&rxq->rx_oom);
1453 rxq->rx_oom.data = (unsigned long)rxq;
1454 rxq->rx_oom.function = rxq_refill_timer_wrapper;
1455
1456 return 0;
1457
1458
1459out_free:
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001460 if (index == mp->rxq_primary && size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001461 iounmap(rxq->rx_desc_area);
1462 else
1463 dma_free_coherent(NULL, size,
1464 rxq->rx_desc_area,
1465 rxq->rx_desc_dma);
1466
1467out:
1468 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001469}
1470
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001471static void rxq_deinit(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001472{
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001473 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
1474 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001475
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001476 rxq_disable(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001477
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001478 del_timer_sync(&rxq->rx_oom);
1479
1480 for (i = 0; i < rxq->rx_ring_size; i++) {
1481 if (rxq->rx_skb[i]) {
1482 dev_kfree_skb(rxq->rx_skb[i]);
1483 rxq->rx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001484 }
1485 }
1486
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001487 if (rxq->rx_desc_count) {
1488 dev_printk(KERN_ERR, &mp->dev->dev,
1489 "error freeing rx ring -- %d skbs stuck\n",
1490 rxq->rx_desc_count);
1491 }
1492
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001493 if (rxq->index == mp->rxq_primary &&
1494 rxq->rx_desc_area_size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001495 iounmap(rxq->rx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001496 else
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001497 dma_free_coherent(NULL, rxq->rx_desc_area_size,
1498 rxq->rx_desc_area, rxq->rx_desc_dma);
1499
1500 kfree(rxq->rx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001501}
1502
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001503static int txq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001504{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001505 struct tx_queue *txq = mp->txq + index;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001506 struct tx_desc *tx_desc;
1507 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001508 int i;
1509
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001510 txq->index = index;
1511
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001512 txq->tx_ring_size = mp->default_tx_ring_size;
1513
1514 txq->tx_desc_count = 0;
1515 txq->tx_curr_desc = 0;
1516 txq->tx_used_desc = 0;
1517
1518 size = txq->tx_ring_size * sizeof(struct tx_desc);
1519
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001520 if (index == mp->txq_primary && size <= mp->tx_desc_sram_size) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001521 txq->tx_desc_area = ioremap(mp->tx_desc_sram_addr,
1522 mp->tx_desc_sram_size);
1523 txq->tx_desc_dma = mp->tx_desc_sram_addr;
1524 } else {
1525 txq->tx_desc_area = dma_alloc_coherent(NULL, size,
1526 &txq->tx_desc_dma,
1527 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001528 }
1529
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001530 if (txq->tx_desc_area == NULL) {
1531 dev_printk(KERN_ERR, &mp->dev->dev,
1532 "can't allocate tx ring (%d bytes)\n", size);
1533 goto out;
1534 }
1535 memset(txq->tx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001536
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001537 txq->tx_desc_area_size = size;
1538 txq->tx_skb = kmalloc(txq->tx_ring_size * sizeof(*txq->tx_skb),
1539 GFP_KERNEL);
1540 if (txq->tx_skb == NULL) {
1541 dev_printk(KERN_ERR, &mp->dev->dev,
1542 "can't allocate tx skb ring\n");
1543 goto out_free;
1544 }
1545
1546 tx_desc = (struct tx_desc *)txq->tx_desc_area;
1547 for (i = 0; i < txq->tx_ring_size; i++) {
1548 int nexti = (i + 1) % txq->tx_ring_size;
1549 tx_desc[i].next_desc_ptr = txq->tx_desc_dma +
1550 nexti * sizeof(struct tx_desc);
1551 }
1552
1553 return 0;
1554
1555
1556out_free:
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001557 if (index == mp->txq_primary && size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001558 iounmap(txq->tx_desc_area);
1559 else
1560 dma_free_coherent(NULL, size,
1561 txq->tx_desc_area,
1562 txq->tx_desc_dma);
1563
1564out:
1565 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001566}
1567
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001568static void txq_reclaim(struct tx_queue *txq, int force)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001569{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001570 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001571 unsigned long flags;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001572
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001573 spin_lock_irqsave(&mp->lock, flags);
1574 while (txq->tx_desc_count > 0) {
1575 int tx_index;
1576 struct tx_desc *desc;
1577 u32 cmd_sts;
1578 struct sk_buff *skb;
1579 dma_addr_t addr;
1580 int count;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001581
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001582 tx_index = txq->tx_used_desc;
1583 desc = &txq->tx_desc_area[tx_index];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001584 cmd_sts = desc->cmd_sts;
1585
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001586 if (!force && (cmd_sts & BUFFER_OWNED_BY_DMA))
1587 break;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001588
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001589 txq->tx_used_desc = (tx_index + 1) % txq->tx_ring_size;
1590 txq->tx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001591
1592 addr = desc->buf_ptr;
1593 count = desc->byte_cnt;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001594 skb = txq->tx_skb[tx_index];
1595 txq->tx_skb[tx_index] = NULL;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001596
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001597 if (cmd_sts & ERROR_SUMMARY) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001598 dev_printk(KERN_INFO, &mp->dev->dev, "tx error\n");
1599 mp->dev->stats.tx_errors++;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001600 }
1601
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001602 /*
1603 * Drop mp->lock while we free the skb.
1604 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001605 spin_unlock_irqrestore(&mp->lock, flags);
1606
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001607 if (cmd_sts & TX_FIRST_DESC)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001608 dma_unmap_single(NULL, addr, count, DMA_TO_DEVICE);
1609 else
1610 dma_unmap_page(NULL, addr, count, DMA_TO_DEVICE);
1611
1612 if (skb)
1613 dev_kfree_skb_irq(skb);
1614
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001615 spin_lock_irqsave(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001616 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001617 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001618}
1619
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001620static void txq_deinit(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001621{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001622 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001623
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001624 txq_disable(txq);
1625 txq_reclaim(txq, 1);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001626
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001627 BUG_ON(txq->tx_used_desc != txq->tx_curr_desc);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001628
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001629 if (txq->index == mp->txq_primary &&
1630 txq->tx_desc_area_size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001631 iounmap(txq->tx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001632 else
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001633 dma_free_coherent(NULL, txq->tx_desc_area_size,
1634 txq->tx_desc_area, txq->tx_desc_dma);
1635
1636 kfree(txq->tx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001637}
1638
1639
1640/* netdev ops and related ***************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001641static void update_pscr(struct mv643xx_eth_private *mp, int speed, int duplex)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001642{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001643 u32 pscr_o;
1644 u32 pscr_n;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001645
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001646 pscr_o = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001647
1648 /* clear speed, duplex and rx buffer size fields */
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001649 pscr_n = pscr_o & ~(SET_MII_SPEED_TO_100 |
1650 SET_GMII_SPEED_TO_1000 |
1651 SET_FULL_DUPLEX_MODE |
1652 MAX_RX_PACKET_MASK);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001653
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001654 if (speed == SPEED_1000) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001655 pscr_n |= SET_GMII_SPEED_TO_1000 | MAX_RX_PACKET_9700BYTE;
1656 } else {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001657 if (speed == SPEED_100)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001658 pscr_n |= SET_MII_SPEED_TO_100;
1659 pscr_n |= MAX_RX_PACKET_1522BYTE;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001660 }
1661
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001662 if (duplex == DUPLEX_FULL)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001663 pscr_n |= SET_FULL_DUPLEX_MODE;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001664
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001665 if (pscr_n != pscr_o) {
1666 if ((pscr_o & SERIAL_PORT_ENABLE) == 0)
1667 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
1668 else {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001669 int i;
1670
1671 for (i = 0; i < 8; i++)
1672 if (mp->txq_mask & (1 << i))
1673 txq_disable(mp->txq + i);
1674
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001675 pscr_o &= ~SERIAL_PORT_ENABLE;
1676 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_o);
1677 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
1678 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001679
1680 for (i = 0; i < 8; i++)
1681 if (mp->txq_mask & (1 << i))
1682 txq_enable(mp->txq + i);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001683 }
1684 }
1685}
1686
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001687static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001688{
1689 struct net_device *dev = (struct net_device *)dev_id;
Lennert Buytenheke5371492008-06-01 02:18:13 +02001690 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001691 u32 int_cause;
1692 u32 int_cause_ext;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001693
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001694 int_cause = rdl(mp, INT_CAUSE(mp->port_num)) &
1695 (INT_TX_END | INT_RX | INT_EXT);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001696 if (int_cause == 0)
1697 return IRQ_NONE;
1698
1699 int_cause_ext = 0;
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001700 if (int_cause & INT_EXT) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001701 int_cause_ext = rdl(mp, INT_CAUSE_EXT(mp->port_num))
Lennert Buytenhek073a3452008-06-01 02:00:31 +02001702 & (INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001703 wrl(mp, INT_CAUSE_EXT(mp->port_num), ~int_cause_ext);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001704 }
1705
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001706 if (int_cause_ext & (INT_EXT_PHY | INT_EXT_LINK)) {
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001707 if (mp->phy_addr == -1 || mii_link_ok(&mp->mii)) {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001708 int i;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001709
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001710 if (mp->phy_addr != -1) {
1711 struct ethtool_cmd cmd;
1712
1713 mii_ethtool_gset(&mp->mii, &cmd);
1714 update_pscr(mp, cmd.speed, cmd.duplex);
1715 }
1716
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001717 for (i = 0; i < 8; i++)
1718 if (mp->txq_mask & (1 << i))
1719 txq_enable(mp->txq + i);
1720
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001721 if (!netif_carrier_ok(dev)) {
1722 netif_carrier_on(dev);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001723 __txq_maybe_wake(mp->txq + mp->txq_primary);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001724 }
1725 } else if (netif_carrier_ok(dev)) {
1726 netif_stop_queue(dev);
1727 netif_carrier_off(dev);
1728 }
1729 }
1730
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001731 /*
1732 * RxBuffer or RxError set for any of the 8 queues?
1733 */
Lennert Buytenheke5371492008-06-01 02:18:13 +02001734#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001735 if (int_cause & INT_RX) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001736 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001737 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001738
1739 netif_rx_schedule(dev, &mp->napi);
1740 }
1741#else
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001742 if (int_cause & INT_RX) {
1743 int i;
1744
1745 for (i = 7; i >= 0; i--)
1746 if (mp->rxq_mask & (1 << i))
1747 rxq_process(mp->rxq + i, INT_MAX);
1748 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001749#endif
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001750
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001751 /*
1752 * TxBuffer or TxError set for any of the 8 queues?
1753 */
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001754 if (int_cause_ext & INT_EXT_TX) {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001755 int i;
1756
1757 for (i = 0; i < 8; i++)
1758 if (mp->txq_mask & (1 << i))
1759 txq_reclaim(mp->txq + i, 0);
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001760
1761 /*
1762 * Enough space again in the primary TX queue for a
1763 * full packet?
1764 */
1765 spin_lock(&mp->lock);
1766 __txq_maybe_wake(mp->txq + mp->txq_primary);
1767 spin_unlock(&mp->lock);
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001768 }
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001769
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001770 /*
1771 * Any TxEnd interrupts?
1772 */
1773 if (int_cause & INT_TX_END) {
1774 int i;
1775
1776 wrl(mp, INT_CAUSE(mp->port_num), ~(int_cause & INT_TX_END));
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001777
1778 spin_lock(&mp->lock);
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001779 for (i = 0; i < 8; i++) {
1780 struct tx_queue *txq = mp->txq + i;
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001781 u32 hw_desc_ptr;
1782 u32 expected_ptr;
1783
1784 if ((int_cause & (INT_TX_END_0 << i)) == 0)
1785 continue;
1786
1787 hw_desc_ptr =
1788 rdl(mp, TXQ_CURRENT_DESC_PTR(mp->port_num, i));
1789 expected_ptr = (u32)txq->tx_desc_dma +
1790 txq->tx_curr_desc * sizeof(struct tx_desc);
1791
1792 if (hw_desc_ptr != expected_ptr)
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001793 txq_enable(txq);
1794 }
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001795 spin_unlock(&mp->lock);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001796 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001797
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001798 return IRQ_HANDLED;
1799}
1800
Lennert Buytenheke5371492008-06-01 02:18:13 +02001801static void phy_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001802{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001803 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001804
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001805 smi_reg_read(mp, mp->phy_addr, 0, &data);
1806 data |= 0x8000;
1807 smi_reg_write(mp, mp->phy_addr, 0, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001808
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001809 do {
1810 udelay(1);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001811 smi_reg_read(mp, mp->phy_addr, 0, &data);
1812 } while (data & 0x8000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001813}
1814
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001815static void port_start(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001816{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001817 u32 pscr;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001818 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001819
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001820 /*
1821 * Configure basic link parameters.
1822 */
1823 pscr = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
1824 pscr &= ~(SERIAL_PORT_ENABLE | FORCE_LINK_PASS);
1825 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1826 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL |
1827 DISABLE_AUTO_NEG_SPEED_GMII |
1828 DISABLE_AUTO_NEG_FOR_DUPLEX |
1829 DO_NOT_FORCE_LINK_FAIL |
1830 SERIAL_PORT_CONTROL_RESERVED;
1831 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1832 pscr |= SERIAL_PORT_ENABLE;
1833 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001834
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001835 wrl(mp, SDMA_CONFIG(mp->port_num), PORT_SDMA_CONFIG_DEFAULT_VALUE);
1836
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001837 /*
1838 * Perform PHY reset, if there is a PHY.
1839 */
1840 if (mp->phy_addr != -1) {
1841 struct ethtool_cmd cmd;
1842
1843 mv643xx_eth_get_settings(mp->dev, &cmd);
1844 phy_reset(mp);
1845 mv643xx_eth_set_settings(mp->dev, &cmd);
1846 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001847
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001848 /*
1849 * Configure TX path and queues.
1850 */
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001851 tx_set_rate(mp, 1000000000, 16777216);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001852 for (i = 0; i < 8; i++) {
1853 struct tx_queue *txq = mp->txq + i;
1854 int off = TXQ_CURRENT_DESC_PTR(mp->port_num, i);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001855 u32 addr;
1856
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001857 if ((mp->txq_mask & (1 << i)) == 0)
1858 continue;
1859
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001860 addr = (u32)txq->tx_desc_dma;
1861 addr += txq->tx_curr_desc * sizeof(struct tx_desc);
1862 wrl(mp, off, addr);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001863
1864 txq_set_rate(txq, 1000000000, 16777216);
1865 txq_set_fixed_prio_mode(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001866 }
1867
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001868 /*
1869 * Add configured unicast address to address filter table.
1870 */
1871 uc_addr_set(mp, mp->dev->dev_addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001872
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02001873 /*
1874 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
1875 * frames to RX queue #0.
1876 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001877 wrl(mp, PORT_CONFIG(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001878
Lennert Buytenhek376489a2008-06-01 01:17:44 +02001879 /*
1880 * Treat BPDUs as normal multicasts, and disable partition mode.
1881 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001882 wrl(mp, PORT_CONFIG_EXT(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001883
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001884 /*
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001885 * Enable the receive queues.
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001886 */
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001887 for (i = 0; i < 8; i++) {
1888 struct rx_queue *rxq = mp->rxq + i;
1889 int off = RXQ_CURRENT_DESC_PTR(mp->port_num, i);
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001890 u32 addr;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001891
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001892 if ((mp->rxq_mask & (1 << i)) == 0)
1893 continue;
1894
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001895 addr = (u32)rxq->rx_desc_dma;
1896 addr += rxq->rx_curr_desc * sizeof(struct rx_desc);
1897 wrl(mp, off, addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001898
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001899 rxq_enable(rxq);
1900 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001901}
1902
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001903static void set_rx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001904{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001905 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02001906 u32 val;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001907
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02001908 val = rdl(mp, SDMA_CONFIG(mp->port_num));
1909 if (mp->shared->extended_rx_coal_limit) {
1910 if (coal > 0xffff)
1911 coal = 0xffff;
1912 val &= ~0x023fff80;
1913 val |= (coal & 0x8000) << 10;
1914 val |= (coal & 0x7fff) << 7;
1915 } else {
1916 if (coal > 0x3fff)
1917 coal = 0x3fff;
1918 val &= ~0x003fff00;
1919 val |= (coal & 0x3fff) << 8;
1920 }
1921 wrl(mp, SDMA_CONFIG(mp->port_num), val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001922}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001923
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001924static void set_tx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001925{
1926 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
1927
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001928 if (coal > 0x3fff)
1929 coal = 0x3fff;
1930 wrl(mp, TX_FIFO_URGENT_THRESHOLD(mp->port_num), (coal & 0x3fff) << 4);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001931}
1932
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001933static int mv643xx_eth_open(struct net_device *dev)
1934{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001935 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001936 int err;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001937 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001938
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001939 wrl(mp, INT_CAUSE(mp->port_num), 0);
1940 wrl(mp, INT_CAUSE_EXT(mp->port_num), 0);
1941 rdl(mp, INT_CAUSE_EXT(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001942
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001943 err = request_irq(dev->irq, mv643xx_eth_irq,
1944 IRQF_SHARED | IRQF_SAMPLE_RANDOM,
1945 dev->name, dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001946 if (err) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001947 dev_printk(KERN_ERR, &dev->dev, "can't assign irq\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001948 return -EAGAIN;
1949 }
1950
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001951 init_mac_tables(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001952
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001953 for (i = 0; i < 8; i++) {
1954 if ((mp->rxq_mask & (1 << i)) == 0)
1955 continue;
1956
1957 err = rxq_init(mp, i);
1958 if (err) {
1959 while (--i >= 0)
1960 if (mp->rxq_mask & (1 << i))
1961 rxq_deinit(mp->rxq + i);
1962 goto out;
1963 }
1964
1965 rxq_refill(mp->rxq + i);
1966 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001967
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001968 for (i = 0; i < 8; i++) {
1969 if ((mp->txq_mask & (1 << i)) == 0)
1970 continue;
1971
1972 err = txq_init(mp, i);
1973 if (err) {
1974 while (--i >= 0)
1975 if (mp->txq_mask & (1 << i))
1976 txq_deinit(mp->txq + i);
1977 goto out_free;
1978 }
1979 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001980
Lennert Buytenheke5371492008-06-01 02:18:13 +02001981#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001982 napi_enable(&mp->napi);
1983#endif
1984
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001985 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001986
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001987 set_rx_coal(mp, 0);
1988 set_tx_coal(mp, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001989
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001990 wrl(mp, INT_MASK_EXT(mp->port_num),
1991 INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001992
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001993 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001994
1995 return 0;
1996
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001997
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001998out_free:
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001999 for (i = 0; i < 8; i++)
2000 if (mp->rxq_mask & (1 << i))
2001 rxq_deinit(mp->rxq + i);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002002out:
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002003 free_irq(dev->irq, dev);
2004
2005 return err;
2006}
2007
Lennert Buytenheke5371492008-06-01 02:18:13 +02002008static void port_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002009{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002010 unsigned int data;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002011 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002012
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002013 for (i = 0; i < 8; i++) {
2014 if (mp->rxq_mask & (1 << i))
2015 rxq_disable(mp->rxq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002016 if (mp->txq_mask & (1 << i))
2017 txq_disable(mp->txq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002018 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002019 while (!(rdl(mp, PORT_STATUS(mp->port_num)) & TX_FIFO_EMPTY))
2020 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002021
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002022 /* Reset the Enable bit in the Configuration Register */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002023 data = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
2024 data &= ~(SERIAL_PORT_ENABLE |
2025 DO_NOT_FORCE_LINK_FAIL |
2026 FORCE_LINK_PASS);
2027 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002028}
2029
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002030static int mv643xx_eth_stop(struct net_device *dev)
2031{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002032 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002033 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002034
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002035 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
2036 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002037
Lennert Buytenheke5371492008-06-01 02:18:13 +02002038#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002039 napi_disable(&mp->napi);
2040#endif
2041 netif_carrier_off(dev);
2042 netif_stop_queue(dev);
2043
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002044 free_irq(dev->irq, dev);
2045
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002046 port_reset(mp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002047 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002048
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002049 for (i = 0; i < 8; i++) {
2050 if (mp->rxq_mask & (1 << i))
2051 rxq_deinit(mp->rxq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002052 if (mp->txq_mask & (1 << i))
2053 txq_deinit(mp->txq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002054 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002055
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002056 return 0;
2057}
2058
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002059static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002060{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002061 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002062
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002063 if (mp->phy_addr != -1)
2064 return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL);
2065
2066 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002067}
2068
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002069static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
2070{
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002071 struct mv643xx_eth_private *mp = netdev_priv(dev);
2072
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002073 if (new_mtu < 64 || new_mtu > 9500)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002074 return -EINVAL;
2075
2076 dev->mtu = new_mtu;
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002077 tx_set_rate(mp, 1000000000, 16777216);
2078
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002079 if (!netif_running(dev))
2080 return 0;
2081
2082 /*
2083 * Stop and then re-open the interface. This will allocate RX
2084 * skbs of the new MTU.
2085 * There is a possible danger that the open will not succeed,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002086 * due to memory being full.
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002087 */
2088 mv643xx_eth_stop(dev);
2089 if (mv643xx_eth_open(dev)) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002090 dev_printk(KERN_ERR, &dev->dev,
2091 "fatal error on re-opening device after "
2092 "MTU change\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002093 }
2094
2095 return 0;
2096}
2097
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002098static void tx_timeout_task(struct work_struct *ugly)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002099{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002100 struct mv643xx_eth_private *mp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002101
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002102 mp = container_of(ugly, struct mv643xx_eth_private, tx_timeout_task);
2103 if (netif_running(mp->dev)) {
2104 netif_stop_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002105
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002106 port_reset(mp);
2107 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002108
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002109 __txq_maybe_wake(mp->txq + mp->txq_primary);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002110 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002111}
2112
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002113static void mv643xx_eth_tx_timeout(struct net_device *dev)
2114{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002115 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002116
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002117 dev_printk(KERN_INFO, &dev->dev, "tx timeout\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002118
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002119 schedule_work(&mp->tx_timeout_task);
2120}
2121
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002122#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002123static void mv643xx_eth_netpoll(struct net_device *dev)
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002124{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002125 struct mv643xx_eth_private *mp = netdev_priv(dev);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002126
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002127 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
2128 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002129
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002130 mv643xx_eth_irq(dev->irq, dev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002131
Lennert Buytenhekf2ca60f2008-07-07 00:03:00 +02002132 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002133}
2134#endif
2135
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002136static int mv643xx_eth_mdio_read(struct net_device *dev, int addr, int reg)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002137{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002138 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002139 int val;
2140
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002141 smi_reg_read(mp, addr, reg, &val);
2142
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002143 return val;
2144}
2145
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002146static void mv643xx_eth_mdio_write(struct net_device *dev, int addr, int reg, int val)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002147{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002148 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002149 smi_reg_write(mp, addr, reg, val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002150}
2151
2152
2153/* platform glue ************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02002154static void
2155mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private *msp,
2156 struct mbus_dram_target_info *dram)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002157{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002158 void __iomem *base = msp->base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002159 u32 win_enable;
2160 u32 win_protect;
2161 int i;
2162
2163 for (i = 0; i < 6; i++) {
2164 writel(0, base + WINDOW_BASE(i));
2165 writel(0, base + WINDOW_SIZE(i));
2166 if (i < 4)
2167 writel(0, base + WINDOW_REMAP_HIGH(i));
2168 }
2169
2170 win_enable = 0x3f;
2171 win_protect = 0;
2172
2173 for (i = 0; i < dram->num_cs; i++) {
2174 struct mbus_dram_window *cs = dram->cs + i;
2175
2176 writel((cs->base & 0xffff0000) |
2177 (cs->mbus_attr << 8) |
2178 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
2179 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
2180
2181 win_enable &= ~(1 << i);
2182 win_protect |= 3 << (2 * i);
2183 }
2184
2185 writel(win_enable, base + WINDOW_BAR_ENABLE);
2186 msp->win_protect = win_protect;
2187}
2188
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002189static void infer_hw_params(struct mv643xx_eth_shared_private *msp)
2190{
2191 /*
2192 * Check whether we have a 14-bit coal limit field in bits
2193 * [21:8], or a 16-bit coal limit in bits [25,21:7] of the
2194 * SDMA config register.
2195 */
2196 writel(0x02000000, msp->base + SDMA_CONFIG(0));
2197 if (readl(msp->base + SDMA_CONFIG(0)) & 0x02000000)
2198 msp->extended_rx_coal_limit = 1;
2199 else
2200 msp->extended_rx_coal_limit = 0;
Lennert Buytenhek1e881592008-06-02 01:57:36 +02002201
2202 /*
2203 * Check whether the TX rate control registers are in the
2204 * old or the new place.
2205 */
2206 writel(1, msp->base + TX_BW_MTU_MOVED(0));
2207 if (readl(msp->base + TX_BW_MTU_MOVED(0)) & 1)
2208 msp->tx_bw_control_moved = 1;
2209 else
2210 msp->tx_bw_control_moved = 0;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002211}
2212
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002213static int mv643xx_eth_shared_probe(struct platform_device *pdev)
2214{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002215 static int mv643xx_eth_version_printed = 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002216 struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002217 struct mv643xx_eth_shared_private *msp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002218 struct resource *res;
2219 int ret;
2220
Lennert Buytenheke5371492008-06-01 02:18:13 +02002221 if (!mv643xx_eth_version_printed++)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002222 printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n");
2223
2224 ret = -EINVAL;
2225 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2226 if (res == NULL)
2227 goto out;
2228
2229 ret = -ENOMEM;
2230 msp = kmalloc(sizeof(*msp), GFP_KERNEL);
2231 if (msp == NULL)
2232 goto out;
2233 memset(msp, 0, sizeof(*msp));
2234
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002235 msp->base = ioremap(res->start, res->end - res->start + 1);
2236 if (msp->base == NULL)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002237 goto out_free;
2238
2239 spin_lock_init(&msp->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002240
2241 /*
2242 * (Re-)program MBUS remapping windows if we are asked to.
2243 */
2244 if (pd != NULL && pd->dram != NULL)
2245 mv643xx_eth_conf_mbus_windows(msp, pd->dram);
2246
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002247 /*
2248 * Detect hardware parameters.
2249 */
2250 msp->t_clk = (pd != NULL && pd->t_clk != 0) ? pd->t_clk : 133000000;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002251 infer_hw_params(msp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002252
2253 platform_set_drvdata(pdev, msp);
2254
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002255 return 0;
2256
2257out_free:
2258 kfree(msp);
2259out:
2260 return ret;
2261}
2262
2263static int mv643xx_eth_shared_remove(struct platform_device *pdev)
2264{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002265 struct mv643xx_eth_shared_private *msp = platform_get_drvdata(pdev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002266
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002267 iounmap(msp->base);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002268 kfree(msp);
2269
2270 return 0;
2271}
2272
2273static struct platform_driver mv643xx_eth_shared_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002274 .probe = mv643xx_eth_shared_probe,
2275 .remove = mv643xx_eth_shared_remove,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002276 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002277 .name = MV643XX_ETH_SHARED_NAME,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002278 .owner = THIS_MODULE,
2279 },
2280};
2281
Lennert Buytenheke5371492008-06-01 02:18:13 +02002282static void phy_addr_set(struct mv643xx_eth_private *mp, int phy_addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002283{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002284 int addr_shift = 5 * mp->port_num;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002285 u32 data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002286
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002287 data = rdl(mp, PHY_ADDR);
2288 data &= ~(0x1f << addr_shift);
2289 data |= (phy_addr & 0x1f) << addr_shift;
2290 wrl(mp, PHY_ADDR, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002291}
2292
Lennert Buytenheke5371492008-06-01 02:18:13 +02002293static int phy_addr_get(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002294{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002295 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002296
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002297 data = rdl(mp, PHY_ADDR);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002298
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002299 return (data >> (5 * mp->port_num)) & 0x1f;
2300}
2301
2302static void set_params(struct mv643xx_eth_private *mp,
2303 struct mv643xx_eth_platform_data *pd)
2304{
2305 struct net_device *dev = mp->dev;
2306
2307 if (is_valid_ether_addr(pd->mac_addr))
2308 memcpy(dev->dev_addr, pd->mac_addr, 6);
2309 else
2310 uc_addr_get(mp, dev->dev_addr);
2311
2312 if (pd->phy_addr == -1) {
2313 mp->shared_smi = NULL;
2314 mp->phy_addr = -1;
2315 } else {
2316 mp->shared_smi = mp->shared;
2317 if (pd->shared_smi != NULL)
2318 mp->shared_smi = platform_get_drvdata(pd->shared_smi);
2319
2320 if (pd->force_phy_addr || pd->phy_addr) {
2321 mp->phy_addr = pd->phy_addr & 0x3f;
2322 phy_addr_set(mp, mp->phy_addr);
2323 } else {
2324 mp->phy_addr = phy_addr_get(mp);
2325 }
2326 }
2327
2328 mp->default_rx_ring_size = DEFAULT_RX_QUEUE_SIZE;
2329 if (pd->rx_queue_size)
2330 mp->default_rx_ring_size = pd->rx_queue_size;
2331 mp->rx_desc_sram_addr = pd->rx_sram_addr;
2332 mp->rx_desc_sram_size = pd->rx_sram_size;
2333
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002334 if (pd->rx_queue_mask)
2335 mp->rxq_mask = pd->rx_queue_mask;
2336 else
2337 mp->rxq_mask = 0x01;
2338 mp->rxq_primary = fls(mp->rxq_mask) - 1;
2339
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002340 mp->default_tx_ring_size = DEFAULT_TX_QUEUE_SIZE;
2341 if (pd->tx_queue_size)
2342 mp->default_tx_ring_size = pd->tx_queue_size;
2343 mp->tx_desc_sram_addr = pd->tx_sram_addr;
2344 mp->tx_desc_sram_size = pd->tx_sram_size;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002345
2346 if (pd->tx_queue_mask)
2347 mp->txq_mask = pd->tx_queue_mask;
2348 else
2349 mp->txq_mask = 0x01;
2350 mp->txq_primary = fls(mp->txq_mask) - 1;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002351}
2352
Lennert Buytenheke5371492008-06-01 02:18:13 +02002353static int phy_detect(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002354{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002355 unsigned int data;
2356 unsigned int data2;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002357
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002358 smi_reg_read(mp, mp->phy_addr, 0, &data);
2359 smi_reg_write(mp, mp->phy_addr, 0, data ^ 0x1000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002360
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002361 smi_reg_read(mp, mp->phy_addr, 0, &data2);
2362 if (((data ^ data2) & 0x1000) == 0)
2363 return -ENODEV;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002364
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002365 smi_reg_write(mp, mp->phy_addr, 0, data);
2366
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002367 return 0;
2368}
2369
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002370static int phy_init(struct mv643xx_eth_private *mp,
2371 struct mv643xx_eth_platform_data *pd)
James Chapmand0412d92006-01-27 01:15:30 -07002372{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002373 struct ethtool_cmd cmd;
2374 int err;
James Chapmand0412d92006-01-27 01:15:30 -07002375
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002376 err = phy_detect(mp);
2377 if (err) {
2378 dev_printk(KERN_INFO, &mp->dev->dev,
2379 "no PHY detected at addr %d\n", mp->phy_addr);
2380 return err;
James Chapmand0412d92006-01-27 01:15:30 -07002381 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002382 phy_reset(mp);
2383
2384 mp->mii.phy_id = mp->phy_addr;
2385 mp->mii.phy_id_mask = 0x3f;
2386 mp->mii.reg_num_mask = 0x1f;
2387 mp->mii.dev = mp->dev;
2388 mp->mii.mdio_read = mv643xx_eth_mdio_read;
2389 mp->mii.mdio_write = mv643xx_eth_mdio_write;
2390
2391 mp->mii.supports_gmii = mii_check_gmii_support(&mp->mii);
2392
2393 memset(&cmd, 0, sizeof(cmd));
2394
2395 cmd.port = PORT_MII;
2396 cmd.transceiver = XCVR_INTERNAL;
2397 cmd.phy_address = mp->phy_addr;
2398 if (pd->speed == 0) {
2399 cmd.autoneg = AUTONEG_ENABLE;
2400 cmd.speed = SPEED_100;
2401 cmd.advertising = ADVERTISED_10baseT_Half |
2402 ADVERTISED_10baseT_Full |
2403 ADVERTISED_100baseT_Half |
2404 ADVERTISED_100baseT_Full;
2405 if (mp->mii.supports_gmii)
2406 cmd.advertising |= ADVERTISED_1000baseT_Full;
2407 } else {
2408 cmd.autoneg = AUTONEG_DISABLE;
2409 cmd.speed = pd->speed;
2410 cmd.duplex = pd->duplex;
2411 }
2412
2413 update_pscr(mp, cmd.speed, cmd.duplex);
2414 mv643xx_eth_set_settings(mp->dev, &cmd);
2415
2416 return 0;
James Chapmand0412d92006-01-27 01:15:30 -07002417}
2418
Russell King3ae5eae2005-11-09 22:32:44 +00002419static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 struct mv643xx_eth_platform_data *pd;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002422 struct mv643xx_eth_private *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 struct resource *res;
Al Viroc5d64712007-10-13 08:30:26 +01002425 DECLARE_MAC_BUF(mac);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002426 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002428 pd = pdev->dev.platform_data;
2429 if (pd == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002430 dev_printk(KERN_ERR, &pdev->dev,
2431 "no mv643xx_eth_platform_data\n");
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002432 return -ENODEV;
2433 }
2434
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002435 if (pd->shared == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002436 dev_printk(KERN_ERR, &pdev->dev,
2437 "no mv643xx_eth_platform_data->shared\n");
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002438 return -ENODEV;
2439 }
2440
Lennert Buytenheke5371492008-06-01 02:18:13 +02002441 dev = alloc_etherdev(sizeof(struct mv643xx_eth_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 if (!dev)
2443 return -ENOMEM;
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002446 platform_set_drvdata(pdev, mp);
2447
2448 mp->shared = platform_get_drvdata(pd->shared);
2449 mp->port_num = pd->port_number;
2450
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002451 mp->dev = dev;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002452#ifdef MV643XX_ETH_NAPI
2453 netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, 64);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002454#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002456 set_params(mp, pd);
2457
2458 spin_lock_init(&mp->lock);
2459
2460 mib_counters_clear(mp);
2461 INIT_WORK(&mp->tx_timeout_task, tx_timeout_task);
2462
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002463 if (mp->phy_addr != -1) {
2464 err = phy_init(mp, pd);
2465 if (err)
2466 goto out;
2467
2468 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops);
2469 } else {
2470 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops_phyless);
2471 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002472
2473
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2475 BUG_ON(!res);
2476 dev->irq = res->start;
2477
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002478 dev->hard_start_xmit = mv643xx_eth_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 dev->open = mv643xx_eth_open;
2480 dev->stop = mv643xx_eth_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002482 dev->set_mac_address = mv643xx_eth_set_mac_address;
2483 dev->do_ioctl = mv643xx_eth_ioctl;
2484 dev->change_mtu = mv643xx_eth_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 dev->tx_timeout = mv643xx_eth_tx_timeout;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002486#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenheke5371492008-06-01 02:18:13 +02002487 dev->poll_controller = mv643xx_eth_netpoll;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002488#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 dev->base_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Lennert Buytenheke5371492008-06-01 02:18:13 +02002492#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 /*
2494 * Zero copy can only work if we use Discovery II memory. Else, we will
2495 * have to map the buffers to ISA memory which is only 16 MB
2496 */
Wolfram Joost63890572006-01-16 16:57:41 -07002497 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498#endif
James Chapmanc28a4f82006-01-27 01:13:15 -07002499
Olaf Heringb0b8dab2006-04-27 18:23:49 -07002500 SET_NETDEV_DEV(dev, &pdev->dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002501
2502 if (mp->shared->win_protect)
2503 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
2504
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 err = register_netdev(dev);
2506 if (err)
2507 goto out;
2508
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002509 dev_printk(KERN_NOTICE, &dev->dev, "port %d with MAC address %s\n",
2510 mp->port_num, print_mac(mac, dev->dev_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
2512 if (dev->features & NETIF_F_SG)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002513 dev_printk(KERN_NOTICE, &dev->dev, "scatter/gather enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
2515 if (dev->features & NETIF_F_IP_CSUM)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002516 dev_printk(KERN_NOTICE, &dev->dev, "tx checksum offload\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517
Lennert Buytenheke5371492008-06-01 02:18:13 +02002518#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002519 dev_printk(KERN_NOTICE, &dev->dev, "napi enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520#endif
2521
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002522 if (mp->tx_desc_sram_size > 0)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002523 dev_printk(KERN_NOTICE, &dev->dev, "configured with sram\n");
Nicolas DETb1529872005-10-28 17:46:30 -07002524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 return 0;
2526
2527out:
2528 free_netdev(dev);
2529
2530 return err;
2531}
2532
Russell King3ae5eae2005-11-09 22:32:44 +00002533static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002535 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002537 unregister_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 flush_scheduled_work();
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002539 free_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Russell King3ae5eae2005-11-09 22:32:44 +00002541 platform_set_drvdata(pdev, NULL);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 return 0;
2544}
2545
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002546static void mv643xx_eth_shutdown(struct platform_device *pdev)
2547{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002548 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002549
2550 /* Mask all interrupts on ethernet port */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002551 wrl(mp, INT_MASK(mp->port_num), 0);
2552 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002553
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002554 if (netif_running(mp->dev))
2555 port_reset(mp);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002556}
2557
Russell King3ae5eae2005-11-09 22:32:44 +00002558static struct platform_driver mv643xx_eth_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002559 .probe = mv643xx_eth_probe,
2560 .remove = mv643xx_eth_remove,
2561 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00002562 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002563 .name = MV643XX_ETH_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07002564 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002565 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566};
2567
Lennert Buytenheke5371492008-06-01 02:18:13 +02002568static int __init mv643xx_eth_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
2570 int rc;
2571
Russell King3ae5eae2005-11-09 22:32:44 +00002572 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00002574 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00002576 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return rc;
2580}
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002581module_init(mv643xx_eth_init_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Lennert Buytenheke5371492008-06-01 02:18:13 +02002583static void __exit mv643xx_eth_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
Russell King3ae5eae2005-11-09 22:32:44 +00002585 platform_driver_unregister(&mv643xx_eth_driver);
2586 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587}
Lennert Buytenheke5371492008-06-01 02:18:13 +02002588module_exit(mv643xx_eth_cleanup_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
Lennert Buytenhek45675bc2008-06-02 02:02:30 +02002590MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, "
2591 "Manish Lachwani, Dale Farnsworth and Lennert Buytenhek");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002593MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -07002594MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002595MODULE_ALIAS("platform:" MV643XX_ETH_NAME);