blob: c700c1f494e993a8b86b73f92986533af7f15052 [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 Buytenhekae9ae062008-07-15 02:15:24 +020093#define TX_IN_PROGRESS 0x00000080
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020094#define TXQ_COMMAND(p) (0x0448 + ((p) << 10))
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +020095#define TXQ_FIX_PRIO_CONF(p) (0x044c + ((p) << 10))
96#define TX_BW_RATE(p) (0x0450 + ((p) << 10))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020097#define TX_BW_MTU(p) (0x0458 + ((p) << 10))
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +020098#define TX_BW_BURST(p) (0x045c + ((p) << 10))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020099#define INT_CAUSE(p) (0x0460 + ((p) << 10))
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200100#define INT_TX_END_0 0x00080000
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +0200101#define INT_TX_END 0x07f80000
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200102#define INT_RX 0x0007fbfc
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200103#define INT_EXT 0x00000002
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200104#define INT_CAUSE_EXT(p) (0x0464 + ((p) << 10))
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200105#define INT_EXT_LINK 0x00100000
106#define INT_EXT_PHY 0x00010000
107#define INT_EXT_TX_ERROR_0 0x00000100
108#define INT_EXT_TX_0 0x00000001
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200109#define INT_EXT_TX 0x0000ffff
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200110#define INT_MASK(p) (0x0468 + ((p) << 10))
111#define INT_MASK_EXT(p) (0x046c + ((p) << 10))
112#define TX_FIFO_URGENT_THRESHOLD(p) (0x0474 + ((p) << 10))
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200113#define TXQ_FIX_PRIO_CONF_MOVED(p) (0x04dc + ((p) << 10))
114#define TX_BW_RATE_MOVED(p) (0x04e0 + ((p) << 10))
115#define TX_BW_MTU_MOVED(p) (0x04e8 + ((p) << 10))
116#define TX_BW_BURST_MOVED(p) (0x04ec + ((p) << 10))
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200117#define RXQ_CURRENT_DESC_PTR(p, q) (0x060c + ((p) << 10) + ((q) << 4))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200118#define RXQ_COMMAND(p) (0x0680 + ((p) << 10))
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200119#define TXQ_CURRENT_DESC_PTR(p, q) (0x06c0 + ((p) << 10) + ((q) << 2))
120#define TXQ_BW_TOKENS(p, q) (0x0700 + ((p) << 10) + ((q) << 4))
121#define TXQ_BW_CONF(p, q) (0x0704 + ((p) << 10) + ((q) << 4))
122#define TXQ_BW_WRR_CONF(p, q) (0x0708 + ((p) << 10) + ((q) << 4))
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200123#define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
124#define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
125#define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
126#define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200127
Lennert Buytenhek2679a552008-06-01 01:18:58 +0200128
129/*
130 * SDMA configuration register.
131 */
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200132#define RX_BURST_SIZE_4_64BIT (2 << 1)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200133#define BLM_RX_NO_SWAP (1 << 4)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200134#define BLM_TX_NO_SWAP (1 << 5)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200135#define TX_BURST_SIZE_4_64BIT (2 << 22)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200136
137#if defined(__BIG_ENDIAN)
138#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
139 RX_BURST_SIZE_4_64BIT | \
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200140 TX_BURST_SIZE_4_64BIT
141#elif defined(__LITTLE_ENDIAN)
142#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
143 RX_BURST_SIZE_4_64BIT | \
144 BLM_RX_NO_SWAP | \
145 BLM_TX_NO_SWAP | \
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200146 TX_BURST_SIZE_4_64BIT
147#else
148#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
149#endif
150
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200151
152/*
153 * Port serial control register.
154 */
155#define SET_MII_SPEED_TO_100 (1 << 24)
156#define SET_GMII_SPEED_TO_1000 (1 << 23)
157#define SET_FULL_DUPLEX_MODE (1 << 21)
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 Buytenhek6b368f62008-07-11 19:38:34 +0200408static void txq_reset_hw_ptr(struct tx_queue *txq)
409{
410 struct mv643xx_eth_private *mp = txq_to_mp(txq);
411 int off = TXQ_CURRENT_DESC_PTR(mp->port_num, txq->index);
412 u32 addr;
413
414 addr = (u32)txq->tx_desc_dma;
415 addr += txq->tx_curr_desc * sizeof(struct tx_desc);
416 wrl(mp, off, addr);
417}
418
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200419static void txq_enable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200420{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200421 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200422 wrl(mp, TXQ_COMMAND(mp->port_num), 1 << txq->index);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200423}
424
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200425static void txq_disable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200426{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200427 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200428 u8 mask = 1 << txq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200429
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200430 wrl(mp, TXQ_COMMAND(mp->port_num), mask << 8);
431 while (rdl(mp, TXQ_COMMAND(mp->port_num)) & mask)
432 udelay(10);
433}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200434
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200435static void __txq_maybe_wake(struct tx_queue *txq)
436{
437 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200438
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200439 /*
440 * netif_{stop,wake}_queue() flow control only applies to
441 * the primary queue.
442 */
443 BUG_ON(txq->index != mp->txq_primary);
444
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200445 if (txq->tx_ring_size - txq->tx_desc_count >= MAX_DESCS_PER_SKB)
446 netif_wake_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200447}
448
449
450/* rx ***********************************************************************/
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200451static void txq_reclaim(struct tx_queue *txq, int force);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200452
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200453static void rxq_refill(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200454{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200455 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200456 unsigned long flags;
457
458 spin_lock_irqsave(&mp->lock, flags);
459
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200460 while (rxq->rx_desc_count < rxq->rx_ring_size) {
461 int skb_size;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200462 struct sk_buff *skb;
463 int unaligned;
464 int rx;
465
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200466 /*
467 * Reserve 2+14 bytes for an ethernet header (the
468 * hardware automatically prepends 2 bytes of dummy
469 * data to each received packet), 4 bytes for a VLAN
470 * header, and 4 bytes for the trailing FCS -- 24
471 * bytes total.
472 */
473 skb_size = mp->dev->mtu + 24;
474
475 skb = dev_alloc_skb(skb_size + dma_get_cache_alignment() - 1);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200476 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 break;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200478
Ralf Baechle908b6372007-02-26 19:52:06 +0000479 unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700480 if (unaligned)
Ralf Baechle908b6372007-02-26 19:52:06 +0000481 skb_reserve(skb, dma_get_cache_alignment() - unaligned);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200482
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200483 rxq->rx_desc_count++;
484 rx = rxq->rx_used_desc;
485 rxq->rx_used_desc = (rx + 1) % rxq->rx_ring_size;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200486
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200487 rxq->rx_desc_area[rx].buf_ptr = dma_map_single(NULL, skb->data,
488 skb_size, DMA_FROM_DEVICE);
489 rxq->rx_desc_area[rx].buf_size = skb_size;
490 rxq->rx_skb[rx] = skb;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200491 wmb();
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200492 rxq->rx_desc_area[rx].cmd_sts = BUFFER_OWNED_BY_DMA |
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200493 RX_ENABLE_INTERRUPT;
494 wmb();
495
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200496 /*
497 * The hardware automatically prepends 2 bytes of
498 * dummy data to each received packet, so that the
499 * IP header ends up 16-byte aligned.
500 */
501 skb_reserve(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200503
Lennert Buytenhek12e4ab72008-06-02 01:58:01 +0200504 if (rxq->rx_desc_count != rxq->rx_ring_size) {
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200505 rxq->rx_oom.expires = jiffies + (HZ / 10);
506 add_timer(&rxq->rx_oom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200508
509 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200512static inline void rxq_refill_timer_wrapper(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200514 rxq_refill((struct rx_queue *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515}
516
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200517static int rxq_process(struct rx_queue *rxq, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200519 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
520 struct net_device_stats *stats = &mp->dev->stats;
521 int rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200523 rx = 0;
524 while (rx < budget) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200525 struct rx_desc *rx_desc;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200526 unsigned int cmd_sts;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200527 struct sk_buff *skb;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200528 unsigned long flags;
529
530 spin_lock_irqsave(&mp->lock, flags);
531
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200532 rx_desc = &rxq->rx_desc_area[rxq->rx_curr_desc];
Lennert Buytenhek96587662008-06-01 10:31:56 +0200533
534 cmd_sts = rx_desc->cmd_sts;
535 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
536 spin_unlock_irqrestore(&mp->lock, flags);
537 break;
538 }
539 rmb();
540
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200541 skb = rxq->rx_skb[rxq->rx_curr_desc];
542 rxq->rx_skb[rxq->rx_curr_desc] = NULL;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200543
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200544 rxq->rx_curr_desc = (rxq->rx_curr_desc + 1) % rxq->rx_ring_size;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200545
546 spin_unlock_irqrestore(&mp->lock, flags);
547
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200548 dma_unmap_single(NULL, rx_desc->buf_ptr + 2,
549 mp->dev->mtu + 24, DMA_FROM_DEVICE);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200550 rxq->rx_desc_count--;
551 rx++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700552
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700553 /*
554 * Update statistics.
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200555 *
556 * Note that the descriptor byte count includes 2 dummy
557 * bytes automatically inserted by the hardware at the
558 * start of the packet (which we don't count), and a 4
559 * byte CRC at the end of the packet (which we do count).
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700560 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 stats->rx_packets++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200562 stats->rx_bytes += rx_desc->byte_cnt - 2;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200565 * In case we received a packet without first / last bits
566 * on, or the error summary bit is set, the packet needs
567 * to be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 */
Lennert Buytenhek96587662008-06-01 10:31:56 +0200569 if (((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200570 (RX_FIRST_DESC | RX_LAST_DESC))
Lennert Buytenhek96587662008-06-01 10:31:56 +0200571 || (cmd_sts & ERROR_SUMMARY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 stats->rx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200573
Lennert Buytenhek96587662008-06-01 10:31:56 +0200574 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200575 (RX_FIRST_DESC | RX_LAST_DESC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (net_ratelimit())
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200577 dev_printk(KERN_ERR, &mp->dev->dev,
578 "received packet spanning "
579 "multiple descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200581
Lennert Buytenhek96587662008-06-01 10:31:56 +0200582 if (cmd_sts & ERROR_SUMMARY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 stats->rx_errors++;
584
585 dev_kfree_skb_irq(skb);
586 } else {
587 /*
588 * The -4 is for the CRC in the trailer of the
589 * received packet
590 */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200591 skb_put(skb, rx_desc->byte_cnt - 2 - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Lennert Buytenhek96587662008-06-01 10:31:56 +0200593 if (cmd_sts & LAYER_4_CHECKSUM_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 skb->ip_summed = CHECKSUM_UNNECESSARY;
595 skb->csum = htons(
Lennert Buytenhek96587662008-06-01 10:31:56 +0200596 (cmd_sts & 0x0007fff8) >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200598 skb->protocol = eth_type_trans(skb, mp->dev);
Lennert Buytenheke5371492008-06-01 02:18:13 +0200599#ifdef MV643XX_ETH_NAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 netif_receive_skb(skb);
601#else
602 netif_rx(skb);
603#endif
604 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200605
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200606 mp->dev->last_rx = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200608
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200609 rxq_refill(rxq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200611 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612}
613
Lennert Buytenheke5371492008-06-01 02:18:13 +0200614#ifdef MV643XX_ETH_NAPI
Lennert Buytenheke5371492008-06-01 02:18:13 +0200615static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200617 struct mv643xx_eth_private *mp;
618 int rx;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200619 int i;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200620
621 mp = container_of(napi, struct mv643xx_eth_private, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Lennert Buytenheke5371492008-06-01 02:18:13 +0200623#ifdef MV643XX_ETH_TX_FAST_REFILL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (++mp->tx_clean_threshold > 5) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 mp->tx_clean_threshold = 0;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200626 for (i = 0; i < 8; i++)
627 if (mp->txq_mask & (1 << i))
628 txq_reclaim(mp->txq + i, 0);
Lennert Buytenhek4dfc1c82008-07-15 13:34:51 +0200629
630 if (netif_carrier_ok(mp->dev)) {
631 spin_lock(&mp->lock);
632 __txq_maybe_wake(mp->txq + mp->txq_primary);
633 spin_unlock(&mp->lock);
634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636#endif
637
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200638 rx = 0;
639 for (i = 7; rx < budget && i >= 0; i--)
640 if (mp->rxq_mask & (1 << i))
641 rx += rxq_process(mp->rxq + i, budget - rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200643 if (rx < budget) {
644 netif_rx_complete(mp->dev, napi);
645 wrl(mp, INT_CAUSE(mp->port_num), 0);
646 wrl(mp, INT_CAUSE_EXT(mp->port_num), 0);
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +0200647 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200650 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652#endif
653
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200654
655/* tx ***********************************************************************/
Paul Janzenf7ea3332006-01-16 16:52:13 -0700656static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
657{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200658 int frag;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700659
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700660 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200661 skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
662 if (fragp->size <= 8 && fragp->page_offset & 7)
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700663 return 1;
664 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200665
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700666 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700667}
668
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200669static int txq_alloc_desc_index(struct tx_queue *txq)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700670{
671 int tx_desc_curr;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700672
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200673 BUG_ON(txq->tx_desc_count >= txq->tx_ring_size);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700674
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200675 tx_desc_curr = txq->tx_curr_desc;
676 txq->tx_curr_desc = (tx_desc_curr + 1) % txq->tx_ring_size;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700677
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200678 BUG_ON(txq->tx_curr_desc == txq->tx_used_desc);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700679
680 return tx_desc_curr;
681}
682
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200683static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700684{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200685 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700686 int frag;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700687
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200688 for (frag = 0; frag < nr_frags; frag++) {
689 skb_frag_t *this_frag;
690 int tx_index;
691 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700692
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200693 this_frag = &skb_shinfo(skb)->frags[frag];
694 tx_index = txq_alloc_desc_index(txq);
695 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700696
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200697 /*
698 * The last fragment will generate an interrupt
699 * which will free the skb on TX completion.
700 */
701 if (frag == nr_frags - 1) {
702 desc->cmd_sts = BUFFER_OWNED_BY_DMA |
703 ZERO_PADDING | TX_LAST_DESC |
704 TX_ENABLE_INTERRUPT;
705 txq->tx_skb[tx_index] = skb;
706 } else {
707 desc->cmd_sts = BUFFER_OWNED_BY_DMA;
708 txq->tx_skb[tx_index] = NULL;
709 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700710
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700711 desc->l4i_chk = 0;
712 desc->byte_cnt = this_frag->size;
713 desc->buf_ptr = dma_map_page(NULL, this_frag->page,
714 this_frag->page_offset,
715 this_frag->size,
716 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700717 }
718}
719
Byron Bradley324ff2c2008-02-04 23:47:15 -0800720static inline __be16 sum16_as_be(__sum16 sum)
721{
722 return (__force __be16)sum;
723}
724
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200725static void txq_submit_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700726{
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200727 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200728 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700729 int tx_index;
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200730 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700731 u32 cmd_sts;
732 int length;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700733
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200734 cmd_sts = TX_FIRST_DESC | GEN_CRC | BUFFER_OWNED_BY_DMA;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700735
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200736 tx_index = txq_alloc_desc_index(txq);
737 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700738
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700739 if (nr_frags) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200740 txq_submit_frag_skb(txq, skb);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700741
742 length = skb_headlen(skb);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200743 txq->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700744 } else {
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200745 cmd_sts |= ZERO_PADDING | TX_LAST_DESC | TX_ENABLE_INTERRUPT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700746 length = skb->len;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200747 txq->tx_skb[tx_index] = skb;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700748 }
749
750 desc->byte_cnt = length;
751 desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700752
Patrick McHardy84fa7932006-08-29 16:44:56 -0700753 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Byron Bradley324ff2c2008-02-04 23:47:15 -0800754 BUG_ON(skb->protocol != htons(ETH_P_IP));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700755
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200756 cmd_sts |= GEN_TCP_UDP_CHECKSUM |
757 GEN_IP_V4_CHECKSUM |
758 ip_hdr(skb)->ihl << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700759
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700760 switch (ip_hdr(skb)->protocol) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700761 case IPPROTO_UDP:
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200762 cmd_sts |= UDP_FRAME;
Byron Bradley324ff2c2008-02-04 23:47:15 -0800763 desc->l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700764 break;
765 case IPPROTO_TCP:
Byron Bradley324ff2c2008-02-04 23:47:15 -0800766 desc->l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700767 break;
768 default:
769 BUG();
770 }
771 } else {
772 /* Errata BTS #50, IHL must be 5 if no HW checksum */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200773 cmd_sts |= 5 << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700774 desc->l4i_chk = 0;
775 }
776
777 /* ensure all other descriptors are written before first cmd_sts */
778 wmb();
779 desc->cmd_sts = cmd_sts;
780
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200781 /* clear TX_END interrupt status */
782 wrl(mp, INT_CAUSE(mp->port_num), ~(INT_TX_END_0 << txq->index));
783 rdl(mp, INT_CAUSE(mp->port_num));
784
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700785 /* ensure all descriptors are written before poking hardware */
786 wmb();
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200787 txq_enable(txq);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700788
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200789 txq->tx_desc_count += nr_frags + 1;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700790}
791
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200792static int mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200794 struct mv643xx_eth_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700795 struct net_device_stats *stats = &dev->stats;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200796 struct tx_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700799 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
800 stats->tx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200801 dev_printk(KERN_DEBUG, &dev->dev,
802 "failed to linearize skb with tiny "
803 "unaligned fragment\n");
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700804 return NETDEV_TX_BUSY;
Dale Farnsworth94843562006-04-11 18:24:26 -0700805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 spin_lock_irqsave(&mp->lock, flags);
808
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200809 txq = mp->txq + mp->txq_primary;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200810
811 if (txq->tx_ring_size - txq->tx_desc_count < MAX_DESCS_PER_SKB) {
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700812 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200813 if (txq->index == mp->txq_primary && net_ratelimit())
814 dev_printk(KERN_ERR, &dev->dev,
815 "primary tx queue full?!\n");
816 kfree_skb(skb);
817 return NETDEV_TX_OK;
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700818 }
819
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200820 txq_submit_skb(txq, skb);
Dale Farnsworthe7e381f2007-09-14 11:23:16 -0700821 stats->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 stats->tx_packets++;
823 dev->trans_start = jiffies;
824
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200825 if (txq->index == mp->txq_primary) {
826 int entries_left;
827
828 entries_left = txq->tx_ring_size - txq->tx_desc_count;
829 if (entries_left < MAX_DESCS_PER_SKB)
830 netif_stop_queue(dev);
831 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 spin_unlock_irqrestore(&mp->lock, flags);
834
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700835 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200838
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200839/* tx rate control **********************************************************/
840/*
841 * Set total maximum TX rate (shared by all TX queues for this port)
842 * to 'rate' bits per second, with a maximum burst of 'burst' bytes.
843 */
844static void tx_set_rate(struct mv643xx_eth_private *mp, int rate, int burst)
845{
846 int token_rate;
847 int mtu;
848 int bucket_size;
849
850 token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
851 if (token_rate > 1023)
852 token_rate = 1023;
853
854 mtu = (mp->dev->mtu + 255) >> 8;
855 if (mtu > 63)
856 mtu = 63;
857
858 bucket_size = (burst + 255) >> 8;
859 if (bucket_size > 65535)
860 bucket_size = 65535;
861
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200862 if (mp->shared->tx_bw_control_moved) {
863 wrl(mp, TX_BW_RATE_MOVED(mp->port_num), token_rate);
864 wrl(mp, TX_BW_MTU_MOVED(mp->port_num), mtu);
865 wrl(mp, TX_BW_BURST_MOVED(mp->port_num), bucket_size);
866 } else {
867 wrl(mp, TX_BW_RATE(mp->port_num), token_rate);
868 wrl(mp, TX_BW_MTU(mp->port_num), mtu);
869 wrl(mp, TX_BW_BURST(mp->port_num), bucket_size);
870 }
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200871}
872
873static void txq_set_rate(struct tx_queue *txq, int rate, int burst)
874{
875 struct mv643xx_eth_private *mp = txq_to_mp(txq);
876 int token_rate;
877 int bucket_size;
878
879 token_rate = ((rate / 1000) * 64) / (mp->shared->t_clk / 1000);
880 if (token_rate > 1023)
881 token_rate = 1023;
882
883 bucket_size = (burst + 255) >> 8;
884 if (bucket_size > 65535)
885 bucket_size = 65535;
886
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200887 wrl(mp, TXQ_BW_TOKENS(mp->port_num, txq->index), token_rate << 14);
888 wrl(mp, TXQ_BW_CONF(mp->port_num, txq->index),
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200889 (bucket_size << 10) | token_rate);
890}
891
892static void txq_set_fixed_prio_mode(struct tx_queue *txq)
893{
894 struct mv643xx_eth_private *mp = txq_to_mp(txq);
895 int off;
896 u32 val;
897
898 /*
899 * Turn on fixed priority mode.
900 */
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200901 if (mp->shared->tx_bw_control_moved)
902 off = TXQ_FIX_PRIO_CONF_MOVED(mp->port_num);
903 else
904 off = TXQ_FIX_PRIO_CONF(mp->port_num);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200905
906 val = rdl(mp, off);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200907 val |= 1 << txq->index;
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200908 wrl(mp, off, val);
909}
910
911static void txq_set_wrr(struct tx_queue *txq, int weight)
912{
913 struct mv643xx_eth_private *mp = txq_to_mp(txq);
914 int off;
915 u32 val;
916
917 /*
918 * Turn off fixed priority mode.
919 */
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200920 if (mp->shared->tx_bw_control_moved)
921 off = TXQ_FIX_PRIO_CONF_MOVED(mp->port_num);
922 else
923 off = TXQ_FIX_PRIO_CONF(mp->port_num);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200924
925 val = rdl(mp, off);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200926 val &= ~(1 << txq->index);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200927 wrl(mp, off, val);
928
929 /*
930 * Configure WRR weight for this queue.
931 */
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200932 off = TXQ_BW_WRR_CONF(mp->port_num, txq->index);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200933
934 val = rdl(mp, off);
935 val = (val & ~0xff) | (weight & 0xff);
936 wrl(mp, off, val);
937}
938
939
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200940/* mii management interface *************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200941#define SMI_BUSY 0x10000000
942#define SMI_READ_VALID 0x08000000
943#define SMI_OPCODE_READ 0x04000000
944#define SMI_OPCODE_WRITE 0x00000000
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200945
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200946static void smi_reg_read(struct mv643xx_eth_private *mp, unsigned int addr,
947 unsigned int reg, unsigned int *value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200948{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200949 void __iomem *smi_reg = mp->shared_smi->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200950 unsigned long flags;
951 int i;
952
953 /* the SMI register is a shared resource */
954 spin_lock_irqsave(&mp->shared_smi->phy_lock, flags);
955
956 /* wait for the SMI register to become available */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200957 for (i = 0; readl(smi_reg) & SMI_BUSY; i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200958 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200959 printk("%s: PHY busy timeout\n", mp->dev->name);
960 goto out;
961 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200962 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200963 }
964
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200965 writel(SMI_OPCODE_READ | (reg << 21) | (addr << 16), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200966
967 /* now wait for the data to be valid */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200968 for (i = 0; !(readl(smi_reg) & SMI_READ_VALID); i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200969 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200970 printk("%s: PHY read timeout\n", mp->dev->name);
971 goto out;
972 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200973 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200974 }
975
976 *value = readl(smi_reg) & 0xffff;
977out:
978 spin_unlock_irqrestore(&mp->shared_smi->phy_lock, flags);
979}
980
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200981static void smi_reg_write(struct mv643xx_eth_private *mp,
982 unsigned int addr,
983 unsigned int reg, unsigned int value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200984{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200985 void __iomem *smi_reg = mp->shared_smi->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200986 unsigned long flags;
987 int i;
988
989 /* the SMI register is a shared resource */
990 spin_lock_irqsave(&mp->shared_smi->phy_lock, flags);
991
992 /* wait for the SMI register to become available */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200993 for (i = 0; readl(smi_reg) & SMI_BUSY; i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200994 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200995 printk("%s: PHY busy timeout\n", mp->dev->name);
996 goto out;
997 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200998 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200999 }
1000
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001001 writel(SMI_OPCODE_WRITE | (reg << 21) |
1002 (addr << 16) | (value & 0xffff), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001003out:
1004 spin_unlock_irqrestore(&mp->shared_smi->phy_lock, flags);
1005}
1006
1007
1008/* mib counters *************************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001009static inline u32 mib_read(struct mv643xx_eth_private *mp, int offset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001010{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001011 return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001012}
1013
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001014static void mib_counters_clear(struct mv643xx_eth_private *mp)
1015{
1016 int i;
1017
1018 for (i = 0; i < 0x80; i += 4)
1019 mib_read(mp, i);
1020}
1021
1022static void mib_counters_update(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001023{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001024 struct mib_counters *p = &mp->mib_counters;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001025
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001026 p->good_octets_received += mib_read(mp, 0x00);
1027 p->good_octets_received += (u64)mib_read(mp, 0x04) << 32;
1028 p->bad_octets_received += mib_read(mp, 0x08);
1029 p->internal_mac_transmit_err += mib_read(mp, 0x0c);
1030 p->good_frames_received += mib_read(mp, 0x10);
1031 p->bad_frames_received += mib_read(mp, 0x14);
1032 p->broadcast_frames_received += mib_read(mp, 0x18);
1033 p->multicast_frames_received += mib_read(mp, 0x1c);
1034 p->frames_64_octets += mib_read(mp, 0x20);
1035 p->frames_65_to_127_octets += mib_read(mp, 0x24);
1036 p->frames_128_to_255_octets += mib_read(mp, 0x28);
1037 p->frames_256_to_511_octets += mib_read(mp, 0x2c);
1038 p->frames_512_to_1023_octets += mib_read(mp, 0x30);
1039 p->frames_1024_to_max_octets += mib_read(mp, 0x34);
1040 p->good_octets_sent += mib_read(mp, 0x38);
1041 p->good_octets_sent += (u64)mib_read(mp, 0x3c) << 32;
1042 p->good_frames_sent += mib_read(mp, 0x40);
1043 p->excessive_collision += mib_read(mp, 0x44);
1044 p->multicast_frames_sent += mib_read(mp, 0x48);
1045 p->broadcast_frames_sent += mib_read(mp, 0x4c);
1046 p->unrec_mac_control_received += mib_read(mp, 0x50);
1047 p->fc_sent += mib_read(mp, 0x54);
1048 p->good_fc_received += mib_read(mp, 0x58);
1049 p->bad_fc_received += mib_read(mp, 0x5c);
1050 p->undersize_received += mib_read(mp, 0x60);
1051 p->fragments_received += mib_read(mp, 0x64);
1052 p->oversize_received += mib_read(mp, 0x68);
1053 p->jabber_received += mib_read(mp, 0x6c);
1054 p->mac_receive_error += mib_read(mp, 0x70);
1055 p->bad_crc_event += mib_read(mp, 0x74);
1056 p->collision += mib_read(mp, 0x78);
1057 p->late_collision += mib_read(mp, 0x7c);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001058}
1059
1060
1061/* ethtool ******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02001062struct mv643xx_eth_stats {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001063 char stat_string[ETH_GSTRING_LEN];
1064 int sizeof_stat;
Lennert Buytenhek16820052008-06-01 11:40:29 +02001065 int netdev_off;
1066 int mp_off;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001067};
1068
Lennert Buytenhek16820052008-06-01 11:40:29 +02001069#define SSTAT(m) \
1070 { #m, FIELD_SIZEOF(struct net_device_stats, m), \
1071 offsetof(struct net_device, stats.m), -1 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001072
Lennert Buytenhek16820052008-06-01 11:40:29 +02001073#define MIBSTAT(m) \
1074 { #m, FIELD_SIZEOF(struct mib_counters, m), \
1075 -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
1076
1077static const struct mv643xx_eth_stats mv643xx_eth_stats[] = {
1078 SSTAT(rx_packets),
1079 SSTAT(tx_packets),
1080 SSTAT(rx_bytes),
1081 SSTAT(tx_bytes),
1082 SSTAT(rx_errors),
1083 SSTAT(tx_errors),
1084 SSTAT(rx_dropped),
1085 SSTAT(tx_dropped),
1086 MIBSTAT(good_octets_received),
1087 MIBSTAT(bad_octets_received),
1088 MIBSTAT(internal_mac_transmit_err),
1089 MIBSTAT(good_frames_received),
1090 MIBSTAT(bad_frames_received),
1091 MIBSTAT(broadcast_frames_received),
1092 MIBSTAT(multicast_frames_received),
1093 MIBSTAT(frames_64_octets),
1094 MIBSTAT(frames_65_to_127_octets),
1095 MIBSTAT(frames_128_to_255_octets),
1096 MIBSTAT(frames_256_to_511_octets),
1097 MIBSTAT(frames_512_to_1023_octets),
1098 MIBSTAT(frames_1024_to_max_octets),
1099 MIBSTAT(good_octets_sent),
1100 MIBSTAT(good_frames_sent),
1101 MIBSTAT(excessive_collision),
1102 MIBSTAT(multicast_frames_sent),
1103 MIBSTAT(broadcast_frames_sent),
1104 MIBSTAT(unrec_mac_control_received),
1105 MIBSTAT(fc_sent),
1106 MIBSTAT(good_fc_received),
1107 MIBSTAT(bad_fc_received),
1108 MIBSTAT(undersize_received),
1109 MIBSTAT(fragments_received),
1110 MIBSTAT(oversize_received),
1111 MIBSTAT(jabber_received),
1112 MIBSTAT(mac_receive_error),
1113 MIBSTAT(bad_crc_event),
1114 MIBSTAT(collision),
1115 MIBSTAT(late_collision),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001116};
1117
Lennert Buytenheke5371492008-06-01 02:18:13 +02001118static int mv643xx_eth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001119{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001120 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001121 int err;
1122
1123 spin_lock_irq(&mp->lock);
1124 err = mii_ethtool_gset(&mp->mii, cmd);
1125 spin_unlock_irq(&mp->lock);
1126
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001127 /*
1128 * The MAC does not support 1000baseT_Half.
1129 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001130 cmd->supported &= ~SUPPORTED_1000baseT_Half;
1131 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1132
1133 return err;
1134}
1135
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001136static int mv643xx_eth_get_settings_phyless(struct net_device *dev, struct ethtool_cmd *cmd)
1137{
1138 cmd->supported = SUPPORTED_MII;
1139 cmd->advertising = ADVERTISED_MII;
1140 cmd->speed = SPEED_1000;
1141 cmd->duplex = DUPLEX_FULL;
1142 cmd->port = PORT_MII;
1143 cmd->phy_address = 0;
1144 cmd->transceiver = XCVR_INTERNAL;
1145 cmd->autoneg = AUTONEG_DISABLE;
1146 cmd->maxtxpkt = 1;
1147 cmd->maxrxpkt = 1;
1148
1149 return 0;
1150}
1151
Lennert Buytenheke5371492008-06-01 02:18:13 +02001152static int mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001153{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001154 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001155 int err;
1156
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001157 /*
1158 * The MAC does not support 1000baseT_Half.
1159 */
1160 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1161
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001162 spin_lock_irq(&mp->lock);
1163 err = mii_ethtool_sset(&mp->mii, cmd);
1164 spin_unlock_irq(&mp->lock);
1165
1166 return err;
1167}
1168
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001169static int mv643xx_eth_set_settings_phyless(struct net_device *dev, struct ethtool_cmd *cmd)
1170{
1171 return -EINVAL;
1172}
1173
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001174static void mv643xx_eth_get_drvinfo(struct net_device *dev,
1175 struct ethtool_drvinfo *drvinfo)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001176{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001177 strncpy(drvinfo->driver, mv643xx_eth_driver_name, 32);
1178 strncpy(drvinfo->version, mv643xx_eth_driver_version, 32);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001179 strncpy(drvinfo->fw_version, "N/A", 32);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001180 strncpy(drvinfo->bus_info, "platform", 32);
Lennert Buytenhek16820052008-06-01 11:40:29 +02001181 drvinfo->n_stats = ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001182}
1183
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001184static int mv643xx_eth_nway_reset(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001185{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001186 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001187
1188 return mii_nway_restart(&mp->mii);
1189}
1190
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001191static int mv643xx_eth_nway_reset_phyless(struct net_device *dev)
1192{
1193 return -EINVAL;
1194}
1195
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001196static u32 mv643xx_eth_get_link(struct net_device *dev)
1197{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001198 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001199
1200 return mii_link_ok(&mp->mii);
1201}
1202
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001203static u32 mv643xx_eth_get_link_phyless(struct net_device *dev)
1204{
1205 return 1;
1206}
1207
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001208static void mv643xx_eth_get_strings(struct net_device *dev,
1209 uint32_t stringset, uint8_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001210{
1211 int i;
1212
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001213 if (stringset == ETH_SS_STATS) {
1214 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001215 memcpy(data + i * ETH_GSTRING_LEN,
Lennert Buytenhek16820052008-06-01 11:40:29 +02001216 mv643xx_eth_stats[i].stat_string,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001217 ETH_GSTRING_LEN);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001218 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001219 }
1220}
1221
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001222static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
1223 struct ethtool_stats *stats,
1224 uint64_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001225{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001226 struct mv643xx_eth_private *mp = dev->priv;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001227 int i;
1228
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001229 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001230
Lennert Buytenhek16820052008-06-01 11:40:29 +02001231 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
1232 const struct mv643xx_eth_stats *stat;
1233 void *p;
1234
1235 stat = mv643xx_eth_stats + i;
1236
1237 if (stat->netdev_off >= 0)
1238 p = ((void *)mp->dev) + stat->netdev_off;
1239 else
1240 p = ((void *)mp) + stat->mp_off;
1241
1242 data[i] = (stat->sizeof_stat == 8) ?
1243 *(uint64_t *)p : *(uint32_t *)p;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001244 }
1245}
1246
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001247static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001248{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001249 if (sset == ETH_SS_STATS)
Lennert Buytenhek16820052008-06-01 11:40:29 +02001250 return ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001251
1252 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001253}
1254
Lennert Buytenheke5371492008-06-01 02:18:13 +02001255static const struct ethtool_ops mv643xx_eth_ethtool_ops = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001256 .get_settings = mv643xx_eth_get_settings,
1257 .set_settings = mv643xx_eth_set_settings,
1258 .get_drvinfo = mv643xx_eth_get_drvinfo,
1259 .nway_reset = mv643xx_eth_nway_reset,
1260 .get_link = mv643xx_eth_get_link,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001261 .set_sg = ethtool_op_set_sg,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001262 .get_strings = mv643xx_eth_get_strings,
1263 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001264 .get_sset_count = mv643xx_eth_get_sset_count,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001265};
1266
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001267static const struct ethtool_ops mv643xx_eth_ethtool_ops_phyless = {
1268 .get_settings = mv643xx_eth_get_settings_phyless,
1269 .set_settings = mv643xx_eth_set_settings_phyless,
1270 .get_drvinfo = mv643xx_eth_get_drvinfo,
1271 .nway_reset = mv643xx_eth_nway_reset_phyless,
1272 .get_link = mv643xx_eth_get_link_phyless,
1273 .set_sg = ethtool_op_set_sg,
1274 .get_strings = mv643xx_eth_get_strings,
1275 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
1276 .get_sset_count = mv643xx_eth_get_sset_count,
1277};
1278
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001279
1280/* address handling *********************************************************/
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001281static void uc_addr_get(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001282{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001283 unsigned int mac_h;
1284 unsigned int mac_l;
1285
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001286 mac_h = rdl(mp, MAC_ADDR_HIGH(mp->port_num));
1287 mac_l = rdl(mp, MAC_ADDR_LOW(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001288
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001289 addr[0] = (mac_h >> 24) & 0xff;
1290 addr[1] = (mac_h >> 16) & 0xff;
1291 addr[2] = (mac_h >> 8) & 0xff;
1292 addr[3] = mac_h & 0xff;
1293 addr[4] = (mac_l >> 8) & 0xff;
1294 addr[5] = mac_l & 0xff;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001295}
1296
Lennert Buytenheke5371492008-06-01 02:18:13 +02001297static void init_mac_tables(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001298{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001299 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001300
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001301 for (i = 0; i < 0x100; i += 4) {
1302 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1303 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001304 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001305
1306 for (i = 0; i < 0x10; i += 4)
1307 wrl(mp, UNICAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001308}
1309
Lennert Buytenheke5371492008-06-01 02:18:13 +02001310static void set_filter_table_entry(struct mv643xx_eth_private *mp,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001311 int table, unsigned char entry)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001312{
1313 unsigned int table_reg;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001314
1315 /* Set "accepts frame bit" at specified table entry */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001316 table_reg = rdl(mp, table + (entry & 0xfc));
1317 table_reg |= 0x01 << (8 * (entry & 3));
1318 wrl(mp, table + (entry & 0xfc), table_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001319}
1320
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001321static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001322{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001323 unsigned int mac_h;
1324 unsigned int mac_l;
1325 int table;
1326
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001327 mac_l = (addr[4] << 8) | addr[5];
1328 mac_h = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001329
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001330 wrl(mp, MAC_ADDR_LOW(mp->port_num), mac_l);
1331 wrl(mp, MAC_ADDR_HIGH(mp->port_num), mac_h);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001332
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001333 table = UNICAST_TABLE(mp->port_num);
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001334 set_filter_table_entry(mp, table, addr[5] & 0x0f);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001335}
1336
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001337static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
1338{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001339 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001340
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001341 /* +2 is for the offset of the HW addr type */
1342 memcpy(dev->dev_addr, addr + 2, 6);
1343
1344 init_mac_tables(mp);
1345 uc_addr_set(mp, dev->dev_addr);
1346
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001347 return 0;
1348}
1349
Lennert Buytenhek69876562008-06-01 11:43:32 +02001350static int addr_crc(unsigned char *addr)
1351{
1352 int crc = 0;
1353 int i;
1354
1355 for (i = 0; i < 6; i++) {
1356 int j;
1357
1358 crc = (crc ^ addr[i]) << 8;
1359 for (j = 7; j >= 0; j--) {
1360 if (crc & (0x100 << j))
1361 crc ^= 0x107 << j;
1362 }
1363 }
1364
1365 return crc;
1366}
1367
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001368static void mv643xx_eth_set_rx_mode(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001369{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001370 struct mv643xx_eth_private *mp = netdev_priv(dev);
1371 u32 port_config;
1372 struct dev_addr_list *addr;
1373 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001374
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001375 port_config = rdl(mp, PORT_CONFIG(mp->port_num));
1376 if (dev->flags & IFF_PROMISC)
1377 port_config |= UNICAST_PROMISCUOUS_MODE;
1378 else
1379 port_config &= ~UNICAST_PROMISCUOUS_MODE;
1380 wrl(mp, PORT_CONFIG(mp->port_num), port_config);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001381
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001382 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
1383 int port_num = mp->port_num;
1384 u32 accept = 0x01010101;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001385
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001386 for (i = 0; i < 0x100; i += 4) {
1387 wrl(mp, SPECIAL_MCAST_TABLE(port_num) + i, accept);
1388 wrl(mp, OTHER_MCAST_TABLE(port_num) + i, accept);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001389 }
1390 return;
1391 }
1392
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001393 for (i = 0; i < 0x100; i += 4) {
1394 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1395 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001396 }
1397
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001398 for (addr = dev->mc_list; addr != NULL; addr = addr->next) {
1399 u8 *a = addr->da_addr;
1400 int table;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001401
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001402 if (addr->da_addrlen != 6)
1403 continue;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001404
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001405 if (memcmp(a, "\x01\x00\x5e\x00\x00", 5) == 0) {
1406 table = SPECIAL_MCAST_TABLE(mp->port_num);
1407 set_filter_table_entry(mp, table, a[5]);
1408 } else {
1409 int crc = addr_crc(a);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001410
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001411 table = OTHER_MCAST_TABLE(mp->port_num);
1412 set_filter_table_entry(mp, table, crc);
1413 }
1414 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001415}
1416
1417
1418/* rx/tx queue initialisation ***********************************************/
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001419static int rxq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001420{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001421 struct rx_queue *rxq = mp->rxq + index;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001422 struct rx_desc *rx_desc;
1423 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001424 int i;
1425
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001426 rxq->index = index;
1427
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001428 rxq->rx_ring_size = mp->default_rx_ring_size;
1429
1430 rxq->rx_desc_count = 0;
1431 rxq->rx_curr_desc = 0;
1432 rxq->rx_used_desc = 0;
1433
1434 size = rxq->rx_ring_size * sizeof(struct rx_desc);
1435
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001436 if (index == mp->rxq_primary && size <= mp->rx_desc_sram_size) {
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001437 rxq->rx_desc_area = ioremap(mp->rx_desc_sram_addr,
1438 mp->rx_desc_sram_size);
1439 rxq->rx_desc_dma = mp->rx_desc_sram_addr;
1440 } else {
1441 rxq->rx_desc_area = dma_alloc_coherent(NULL, size,
1442 &rxq->rx_desc_dma,
1443 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001444 }
1445
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001446 if (rxq->rx_desc_area == NULL) {
1447 dev_printk(KERN_ERR, &mp->dev->dev,
1448 "can't allocate rx ring (%d bytes)\n", size);
1449 goto out;
1450 }
1451 memset(rxq->rx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001452
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001453 rxq->rx_desc_area_size = size;
1454 rxq->rx_skb = kmalloc(rxq->rx_ring_size * sizeof(*rxq->rx_skb),
1455 GFP_KERNEL);
1456 if (rxq->rx_skb == NULL) {
1457 dev_printk(KERN_ERR, &mp->dev->dev,
1458 "can't allocate rx skb ring\n");
1459 goto out_free;
1460 }
1461
1462 rx_desc = (struct rx_desc *)rxq->rx_desc_area;
1463 for (i = 0; i < rxq->rx_ring_size; i++) {
1464 int nexti = (i + 1) % rxq->rx_ring_size;
1465 rx_desc[i].next_desc_ptr = rxq->rx_desc_dma +
1466 nexti * sizeof(struct rx_desc);
1467 }
1468
1469 init_timer(&rxq->rx_oom);
1470 rxq->rx_oom.data = (unsigned long)rxq;
1471 rxq->rx_oom.function = rxq_refill_timer_wrapper;
1472
1473 return 0;
1474
1475
1476out_free:
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001477 if (index == mp->rxq_primary && size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001478 iounmap(rxq->rx_desc_area);
1479 else
1480 dma_free_coherent(NULL, size,
1481 rxq->rx_desc_area,
1482 rxq->rx_desc_dma);
1483
1484out:
1485 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001486}
1487
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001488static void rxq_deinit(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001489{
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001490 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
1491 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001492
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001493 rxq_disable(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001494
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001495 del_timer_sync(&rxq->rx_oom);
1496
1497 for (i = 0; i < rxq->rx_ring_size; i++) {
1498 if (rxq->rx_skb[i]) {
1499 dev_kfree_skb(rxq->rx_skb[i]);
1500 rxq->rx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001501 }
1502 }
1503
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001504 if (rxq->rx_desc_count) {
1505 dev_printk(KERN_ERR, &mp->dev->dev,
1506 "error freeing rx ring -- %d skbs stuck\n",
1507 rxq->rx_desc_count);
1508 }
1509
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001510 if (rxq->index == mp->rxq_primary &&
1511 rxq->rx_desc_area_size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001512 iounmap(rxq->rx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001513 else
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001514 dma_free_coherent(NULL, rxq->rx_desc_area_size,
1515 rxq->rx_desc_area, rxq->rx_desc_dma);
1516
1517 kfree(rxq->rx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001518}
1519
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001520static int txq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001521{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001522 struct tx_queue *txq = mp->txq + index;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001523 struct tx_desc *tx_desc;
1524 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001525 int i;
1526
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001527 txq->index = index;
1528
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001529 txq->tx_ring_size = mp->default_tx_ring_size;
1530
1531 txq->tx_desc_count = 0;
1532 txq->tx_curr_desc = 0;
1533 txq->tx_used_desc = 0;
1534
1535 size = txq->tx_ring_size * sizeof(struct tx_desc);
1536
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001537 if (index == mp->txq_primary && size <= mp->tx_desc_sram_size) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001538 txq->tx_desc_area = ioremap(mp->tx_desc_sram_addr,
1539 mp->tx_desc_sram_size);
1540 txq->tx_desc_dma = mp->tx_desc_sram_addr;
1541 } else {
1542 txq->tx_desc_area = dma_alloc_coherent(NULL, size,
1543 &txq->tx_desc_dma,
1544 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001545 }
1546
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001547 if (txq->tx_desc_area == NULL) {
1548 dev_printk(KERN_ERR, &mp->dev->dev,
1549 "can't allocate tx ring (%d bytes)\n", size);
1550 goto out;
1551 }
1552 memset(txq->tx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001553
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001554 txq->tx_desc_area_size = size;
1555 txq->tx_skb = kmalloc(txq->tx_ring_size * sizeof(*txq->tx_skb),
1556 GFP_KERNEL);
1557 if (txq->tx_skb == NULL) {
1558 dev_printk(KERN_ERR, &mp->dev->dev,
1559 "can't allocate tx skb ring\n");
1560 goto out_free;
1561 }
1562
1563 tx_desc = (struct tx_desc *)txq->tx_desc_area;
1564 for (i = 0; i < txq->tx_ring_size; i++) {
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001565 struct tx_desc *txd = tx_desc + i;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001566 int nexti = (i + 1) % txq->tx_ring_size;
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001567
1568 txd->cmd_sts = 0;
1569 txd->next_desc_ptr = txq->tx_desc_dma +
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001570 nexti * sizeof(struct tx_desc);
1571 }
1572
1573 return 0;
1574
1575
1576out_free:
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001577 if (index == mp->txq_primary && size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001578 iounmap(txq->tx_desc_area);
1579 else
1580 dma_free_coherent(NULL, size,
1581 txq->tx_desc_area,
1582 txq->tx_desc_dma);
1583
1584out:
1585 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001586}
1587
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001588static void txq_reclaim(struct tx_queue *txq, int force)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001589{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001590 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001591 unsigned long flags;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001592
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001593 spin_lock_irqsave(&mp->lock, flags);
1594 while (txq->tx_desc_count > 0) {
1595 int tx_index;
1596 struct tx_desc *desc;
1597 u32 cmd_sts;
1598 struct sk_buff *skb;
1599 dma_addr_t addr;
1600 int count;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001601
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001602 tx_index = txq->tx_used_desc;
1603 desc = &txq->tx_desc_area[tx_index];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001604 cmd_sts = desc->cmd_sts;
1605
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001606 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
1607 if (!force)
1608 break;
1609 desc->cmd_sts = cmd_sts & ~BUFFER_OWNED_BY_DMA;
1610 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001611
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001612 txq->tx_used_desc = (tx_index + 1) % txq->tx_ring_size;
1613 txq->tx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001614
1615 addr = desc->buf_ptr;
1616 count = desc->byte_cnt;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001617 skb = txq->tx_skb[tx_index];
1618 txq->tx_skb[tx_index] = NULL;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001619
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001620 if (cmd_sts & ERROR_SUMMARY) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001621 dev_printk(KERN_INFO, &mp->dev->dev, "tx error\n");
1622 mp->dev->stats.tx_errors++;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001623 }
1624
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001625 /*
1626 * Drop mp->lock while we free the skb.
1627 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001628 spin_unlock_irqrestore(&mp->lock, flags);
1629
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001630 if (cmd_sts & TX_FIRST_DESC)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001631 dma_unmap_single(NULL, addr, count, DMA_TO_DEVICE);
1632 else
1633 dma_unmap_page(NULL, addr, count, DMA_TO_DEVICE);
1634
1635 if (skb)
1636 dev_kfree_skb_irq(skb);
1637
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001638 spin_lock_irqsave(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001639 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001640 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001641}
1642
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001643static void txq_deinit(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001644{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001645 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001646
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001647 txq_disable(txq);
1648 txq_reclaim(txq, 1);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001649
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001650 BUG_ON(txq->tx_used_desc != txq->tx_curr_desc);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001651
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001652 if (txq->index == mp->txq_primary &&
1653 txq->tx_desc_area_size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001654 iounmap(txq->tx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001655 else
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001656 dma_free_coherent(NULL, txq->tx_desc_area_size,
1657 txq->tx_desc_area, txq->tx_desc_dma);
1658
1659 kfree(txq->tx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001660}
1661
1662
1663/* netdev ops and related ***************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001664static void update_pscr(struct mv643xx_eth_private *mp, int speed, int duplex)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001665{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001666 u32 pscr_o;
1667 u32 pscr_n;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001668
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001669 pscr_o = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001670
1671 /* clear speed, duplex and rx buffer size fields */
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001672 pscr_n = pscr_o & ~(SET_MII_SPEED_TO_100 |
1673 SET_GMII_SPEED_TO_1000 |
1674 SET_FULL_DUPLEX_MODE |
1675 MAX_RX_PACKET_MASK);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001676
Lennert Buytenhek65193a92008-07-11 00:39:41 +02001677 pscr_n |= MAX_RX_PACKET_9700BYTE;
1678
1679 if (speed == SPEED_1000)
1680 pscr_n |= SET_GMII_SPEED_TO_1000;
1681 else if (speed == SPEED_100)
1682 pscr_n |= SET_MII_SPEED_TO_100;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001683
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001684 if (duplex == DUPLEX_FULL)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001685 pscr_n |= SET_FULL_DUPLEX_MODE;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001686
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001687 if (pscr_n != pscr_o) {
1688 if ((pscr_o & SERIAL_PORT_ENABLE) == 0)
1689 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
1690 else {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001691 int i;
1692
1693 for (i = 0; i < 8; i++)
1694 if (mp->txq_mask & (1 << i))
1695 txq_disable(mp->txq + i);
1696
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001697 pscr_o &= ~SERIAL_PORT_ENABLE;
1698 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_o);
1699 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
1700 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001701
1702 for (i = 0; i < 8; i++)
1703 if (mp->txq_mask & (1 << i))
1704 txq_enable(mp->txq + i);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001705 }
1706 }
1707}
1708
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001709static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001710{
1711 struct net_device *dev = (struct net_device *)dev_id;
Lennert Buytenheke5371492008-06-01 02:18:13 +02001712 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001713 u32 int_cause;
1714 u32 int_cause_ext;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001715
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001716 int_cause = rdl(mp, INT_CAUSE(mp->port_num)) &
1717 (INT_TX_END | INT_RX | INT_EXT);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001718 if (int_cause == 0)
1719 return IRQ_NONE;
1720
1721 int_cause_ext = 0;
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001722 if (int_cause & INT_EXT) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001723 int_cause_ext = rdl(mp, INT_CAUSE_EXT(mp->port_num))
Lennert Buytenhek073a3452008-06-01 02:00:31 +02001724 & (INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001725 wrl(mp, INT_CAUSE_EXT(mp->port_num), ~int_cause_ext);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001726 }
1727
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001728 if (int_cause_ext & (INT_EXT_PHY | INT_EXT_LINK)) {
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001729 if (mp->phy_addr == -1 || mii_link_ok(&mp->mii)) {
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001730 if (mp->phy_addr != -1) {
1731 struct ethtool_cmd cmd;
1732
1733 mii_ethtool_gset(&mp->mii, &cmd);
1734 update_pscr(mp, cmd.speed, cmd.duplex);
1735 }
1736
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001737 if (!netif_carrier_ok(dev)) {
1738 netif_carrier_on(dev);
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001739 netif_wake_queue(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001740 }
1741 } else if (netif_carrier_ok(dev)) {
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001742 int i;
1743
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001744 netif_stop_queue(dev);
1745 netif_carrier_off(dev);
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001746
1747 for (i = 0; i < 8; i++) {
1748 struct tx_queue *txq = mp->txq + i;
1749
1750 if (mp->txq_mask & (1 << i)) {
1751 txq_reclaim(txq, 1);
1752 txq_reset_hw_ptr(txq);
1753 }
1754 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001755 }
1756 }
1757
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001758 /*
1759 * RxBuffer or RxError set for any of the 8 queues?
1760 */
Lennert Buytenheke5371492008-06-01 02:18:13 +02001761#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001762 if (int_cause & INT_RX) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001763 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001764 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001765
1766 netif_rx_schedule(dev, &mp->napi);
1767 }
1768#else
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001769 if (int_cause & INT_RX) {
1770 int i;
1771
1772 for (i = 7; i >= 0; i--)
1773 if (mp->rxq_mask & (1 << i))
1774 rxq_process(mp->rxq + i, INT_MAX);
1775 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001776#endif
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001777
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001778 /*
1779 * TxBuffer or TxError set for any of the 8 queues?
1780 */
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001781 if (int_cause_ext & INT_EXT_TX) {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001782 int i;
1783
1784 for (i = 0; i < 8; i++)
1785 if (mp->txq_mask & (1 << i))
1786 txq_reclaim(mp->txq + i, 0);
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001787
1788 /*
1789 * Enough space again in the primary TX queue for a
1790 * full packet?
1791 */
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001792 if (netif_carrier_ok(dev)) {
1793 spin_lock(&mp->lock);
1794 __txq_maybe_wake(mp->txq + mp->txq_primary);
1795 spin_unlock(&mp->lock);
1796 }
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001797 }
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001798
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001799 /*
1800 * Any TxEnd interrupts?
1801 */
1802 if (int_cause & INT_TX_END) {
1803 int i;
1804
1805 wrl(mp, INT_CAUSE(mp->port_num), ~(int_cause & INT_TX_END));
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001806
1807 spin_lock(&mp->lock);
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001808 for (i = 0; i < 8; i++) {
1809 struct tx_queue *txq = mp->txq + i;
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001810 u32 hw_desc_ptr;
1811 u32 expected_ptr;
1812
1813 if ((int_cause & (INT_TX_END_0 << i)) == 0)
1814 continue;
1815
1816 hw_desc_ptr =
1817 rdl(mp, TXQ_CURRENT_DESC_PTR(mp->port_num, i));
1818 expected_ptr = (u32)txq->tx_desc_dma +
1819 txq->tx_curr_desc * sizeof(struct tx_desc);
1820
1821 if (hw_desc_ptr != expected_ptr)
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02001822 txq_enable(txq);
1823 }
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +02001824 spin_unlock(&mp->lock);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001825 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001826
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001827 return IRQ_HANDLED;
1828}
1829
Lennert Buytenheke5371492008-06-01 02:18:13 +02001830static void phy_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001831{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001832 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001833
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001834 smi_reg_read(mp, mp->phy_addr, 0, &data);
1835 data |= 0x8000;
1836 smi_reg_write(mp, mp->phy_addr, 0, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001837
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001838 do {
1839 udelay(1);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001840 smi_reg_read(mp, mp->phy_addr, 0, &data);
1841 } while (data & 0x8000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001842}
1843
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001844static void port_start(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001845{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001846 u32 pscr;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001847 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001848
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001849 /*
1850 * Configure basic link parameters.
1851 */
1852 pscr = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
1853 pscr &= ~(SERIAL_PORT_ENABLE | FORCE_LINK_PASS);
1854 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1855 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL |
1856 DISABLE_AUTO_NEG_SPEED_GMII |
1857 DISABLE_AUTO_NEG_FOR_DUPLEX |
1858 DO_NOT_FORCE_LINK_FAIL |
1859 SERIAL_PORT_CONTROL_RESERVED;
1860 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1861 pscr |= SERIAL_PORT_ENABLE;
1862 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001863
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001864 wrl(mp, SDMA_CONFIG(mp->port_num), PORT_SDMA_CONFIG_DEFAULT_VALUE);
1865
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001866 /*
1867 * Perform PHY reset, if there is a PHY.
1868 */
1869 if (mp->phy_addr != -1) {
1870 struct ethtool_cmd cmd;
1871
1872 mv643xx_eth_get_settings(mp->dev, &cmd);
1873 phy_reset(mp);
1874 mv643xx_eth_set_settings(mp->dev, &cmd);
1875 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001876
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001877 /*
1878 * Configure TX path and queues.
1879 */
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001880 tx_set_rate(mp, 1000000000, 16777216);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001881 for (i = 0; i < 8; i++) {
1882 struct tx_queue *txq = mp->txq + i;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001883
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001884 if ((mp->txq_mask & (1 << i)) == 0)
1885 continue;
1886
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001887 txq_reset_hw_ptr(txq);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001888 txq_set_rate(txq, 1000000000, 16777216);
1889 txq_set_fixed_prio_mode(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001890 }
1891
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001892 /*
1893 * Add configured unicast address to address filter table.
1894 */
1895 uc_addr_set(mp, mp->dev->dev_addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001896
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02001897 /*
1898 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
1899 * frames to RX queue #0.
1900 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001901 wrl(mp, PORT_CONFIG(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001902
Lennert Buytenhek376489a2008-06-01 01:17:44 +02001903 /*
1904 * Treat BPDUs as normal multicasts, and disable partition mode.
1905 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001906 wrl(mp, PORT_CONFIG_EXT(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001907
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001908 /*
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001909 * Enable the receive queues.
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001910 */
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001911 for (i = 0; i < 8; i++) {
1912 struct rx_queue *rxq = mp->rxq + i;
1913 int off = RXQ_CURRENT_DESC_PTR(mp->port_num, i);
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001914 u32 addr;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001915
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001916 if ((mp->rxq_mask & (1 << i)) == 0)
1917 continue;
1918
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001919 addr = (u32)rxq->rx_desc_dma;
1920 addr += rxq->rx_curr_desc * sizeof(struct rx_desc);
1921 wrl(mp, off, addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001922
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001923 rxq_enable(rxq);
1924 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001925}
1926
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001927static void set_rx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001928{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001929 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02001930 u32 val;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001931
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02001932 val = rdl(mp, SDMA_CONFIG(mp->port_num));
1933 if (mp->shared->extended_rx_coal_limit) {
1934 if (coal > 0xffff)
1935 coal = 0xffff;
1936 val &= ~0x023fff80;
1937 val |= (coal & 0x8000) << 10;
1938 val |= (coal & 0x7fff) << 7;
1939 } else {
1940 if (coal > 0x3fff)
1941 coal = 0x3fff;
1942 val &= ~0x003fff00;
1943 val |= (coal & 0x3fff) << 8;
1944 }
1945 wrl(mp, SDMA_CONFIG(mp->port_num), val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001946}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001947
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001948static void set_tx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001949{
1950 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
1951
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001952 if (coal > 0x3fff)
1953 coal = 0x3fff;
1954 wrl(mp, TX_FIFO_URGENT_THRESHOLD(mp->port_num), (coal & 0x3fff) << 4);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001955}
1956
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001957static int mv643xx_eth_open(struct net_device *dev)
1958{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001959 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001960 int err;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001961 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001962
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001963 wrl(mp, INT_CAUSE(mp->port_num), 0);
1964 wrl(mp, INT_CAUSE_EXT(mp->port_num), 0);
1965 rdl(mp, INT_CAUSE_EXT(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001966
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001967 err = request_irq(dev->irq, mv643xx_eth_irq,
1968 IRQF_SHARED | IRQF_SAMPLE_RANDOM,
1969 dev->name, dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001970 if (err) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001971 dev_printk(KERN_ERR, &dev->dev, "can't assign irq\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001972 return -EAGAIN;
1973 }
1974
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001975 init_mac_tables(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001976
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001977 for (i = 0; i < 8; i++) {
1978 if ((mp->rxq_mask & (1 << i)) == 0)
1979 continue;
1980
1981 err = rxq_init(mp, i);
1982 if (err) {
1983 while (--i >= 0)
1984 if (mp->rxq_mask & (1 << i))
1985 rxq_deinit(mp->rxq + i);
1986 goto out;
1987 }
1988
1989 rxq_refill(mp->rxq + i);
1990 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001991
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001992 for (i = 0; i < 8; i++) {
1993 if ((mp->txq_mask & (1 << i)) == 0)
1994 continue;
1995
1996 err = txq_init(mp, i);
1997 if (err) {
1998 while (--i >= 0)
1999 if (mp->txq_mask & (1 << i))
2000 txq_deinit(mp->txq + i);
2001 goto out_free;
2002 }
2003 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002004
Lennert Buytenheke5371492008-06-01 02:18:13 +02002005#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002006 napi_enable(&mp->napi);
2007#endif
2008
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002009 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002010
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02002011 set_rx_coal(mp, 0);
2012 set_tx_coal(mp, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002013
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002014 wrl(mp, INT_MASK_EXT(mp->port_num),
2015 INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002016
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02002017 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002018
2019 return 0;
2020
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002021
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002022out_free:
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002023 for (i = 0; i < 8; i++)
2024 if (mp->rxq_mask & (1 << i))
2025 rxq_deinit(mp->rxq + i);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002026out:
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002027 free_irq(dev->irq, dev);
2028
2029 return err;
2030}
2031
Lennert Buytenheke5371492008-06-01 02:18:13 +02002032static void port_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002033{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002034 unsigned int data;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002035 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002036
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002037 for (i = 0; i < 8; i++) {
2038 if (mp->rxq_mask & (1 << i))
2039 rxq_disable(mp->rxq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002040 if (mp->txq_mask & (1 << i))
2041 txq_disable(mp->txq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002042 }
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002043
2044 while (1) {
2045 u32 ps = rdl(mp, PORT_STATUS(mp->port_num));
2046
2047 if ((ps & (TX_IN_PROGRESS | TX_FIFO_EMPTY)) == TX_FIFO_EMPTY)
2048 break;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002049 udelay(10);
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002050 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002051
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002052 /* Reset the Enable bit in the Configuration Register */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002053 data = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
2054 data &= ~(SERIAL_PORT_ENABLE |
2055 DO_NOT_FORCE_LINK_FAIL |
2056 FORCE_LINK_PASS);
2057 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002058}
2059
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002060static int mv643xx_eth_stop(struct net_device *dev)
2061{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002062 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002063 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002064
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002065 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
2066 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002067
Lennert Buytenheke5371492008-06-01 02:18:13 +02002068#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002069 napi_disable(&mp->napi);
2070#endif
2071 netif_carrier_off(dev);
2072 netif_stop_queue(dev);
2073
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002074 free_irq(dev->irq, dev);
2075
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002076 port_reset(mp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002077 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002078
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002079 for (i = 0; i < 8; i++) {
2080 if (mp->rxq_mask & (1 << i))
2081 rxq_deinit(mp->rxq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002082 if (mp->txq_mask & (1 << i))
2083 txq_deinit(mp->txq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002084 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002085
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002086 return 0;
2087}
2088
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002089static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002090{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002091 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002092
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002093 if (mp->phy_addr != -1)
2094 return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL);
2095
2096 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002097}
2098
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002099static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
2100{
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002101 struct mv643xx_eth_private *mp = netdev_priv(dev);
2102
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002103 if (new_mtu < 64 || new_mtu > 9500)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002104 return -EINVAL;
2105
2106 dev->mtu = new_mtu;
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002107 tx_set_rate(mp, 1000000000, 16777216);
2108
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002109 if (!netif_running(dev))
2110 return 0;
2111
2112 /*
2113 * Stop and then re-open the interface. This will allocate RX
2114 * skbs of the new MTU.
2115 * There is a possible danger that the open will not succeed,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002116 * due to memory being full.
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002117 */
2118 mv643xx_eth_stop(dev);
2119 if (mv643xx_eth_open(dev)) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002120 dev_printk(KERN_ERR, &dev->dev,
2121 "fatal error on re-opening device after "
2122 "MTU change\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002123 }
2124
2125 return 0;
2126}
2127
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002128static void tx_timeout_task(struct work_struct *ugly)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002129{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002130 struct mv643xx_eth_private *mp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002131
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002132 mp = container_of(ugly, struct mv643xx_eth_private, tx_timeout_task);
2133 if (netif_running(mp->dev)) {
2134 netif_stop_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002135
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002136 port_reset(mp);
2137 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002138
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002139 __txq_maybe_wake(mp->txq + mp->txq_primary);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002140 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002141}
2142
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002143static void mv643xx_eth_tx_timeout(struct net_device *dev)
2144{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002145 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002146
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002147 dev_printk(KERN_INFO, &dev->dev, "tx timeout\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002148
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002149 schedule_work(&mp->tx_timeout_task);
2150}
2151
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002152#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002153static void mv643xx_eth_netpoll(struct net_device *dev)
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002154{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002155 struct mv643xx_eth_private *mp = netdev_priv(dev);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002156
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002157 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
2158 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002159
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002160 mv643xx_eth_irq(dev->irq, dev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002161
Lennert Buytenhekf2ca60f2008-07-07 00:03:00 +02002162 wrl(mp, INT_MASK(mp->port_num), INT_TX_END | INT_RX | INT_EXT);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002163}
2164#endif
2165
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002166static int mv643xx_eth_mdio_read(struct net_device *dev, int addr, int reg)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002167{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002168 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002169 int val;
2170
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002171 smi_reg_read(mp, addr, reg, &val);
2172
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002173 return val;
2174}
2175
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002176static void mv643xx_eth_mdio_write(struct net_device *dev, int addr, int reg, int val)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002177{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002178 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002179 smi_reg_write(mp, addr, reg, val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002180}
2181
2182
2183/* platform glue ************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02002184static void
2185mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private *msp,
2186 struct mbus_dram_target_info *dram)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002187{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002188 void __iomem *base = msp->base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002189 u32 win_enable;
2190 u32 win_protect;
2191 int i;
2192
2193 for (i = 0; i < 6; i++) {
2194 writel(0, base + WINDOW_BASE(i));
2195 writel(0, base + WINDOW_SIZE(i));
2196 if (i < 4)
2197 writel(0, base + WINDOW_REMAP_HIGH(i));
2198 }
2199
2200 win_enable = 0x3f;
2201 win_protect = 0;
2202
2203 for (i = 0; i < dram->num_cs; i++) {
2204 struct mbus_dram_window *cs = dram->cs + i;
2205
2206 writel((cs->base & 0xffff0000) |
2207 (cs->mbus_attr << 8) |
2208 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
2209 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
2210
2211 win_enable &= ~(1 << i);
2212 win_protect |= 3 << (2 * i);
2213 }
2214
2215 writel(win_enable, base + WINDOW_BAR_ENABLE);
2216 msp->win_protect = win_protect;
2217}
2218
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002219static void infer_hw_params(struct mv643xx_eth_shared_private *msp)
2220{
2221 /*
2222 * Check whether we have a 14-bit coal limit field in bits
2223 * [21:8], or a 16-bit coal limit in bits [25,21:7] of the
2224 * SDMA config register.
2225 */
2226 writel(0x02000000, msp->base + SDMA_CONFIG(0));
2227 if (readl(msp->base + SDMA_CONFIG(0)) & 0x02000000)
2228 msp->extended_rx_coal_limit = 1;
2229 else
2230 msp->extended_rx_coal_limit = 0;
Lennert Buytenhek1e881592008-06-02 01:57:36 +02002231
2232 /*
2233 * Check whether the TX rate control registers are in the
2234 * old or the new place.
2235 */
2236 writel(1, msp->base + TX_BW_MTU_MOVED(0));
2237 if (readl(msp->base + TX_BW_MTU_MOVED(0)) & 1)
2238 msp->tx_bw_control_moved = 1;
2239 else
2240 msp->tx_bw_control_moved = 0;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002241}
2242
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002243static int mv643xx_eth_shared_probe(struct platform_device *pdev)
2244{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002245 static int mv643xx_eth_version_printed = 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002246 struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002247 struct mv643xx_eth_shared_private *msp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002248 struct resource *res;
2249 int ret;
2250
Lennert Buytenheke5371492008-06-01 02:18:13 +02002251 if (!mv643xx_eth_version_printed++)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002252 printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n");
2253
2254 ret = -EINVAL;
2255 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2256 if (res == NULL)
2257 goto out;
2258
2259 ret = -ENOMEM;
2260 msp = kmalloc(sizeof(*msp), GFP_KERNEL);
2261 if (msp == NULL)
2262 goto out;
2263 memset(msp, 0, sizeof(*msp));
2264
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002265 msp->base = ioremap(res->start, res->end - res->start + 1);
2266 if (msp->base == NULL)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002267 goto out_free;
2268
2269 spin_lock_init(&msp->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002270
2271 /*
2272 * (Re-)program MBUS remapping windows if we are asked to.
2273 */
2274 if (pd != NULL && pd->dram != NULL)
2275 mv643xx_eth_conf_mbus_windows(msp, pd->dram);
2276
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002277 /*
2278 * Detect hardware parameters.
2279 */
2280 msp->t_clk = (pd != NULL && pd->t_clk != 0) ? pd->t_clk : 133000000;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002281 infer_hw_params(msp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002282
2283 platform_set_drvdata(pdev, msp);
2284
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002285 return 0;
2286
2287out_free:
2288 kfree(msp);
2289out:
2290 return ret;
2291}
2292
2293static int mv643xx_eth_shared_remove(struct platform_device *pdev)
2294{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002295 struct mv643xx_eth_shared_private *msp = platform_get_drvdata(pdev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002296
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02002297 iounmap(msp->base);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002298 kfree(msp);
2299
2300 return 0;
2301}
2302
2303static struct platform_driver mv643xx_eth_shared_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002304 .probe = mv643xx_eth_shared_probe,
2305 .remove = mv643xx_eth_shared_remove,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002306 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002307 .name = MV643XX_ETH_SHARED_NAME,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002308 .owner = THIS_MODULE,
2309 },
2310};
2311
Lennert Buytenheke5371492008-06-01 02:18:13 +02002312static void phy_addr_set(struct mv643xx_eth_private *mp, int phy_addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002313{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002314 int addr_shift = 5 * mp->port_num;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002315 u32 data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002316
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002317 data = rdl(mp, PHY_ADDR);
2318 data &= ~(0x1f << addr_shift);
2319 data |= (phy_addr & 0x1f) << addr_shift;
2320 wrl(mp, PHY_ADDR, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002321}
2322
Lennert Buytenheke5371492008-06-01 02:18:13 +02002323static int phy_addr_get(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002324{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002325 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002326
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002327 data = rdl(mp, PHY_ADDR);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002328
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002329 return (data >> (5 * mp->port_num)) & 0x1f;
2330}
2331
2332static void set_params(struct mv643xx_eth_private *mp,
2333 struct mv643xx_eth_platform_data *pd)
2334{
2335 struct net_device *dev = mp->dev;
2336
2337 if (is_valid_ether_addr(pd->mac_addr))
2338 memcpy(dev->dev_addr, pd->mac_addr, 6);
2339 else
2340 uc_addr_get(mp, dev->dev_addr);
2341
2342 if (pd->phy_addr == -1) {
2343 mp->shared_smi = NULL;
2344 mp->phy_addr = -1;
2345 } else {
2346 mp->shared_smi = mp->shared;
2347 if (pd->shared_smi != NULL)
2348 mp->shared_smi = platform_get_drvdata(pd->shared_smi);
2349
2350 if (pd->force_phy_addr || pd->phy_addr) {
2351 mp->phy_addr = pd->phy_addr & 0x3f;
2352 phy_addr_set(mp, mp->phy_addr);
2353 } else {
2354 mp->phy_addr = phy_addr_get(mp);
2355 }
2356 }
2357
2358 mp->default_rx_ring_size = DEFAULT_RX_QUEUE_SIZE;
2359 if (pd->rx_queue_size)
2360 mp->default_rx_ring_size = pd->rx_queue_size;
2361 mp->rx_desc_sram_addr = pd->rx_sram_addr;
2362 mp->rx_desc_sram_size = pd->rx_sram_size;
2363
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002364 if (pd->rx_queue_mask)
2365 mp->rxq_mask = pd->rx_queue_mask;
2366 else
2367 mp->rxq_mask = 0x01;
2368 mp->rxq_primary = fls(mp->rxq_mask) - 1;
2369
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002370 mp->default_tx_ring_size = DEFAULT_TX_QUEUE_SIZE;
2371 if (pd->tx_queue_size)
2372 mp->default_tx_ring_size = pd->tx_queue_size;
2373 mp->tx_desc_sram_addr = pd->tx_sram_addr;
2374 mp->tx_desc_sram_size = pd->tx_sram_size;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002375
2376 if (pd->tx_queue_mask)
2377 mp->txq_mask = pd->tx_queue_mask;
2378 else
2379 mp->txq_mask = 0x01;
2380 mp->txq_primary = fls(mp->txq_mask) - 1;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002381}
2382
Lennert Buytenheke5371492008-06-01 02:18:13 +02002383static int phy_detect(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002384{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002385 unsigned int data;
2386 unsigned int data2;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002387
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002388 smi_reg_read(mp, mp->phy_addr, 0, &data);
2389 smi_reg_write(mp, mp->phy_addr, 0, data ^ 0x1000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002390
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002391 smi_reg_read(mp, mp->phy_addr, 0, &data2);
2392 if (((data ^ data2) & 0x1000) == 0)
2393 return -ENODEV;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002394
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002395 smi_reg_write(mp, mp->phy_addr, 0, data);
2396
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002397 return 0;
2398}
2399
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002400static int phy_init(struct mv643xx_eth_private *mp,
2401 struct mv643xx_eth_platform_data *pd)
James Chapmand0412d92006-01-27 01:15:30 -07002402{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002403 struct ethtool_cmd cmd;
2404 int err;
James Chapmand0412d92006-01-27 01:15:30 -07002405
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002406 err = phy_detect(mp);
2407 if (err) {
2408 dev_printk(KERN_INFO, &mp->dev->dev,
2409 "no PHY detected at addr %d\n", mp->phy_addr);
2410 return err;
James Chapmand0412d92006-01-27 01:15:30 -07002411 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002412 phy_reset(mp);
2413
2414 mp->mii.phy_id = mp->phy_addr;
2415 mp->mii.phy_id_mask = 0x3f;
2416 mp->mii.reg_num_mask = 0x1f;
2417 mp->mii.dev = mp->dev;
2418 mp->mii.mdio_read = mv643xx_eth_mdio_read;
2419 mp->mii.mdio_write = mv643xx_eth_mdio_write;
2420
2421 mp->mii.supports_gmii = mii_check_gmii_support(&mp->mii);
2422
2423 memset(&cmd, 0, sizeof(cmd));
2424
2425 cmd.port = PORT_MII;
2426 cmd.transceiver = XCVR_INTERNAL;
2427 cmd.phy_address = mp->phy_addr;
2428 if (pd->speed == 0) {
2429 cmd.autoneg = AUTONEG_ENABLE;
2430 cmd.speed = SPEED_100;
2431 cmd.advertising = ADVERTISED_10baseT_Half |
2432 ADVERTISED_10baseT_Full |
2433 ADVERTISED_100baseT_Half |
2434 ADVERTISED_100baseT_Full;
2435 if (mp->mii.supports_gmii)
2436 cmd.advertising |= ADVERTISED_1000baseT_Full;
2437 } else {
2438 cmd.autoneg = AUTONEG_DISABLE;
2439 cmd.speed = pd->speed;
2440 cmd.duplex = pd->duplex;
2441 }
2442
2443 update_pscr(mp, cmd.speed, cmd.duplex);
2444 mv643xx_eth_set_settings(mp->dev, &cmd);
2445
2446 return 0;
James Chapmand0412d92006-01-27 01:15:30 -07002447}
2448
Russell King3ae5eae2005-11-09 22:32:44 +00002449static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 struct mv643xx_eth_platform_data *pd;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002452 struct mv643xx_eth_private *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 struct resource *res;
Al Viroc5d64712007-10-13 08:30:26 +01002455 DECLARE_MAC_BUF(mac);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002456 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002458 pd = pdev->dev.platform_data;
2459 if (pd == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002460 dev_printk(KERN_ERR, &pdev->dev,
2461 "no mv643xx_eth_platform_data\n");
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002462 return -ENODEV;
2463 }
2464
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002465 if (pd->shared == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002466 dev_printk(KERN_ERR, &pdev->dev,
2467 "no mv643xx_eth_platform_data->shared\n");
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002468 return -ENODEV;
2469 }
2470
Lennert Buytenheke5371492008-06-01 02:18:13 +02002471 dev = alloc_etherdev(sizeof(struct mv643xx_eth_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 if (!dev)
2473 return -ENOMEM;
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002476 platform_set_drvdata(pdev, mp);
2477
2478 mp->shared = platform_get_drvdata(pd->shared);
2479 mp->port_num = pd->port_number;
2480
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002481 mp->dev = dev;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002482#ifdef MV643XX_ETH_NAPI
2483 netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, 64);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002484#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002486 set_params(mp, pd);
2487
2488 spin_lock_init(&mp->lock);
2489
2490 mib_counters_clear(mp);
2491 INIT_WORK(&mp->tx_timeout_task, tx_timeout_task);
2492
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002493 if (mp->phy_addr != -1) {
2494 err = phy_init(mp, pd);
2495 if (err)
2496 goto out;
2497
2498 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops);
2499 } else {
2500 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops_phyless);
2501 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002502
2503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2505 BUG_ON(!res);
2506 dev->irq = res->start;
2507
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002508 dev->hard_start_xmit = mv643xx_eth_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 dev->open = mv643xx_eth_open;
2510 dev->stop = mv643xx_eth_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002512 dev->set_mac_address = mv643xx_eth_set_mac_address;
2513 dev->do_ioctl = mv643xx_eth_ioctl;
2514 dev->change_mtu = mv643xx_eth_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 dev->tx_timeout = mv643xx_eth_tx_timeout;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002516#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenheke5371492008-06-01 02:18:13 +02002517 dev->poll_controller = mv643xx_eth_netpoll;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002518#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 dev->base_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Lennert Buytenheke5371492008-06-01 02:18:13 +02002522#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 /*
2524 * Zero copy can only work if we use Discovery II memory. Else, we will
2525 * have to map the buffers to ISA memory which is only 16 MB
2526 */
Wolfram Joost63890572006-01-16 16:57:41 -07002527 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528#endif
James Chapmanc28a4f82006-01-27 01:13:15 -07002529
Olaf Heringb0b8dab2006-04-27 18:23:49 -07002530 SET_NETDEV_DEV(dev, &pdev->dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002531
2532 if (mp->shared->win_protect)
2533 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 err = register_netdev(dev);
2536 if (err)
2537 goto out;
2538
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002539 dev_printk(KERN_NOTICE, &dev->dev, "port %d with MAC address %s\n",
2540 mp->port_num, print_mac(mac, dev->dev_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
2542 if (dev->features & NETIF_F_SG)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002543 dev_printk(KERN_NOTICE, &dev->dev, "scatter/gather enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
2545 if (dev->features & NETIF_F_IP_CSUM)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002546 dev_printk(KERN_NOTICE, &dev->dev, "tx checksum offload\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Lennert Buytenheke5371492008-06-01 02:18:13 +02002548#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002549 dev_printk(KERN_NOTICE, &dev->dev, "napi enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550#endif
2551
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002552 if (mp->tx_desc_sram_size > 0)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002553 dev_printk(KERN_NOTICE, &dev->dev, "configured with sram\n");
Nicolas DETb1529872005-10-28 17:46:30 -07002554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 return 0;
2556
2557out:
2558 free_netdev(dev);
2559
2560 return err;
2561}
2562
Russell King3ae5eae2005-11-09 22:32:44 +00002563static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002565 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002567 unregister_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 flush_scheduled_work();
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002569 free_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Russell King3ae5eae2005-11-09 22:32:44 +00002571 platform_set_drvdata(pdev, NULL);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002572
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 return 0;
2574}
2575
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002576static void mv643xx_eth_shutdown(struct platform_device *pdev)
2577{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002578 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002579
2580 /* Mask all interrupts on ethernet port */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002581 wrl(mp, INT_MASK(mp->port_num), 0);
2582 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002583
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002584 if (netif_running(mp->dev))
2585 port_reset(mp);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002586}
2587
Russell King3ae5eae2005-11-09 22:32:44 +00002588static struct platform_driver mv643xx_eth_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002589 .probe = mv643xx_eth_probe,
2590 .remove = mv643xx_eth_remove,
2591 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00002592 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002593 .name = MV643XX_ETH_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07002594 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002595 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596};
2597
Lennert Buytenheke5371492008-06-01 02:18:13 +02002598static int __init mv643xx_eth_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
2600 int rc;
2601
Russell King3ae5eae2005-11-09 22:32:44 +00002602 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00002604 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00002606 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002608
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 return rc;
2610}
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002611module_init(mv643xx_eth_init_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Lennert Buytenheke5371492008-06-01 02:18:13 +02002613static void __exit mv643xx_eth_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614{
Russell King3ae5eae2005-11-09 22:32:44 +00002615 platform_driver_unregister(&mv643xx_eth_driver);
2616 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617}
Lennert Buytenheke5371492008-06-01 02:18:13 +02002618module_exit(mv643xx_eth_cleanup_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Lennert Buytenhek45675bc2008-06-02 02:02:30 +02002620MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, "
2621 "Manish Lachwani, Dale Farnsworth and Lennert Buytenhek");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002623MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -07002624MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002625MODULE_ALIAS("platform:" MV643XX_ETH_NAME);