blob: cf18419f96ab3f64be990c4c17544ee28ca9e6ae [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";
58static char mv643xx_eth_driver_version[] = "1.0";
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +020059
Lennert Buytenheke5371492008-06-01 02:18:13 +020060#define MV643XX_ETH_CHECKSUM_OFFLOAD_TX
61#define MV643XX_ETH_NAPI
62#define MV643XX_ETH_TX_FAST_REFILL
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020063
Lennert Buytenheke5371492008-06-01 02:18:13 +020064#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020065#define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1)
66#else
67#define MAX_DESCS_PER_SKB 1
68#endif
69
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020070/*
71 * Registers shared between all ports.
72 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020073#define PHY_ADDR 0x0000
74#define SMI_REG 0x0004
75#define WINDOW_BASE(w) (0x0200 + ((w) << 3))
76#define WINDOW_SIZE(w) (0x0204 + ((w) << 3))
77#define WINDOW_REMAP_HIGH(w) (0x0280 + ((w) << 2))
78#define WINDOW_BAR_ENABLE 0x0290
79#define WINDOW_PROTECT(w) (0x0294 + ((w) << 4))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020080
81/*
82 * Per-port registers.
83 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020084#define PORT_CONFIG(p) (0x0400 + ((p) << 10))
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +020085#define UNICAST_PROMISCUOUS_MODE 0x00000001
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020086#define PORT_CONFIG_EXT(p) (0x0404 + ((p) << 10))
87#define MAC_ADDR_LOW(p) (0x0414 + ((p) << 10))
88#define MAC_ADDR_HIGH(p) (0x0418 + ((p) << 10))
89#define SDMA_CONFIG(p) (0x041c + ((p) << 10))
90#define PORT_SERIAL_CONTROL(p) (0x043c + ((p) << 10))
91#define PORT_STATUS(p) (0x0444 + ((p) << 10))
Lennert Buytenheka2a41682008-06-01 01:30:42 +020092#define TX_FIFO_EMPTY 0x00000400
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020093#define TXQ_COMMAND(p) (0x0448 + ((p) << 10))
94#define TX_BW_MTU(p) (0x0458 + ((p) << 10))
95#define INT_CAUSE(p) (0x0460 + ((p) << 10))
Lennert Buytenhek073a3452008-06-01 02:00:31 +020096#define INT_RX 0x00000804
97#define INT_EXT 0x00000002
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020098#define INT_CAUSE_EXT(p) (0x0464 + ((p) << 10))
Lennert Buytenhek073a3452008-06-01 02:00:31 +020099#define INT_EXT_LINK 0x00100000
100#define INT_EXT_PHY 0x00010000
101#define INT_EXT_TX_ERROR_0 0x00000100
102#define INT_EXT_TX_0 0x00000001
103#define INT_EXT_TX 0x00000101
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200104#define INT_MASK(p) (0x0468 + ((p) << 10))
105#define INT_MASK_EXT(p) (0x046c + ((p) << 10))
106#define TX_FIFO_URGENT_THRESHOLD(p) (0x0474 + ((p) << 10))
107#define RXQ_CURRENT_DESC_PTR(p) (0x060c + ((p) << 10))
108#define RXQ_COMMAND(p) (0x0680 + ((p) << 10))
109#define TXQ_CURRENT_DESC_PTR(p) (0x06c0 + ((p) << 10))
110#define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
111#define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
112#define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
113#define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200114
Lennert Buytenhek2679a552008-06-01 01:18:58 +0200115
116/*
117 * SDMA configuration register.
118 */
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200119#define RX_BURST_SIZE_4_64BIT (2 << 1)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200120#define BLM_RX_NO_SWAP (1 << 4)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200121#define BLM_TX_NO_SWAP (1 << 5)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200122#define TX_BURST_SIZE_4_64BIT (2 << 22)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200123
124#if defined(__BIG_ENDIAN)
125#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
126 RX_BURST_SIZE_4_64BIT | \
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200127 TX_BURST_SIZE_4_64BIT
128#elif defined(__LITTLE_ENDIAN)
129#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
130 RX_BURST_SIZE_4_64BIT | \
131 BLM_RX_NO_SWAP | \
132 BLM_TX_NO_SWAP | \
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200133 TX_BURST_SIZE_4_64BIT
134#else
135#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
136#endif
137
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200138
139/*
140 * Port serial control register.
141 */
142#define SET_MII_SPEED_TO_100 (1 << 24)
143#define SET_GMII_SPEED_TO_1000 (1 << 23)
144#define SET_FULL_DUPLEX_MODE (1 << 21)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200145#define MAX_RX_PACKET_1522BYTE (1 << 17)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200146#define MAX_RX_PACKET_9700BYTE (5 << 17)
147#define MAX_RX_PACKET_MASK (7 << 17)
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200148#define DISABLE_AUTO_NEG_SPEED_GMII (1 << 13)
149#define DO_NOT_FORCE_LINK_FAIL (1 << 10)
150#define SERIAL_PORT_CONTROL_RESERVED (1 << 9)
151#define DISABLE_AUTO_NEG_FOR_FLOW_CTRL (1 << 3)
152#define DISABLE_AUTO_NEG_FOR_DUPLEX (1 << 2)
153#define FORCE_LINK_PASS (1 << 1)
154#define SERIAL_PORT_ENABLE (1 << 0)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200155
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200156#define DEFAULT_RX_QUEUE_SIZE 400
157#define DEFAULT_TX_QUEUE_SIZE 800
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200158
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200159
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200160/*
161 * RX/TX descriptors.
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200162 */
163#if defined(__BIG_ENDIAN)
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200164struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200165 u16 byte_cnt; /* Descriptor buffer byte count */
166 u16 buf_size; /* Buffer size */
167 u32 cmd_sts; /* Descriptor command status */
168 u32 next_desc_ptr; /* Next descriptor pointer */
169 u32 buf_ptr; /* Descriptor buffer pointer */
170};
171
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200172struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200173 u16 byte_cnt; /* buffer byte count */
174 u16 l4i_chk; /* CPU provided TCP checksum */
175 u32 cmd_sts; /* Command/status field */
176 u32 next_desc_ptr; /* Pointer to next descriptor */
177 u32 buf_ptr; /* pointer to buffer for this descriptor*/
178};
179#elif defined(__LITTLE_ENDIAN)
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200180struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200181 u32 cmd_sts; /* Descriptor command status */
182 u16 buf_size; /* Buffer size */
183 u16 byte_cnt; /* Descriptor buffer byte count */
184 u32 buf_ptr; /* Descriptor buffer pointer */
185 u32 next_desc_ptr; /* Next descriptor pointer */
186};
187
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200188struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200189 u32 cmd_sts; /* Command/status field */
190 u16 l4i_chk; /* CPU provided TCP checksum */
191 u16 byte_cnt; /* buffer byte count */
192 u32 buf_ptr; /* pointer to buffer for this descriptor*/
193 u32 next_desc_ptr; /* Pointer to next descriptor */
194};
195#else
196#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
197#endif
198
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200199/* RX & TX descriptor command */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200200#define BUFFER_OWNED_BY_DMA 0x80000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200201
202/* RX & TX descriptor status */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200203#define ERROR_SUMMARY 0x00000001
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200204
205/* RX descriptor status */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200206#define LAYER_4_CHECKSUM_OK 0x40000000
207#define RX_ENABLE_INTERRUPT 0x20000000
208#define RX_FIRST_DESC 0x08000000
209#define RX_LAST_DESC 0x04000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200210
211/* TX descriptor command */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200212#define TX_ENABLE_INTERRUPT 0x00800000
213#define GEN_CRC 0x00400000
214#define TX_FIRST_DESC 0x00200000
215#define TX_LAST_DESC 0x00100000
216#define ZERO_PADDING 0x00080000
217#define GEN_IP_V4_CHECKSUM 0x00040000
218#define GEN_TCP_UDP_CHECKSUM 0x00020000
219#define UDP_FRAME 0x00010000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200220
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200221#define TX_IHL_SHIFT 11
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200222
223
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200224/* global *******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200225struct mv643xx_eth_shared_private {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200226 /*
227 * Ethernet controller base address.
228 */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200229 void __iomem *base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200230
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200231 /*
232 * Protects access to SMI_REG, which is shared between ports.
233 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200234 spinlock_t phy_lock;
235
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200236 /*
237 * Per-port MBUS window access register value.
238 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200239 u32 win_protect;
240
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200241 /*
242 * Hardware-specific parameters.
243 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200244 unsigned int t_clk;
245};
246
247
248/* per-port *****************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200249struct mib_counters {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200250 u64 good_octets_received;
251 u32 bad_octets_received;
252 u32 internal_mac_transmit_err;
253 u32 good_frames_received;
254 u32 bad_frames_received;
255 u32 broadcast_frames_received;
256 u32 multicast_frames_received;
257 u32 frames_64_octets;
258 u32 frames_65_to_127_octets;
259 u32 frames_128_to_255_octets;
260 u32 frames_256_to_511_octets;
261 u32 frames_512_to_1023_octets;
262 u32 frames_1024_to_max_octets;
263 u64 good_octets_sent;
264 u32 good_frames_sent;
265 u32 excessive_collision;
266 u32 multicast_frames_sent;
267 u32 broadcast_frames_sent;
268 u32 unrec_mac_control_received;
269 u32 fc_sent;
270 u32 good_fc_received;
271 u32 bad_fc_received;
272 u32 undersize_received;
273 u32 fragments_received;
274 u32 oversize_received;
275 u32 jabber_received;
276 u32 mac_receive_error;
277 u32 bad_crc_event;
278 u32 collision;
279 u32 late_collision;
280};
281
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200282struct rx_queue {
283 int rx_ring_size;
284
285 int rx_desc_count;
286 int rx_curr_desc;
287 int rx_used_desc;
288
289 struct rx_desc *rx_desc_area;
290 dma_addr_t rx_desc_dma;
291 int rx_desc_area_size;
292 struct sk_buff **rx_skb;
293
294 struct timer_list rx_oom;
295};
296
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200297struct tx_queue {
298 int tx_ring_size;
299
300 int tx_desc_count;
301 int tx_curr_desc;
302 int tx_used_desc;
303
304 struct tx_desc *tx_desc_area;
305 dma_addr_t tx_desc_dma;
306 int tx_desc_area_size;
307 struct sk_buff **tx_skb;
308};
309
Lennert Buytenheke5371492008-06-01 02:18:13 +0200310struct mv643xx_eth_private {
311 struct mv643xx_eth_shared_private *shared;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200312 int port_num;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200313
314 struct net_device *dev;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200315
316 struct mv643xx_eth_shared_private *shared_smi;
317 int phy_addr;
318
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200319 spinlock_t lock;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200320
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200321 struct mib_counters mib_counters;
322 struct work_struct tx_timeout_task;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200323 struct mii_if_info mii;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200324
325 /*
326 * RX state.
327 */
328 int default_rx_ring_size;
329 unsigned long rx_desc_sram_addr;
330 int rx_desc_sram_size;
331 struct napi_struct napi;
332 struct rx_queue rxq[1];
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200333
334 /*
335 * TX state.
336 */
337 int default_tx_ring_size;
338 unsigned long tx_desc_sram_addr;
339 int tx_desc_sram_size;
340 struct tx_queue txq[1];
341#ifdef MV643XX_ETH_TX_FAST_REFILL
342 int tx_clean_threshold;
343#endif
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200344};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200346
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200347/* port register accessors **************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200348static inline u32 rdl(struct mv643xx_eth_private *mp, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200350 return readl(mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
Lennert Buytenheke5371492008-06-01 02:18:13 +0200353static inline void wrl(struct mv643xx_eth_private *mp, int offset, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200355 writel(data, mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200358
359/* rxq/txq helper functions *************************************************/
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200360static struct mv643xx_eth_private *rxq_to_mp(struct rx_queue *rxq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200362 return container_of(rxq, struct mv643xx_eth_private, rxq[0]);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200363}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200365static struct mv643xx_eth_private *txq_to_mp(struct tx_queue *txq)
366{
367 return container_of(txq, struct mv643xx_eth_private, txq[0]);
368}
369
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200370static void rxq_enable(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200371{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200372 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
373 wrl(mp, RXQ_COMMAND(mp->port_num), 1);
374}
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700375
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200376static void rxq_disable(struct rx_queue *rxq)
377{
378 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
379 u8 mask = 1;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200380
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200381 wrl(mp, RXQ_COMMAND(mp->port_num), mask << 8);
382 while (rdl(mp, RXQ_COMMAND(mp->port_num)) & mask)
383 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200384}
385
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200386static void txq_enable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200387{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200388 struct mv643xx_eth_private *mp = txq_to_mp(txq);
389 wrl(mp, TXQ_COMMAND(mp->port_num), 1);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200390}
391
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200392static void txq_disable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200393{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200394 struct mv643xx_eth_private *mp = txq_to_mp(txq);
395 u8 mask = 1;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200396
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200397 wrl(mp, TXQ_COMMAND(mp->port_num), mask << 8);
398 while (rdl(mp, TXQ_COMMAND(mp->port_num)) & mask)
399 udelay(10);
400}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200401
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200402static void __txq_maybe_wake(struct tx_queue *txq)
403{
404 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200405
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200406 if (txq->tx_ring_size - txq->tx_desc_count >= MAX_DESCS_PER_SKB)
407 netif_wake_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200408}
409
410
411/* rx ***********************************************************************/
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200412static void txq_reclaim(struct tx_queue *txq, int force);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200413
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200414static void rxq_refill(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200415{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200416 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200417 unsigned long flags;
418
419 spin_lock_irqsave(&mp->lock, flags);
420
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200421 while (rxq->rx_desc_count < rxq->rx_ring_size) {
422 int skb_size;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200423 struct sk_buff *skb;
424 int unaligned;
425 int rx;
426
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200427 /*
428 * Reserve 2+14 bytes for an ethernet header (the
429 * hardware automatically prepends 2 bytes of dummy
430 * data to each received packet), 4 bytes for a VLAN
431 * header, and 4 bytes for the trailing FCS -- 24
432 * bytes total.
433 */
434 skb_size = mp->dev->mtu + 24;
435
436 skb = dev_alloc_skb(skb_size + dma_get_cache_alignment() - 1);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200437 if (skb == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 break;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200439
Ralf Baechle908b6372007-02-26 19:52:06 +0000440 unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700441 if (unaligned)
Ralf Baechle908b6372007-02-26 19:52:06 +0000442 skb_reserve(skb, dma_get_cache_alignment() - unaligned);
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200443
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200444 rxq->rx_desc_count++;
445 rx = rxq->rx_used_desc;
446 rxq->rx_used_desc = (rx + 1) % rxq->rx_ring_size;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200447
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200448 rxq->rx_desc_area[rx].buf_ptr = dma_map_single(NULL, skb->data,
449 skb_size, DMA_FROM_DEVICE);
450 rxq->rx_desc_area[rx].buf_size = skb_size;
451 rxq->rx_skb[rx] = skb;
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200452 wmb();
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200453 rxq->rx_desc_area[rx].cmd_sts = BUFFER_OWNED_BY_DMA |
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200454 RX_ENABLE_INTERRUPT;
455 wmb();
456
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200457 /*
458 * The hardware automatically prepends 2 bytes of
459 * dummy data to each received packet, so that the
460 * IP header ends up 16-byte aligned.
461 */
462 skb_reserve(skb, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200464
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200465 if (rxq->rx_desc_count == 0) {
466 rxq->rx_oom.expires = jiffies + (HZ / 10);
467 add_timer(&rxq->rx_oom);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
Lennert Buytenhekde34f222008-06-01 10:07:49 +0200469
470 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200473static inline void rxq_refill_timer_wrapper(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200475 rxq_refill((struct rx_queue *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200478static int rxq_process(struct rx_queue *rxq, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200480 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
481 struct net_device_stats *stats = &mp->dev->stats;
482 int rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200484 rx = 0;
485 while (rx < budget) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200486 struct rx_desc *rx_desc;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200487 unsigned int cmd_sts;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200488 struct sk_buff *skb;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200489 unsigned long flags;
490
491 spin_lock_irqsave(&mp->lock, flags);
492
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200493 rx_desc = &rxq->rx_desc_area[rxq->rx_curr_desc];
Lennert Buytenhek96587662008-06-01 10:31:56 +0200494
495 cmd_sts = rx_desc->cmd_sts;
496 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
497 spin_unlock_irqrestore(&mp->lock, flags);
498 break;
499 }
500 rmb();
501
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200502 skb = rxq->rx_skb[rxq->rx_curr_desc];
503 rxq->rx_skb[rxq->rx_curr_desc] = NULL;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200504
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200505 rxq->rx_curr_desc = (rxq->rx_curr_desc + 1) % rxq->rx_ring_size;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200506
507 spin_unlock_irqrestore(&mp->lock, flags);
508
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200509 dma_unmap_single(NULL, rx_desc->buf_ptr + 2,
510 mp->dev->mtu + 24, DMA_FROM_DEVICE);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200511 rxq->rx_desc_count--;
512 rx++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700513
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700514 /*
515 * Update statistics.
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200516 *
517 * Note that the descriptor byte count includes 2 dummy
518 * bytes automatically inserted by the hardware at the
519 * start of the packet (which we don't count), and a 4
520 * byte CRC at the end of the packet (which we do count).
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700521 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 stats->rx_packets++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200523 stats->rx_bytes += rx_desc->byte_cnt - 2;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200526 * In case we received a packet without first / last bits
527 * on, or the error summary bit is set, the packet needs
528 * to be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 */
Lennert Buytenhek96587662008-06-01 10:31:56 +0200530 if (((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200531 (RX_FIRST_DESC | RX_LAST_DESC))
Lennert Buytenhek96587662008-06-01 10:31:56 +0200532 || (cmd_sts & ERROR_SUMMARY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 stats->rx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200534
Lennert Buytenhek96587662008-06-01 10:31:56 +0200535 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200536 (RX_FIRST_DESC | RX_LAST_DESC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (net_ratelimit())
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200538 dev_printk(KERN_ERR, &mp->dev->dev,
539 "received packet spanning "
540 "multiple descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200542
Lennert Buytenhek96587662008-06-01 10:31:56 +0200543 if (cmd_sts & ERROR_SUMMARY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 stats->rx_errors++;
545
546 dev_kfree_skb_irq(skb);
547 } else {
548 /*
549 * The -4 is for the CRC in the trailer of the
550 * received packet
551 */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200552 skb_put(skb, rx_desc->byte_cnt - 2 - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Lennert Buytenhek96587662008-06-01 10:31:56 +0200554 if (cmd_sts & LAYER_4_CHECKSUM_OK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 skb->ip_summed = CHECKSUM_UNNECESSARY;
556 skb->csum = htons(
Lennert Buytenhek96587662008-06-01 10:31:56 +0200557 (cmd_sts & 0x0007fff8) >> 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200559 skb->protocol = eth_type_trans(skb, mp->dev);
Lennert Buytenheke5371492008-06-01 02:18:13 +0200560#ifdef MV643XX_ETH_NAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 netif_receive_skb(skb);
562#else
563 netif_rx(skb);
564#endif
565 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200566
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200567 mp->dev->last_rx = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200569
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200570 rxq_refill(rxq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200572 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Lennert Buytenheke5371492008-06-01 02:18:13 +0200575#ifdef MV643XX_ETH_NAPI
Lennert Buytenheke5371492008-06-01 02:18:13 +0200576static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200578 struct mv643xx_eth_private *mp;
579 int rx;
580
581 mp = container_of(napi, struct mv643xx_eth_private, napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Lennert Buytenheke5371492008-06-01 02:18:13 +0200583#ifdef MV643XX_ETH_TX_FAST_REFILL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (++mp->tx_clean_threshold > 5) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200585 txq_reclaim(mp->txq, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 mp->tx_clean_threshold = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588#endif
589
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200590 rx = rxq_process(mp->rxq, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200592 if (rx < budget) {
593 netif_rx_complete(mp->dev, napi);
594 wrl(mp, INT_CAUSE(mp->port_num), 0);
595 wrl(mp, INT_CAUSE_EXT(mp->port_num), 0);
596 wrl(mp, INT_MASK(mp->port_num), INT_RX | INT_EXT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
598
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200599 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601#endif
602
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200603
604/* tx ***********************************************************************/
Paul Janzenf7ea3332006-01-16 16:52:13 -0700605static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
606{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200607 int frag;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700608
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700609 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200610 skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
611 if (fragp->size <= 8 && fragp->page_offset & 7)
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700612 return 1;
613 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200614
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700615 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700616}
617
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200618static int txq_alloc_desc_index(struct tx_queue *txq)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700619{
620 int tx_desc_curr;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700621
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200622 BUG_ON(txq->tx_desc_count >= txq->tx_ring_size);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700623
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200624 tx_desc_curr = txq->tx_curr_desc;
625 txq->tx_curr_desc = (tx_desc_curr + 1) % txq->tx_ring_size;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700626
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200627 BUG_ON(txq->tx_curr_desc == txq->tx_used_desc);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700628
629 return tx_desc_curr;
630}
631
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200632static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700633{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200634 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700635 int frag;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700636
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200637 for (frag = 0; frag < nr_frags; frag++) {
638 skb_frag_t *this_frag;
639 int tx_index;
640 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700641
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200642 this_frag = &skb_shinfo(skb)->frags[frag];
643 tx_index = txq_alloc_desc_index(txq);
644 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700645
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200646 /*
647 * The last fragment will generate an interrupt
648 * which will free the skb on TX completion.
649 */
650 if (frag == nr_frags - 1) {
651 desc->cmd_sts = BUFFER_OWNED_BY_DMA |
652 ZERO_PADDING | TX_LAST_DESC |
653 TX_ENABLE_INTERRUPT;
654 txq->tx_skb[tx_index] = skb;
655 } else {
656 desc->cmd_sts = BUFFER_OWNED_BY_DMA;
657 txq->tx_skb[tx_index] = NULL;
658 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700659
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700660 desc->l4i_chk = 0;
661 desc->byte_cnt = this_frag->size;
662 desc->buf_ptr = dma_map_page(NULL, this_frag->page,
663 this_frag->page_offset,
664 this_frag->size,
665 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700666 }
667}
668
Byron Bradley324ff2c2008-02-04 23:47:15 -0800669static inline __be16 sum16_as_be(__sum16 sum)
670{
671 return (__force __be16)sum;
672}
673
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200674static void txq_submit_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700675{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200676 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700677 int tx_index;
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200678 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700679 u32 cmd_sts;
680 int length;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700681
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200682 cmd_sts = TX_FIRST_DESC | GEN_CRC | BUFFER_OWNED_BY_DMA;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700683
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200684 tx_index = txq_alloc_desc_index(txq);
685 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700686
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700687 if (nr_frags) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200688 txq_submit_frag_skb(txq, skb);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700689
690 length = skb_headlen(skb);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200691 txq->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700692 } else {
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200693 cmd_sts |= ZERO_PADDING | TX_LAST_DESC | TX_ENABLE_INTERRUPT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700694 length = skb->len;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200695 txq->tx_skb[tx_index] = skb;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700696 }
697
698 desc->byte_cnt = length;
699 desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700700
Patrick McHardy84fa7932006-08-29 16:44:56 -0700701 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Byron Bradley324ff2c2008-02-04 23:47:15 -0800702 BUG_ON(skb->protocol != htons(ETH_P_IP));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700703
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200704 cmd_sts |= GEN_TCP_UDP_CHECKSUM |
705 GEN_IP_V4_CHECKSUM |
706 ip_hdr(skb)->ihl << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700707
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700708 switch (ip_hdr(skb)->protocol) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700709 case IPPROTO_UDP:
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200710 cmd_sts |= UDP_FRAME;
Byron Bradley324ff2c2008-02-04 23:47:15 -0800711 desc->l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700712 break;
713 case IPPROTO_TCP:
Byron Bradley324ff2c2008-02-04 23:47:15 -0800714 desc->l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700715 break;
716 default:
717 BUG();
718 }
719 } else {
720 /* Errata BTS #50, IHL must be 5 if no HW checksum */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200721 cmd_sts |= 5 << TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700722 desc->l4i_chk = 0;
723 }
724
725 /* ensure all other descriptors are written before first cmd_sts */
726 wmb();
727 desc->cmd_sts = cmd_sts;
728
729 /* ensure all descriptors are written before poking hardware */
730 wmb();
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200731 txq_enable(txq);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700732
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200733 txq->tx_desc_count += nr_frags + 1;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700734}
735
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200736static int mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200738 struct mv643xx_eth_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700739 struct net_device_stats *stats = &dev->stats;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200740 struct tx_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700743 BUG_ON(netif_queue_stopped(dev));
Dale Farnsworth94843562006-04-11 18:24:26 -0700744
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700745 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
746 stats->tx_dropped++;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200747 dev_printk(KERN_DEBUG, &dev->dev,
748 "failed to linearize skb with tiny "
749 "unaligned fragment\n");
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700750 return NETDEV_TX_BUSY;
Dale Farnsworth94843562006-04-11 18:24:26 -0700751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 spin_lock_irqsave(&mp->lock, flags);
754
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200755 txq = mp->txq;
756
757 if (txq->tx_ring_size - txq->tx_desc_count < MAX_DESCS_PER_SKB) {
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700758 printk(KERN_ERR "%s: transmit with queue full\n", dev->name);
759 netif_stop_queue(dev);
760 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700761 return NETDEV_TX_BUSY;
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700762 }
763
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200764 txq_submit_skb(txq, skb);
Dale Farnsworthe7e381f2007-09-14 11:23:16 -0700765 stats->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 stats->tx_packets++;
767 dev->trans_start = jiffies;
768
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200769 if (txq->tx_ring_size - txq->tx_desc_count < MAX_DESCS_PER_SKB)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700770 netif_stop_queue(dev);
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 spin_unlock_irqrestore(&mp->lock, flags);
773
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700774 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200777
778/* mii management interface *************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200779#define SMI_BUSY 0x10000000
780#define SMI_READ_VALID 0x08000000
781#define SMI_OPCODE_READ 0x04000000
782#define SMI_OPCODE_WRITE 0x00000000
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200783
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200784static void smi_reg_read(struct mv643xx_eth_private *mp, unsigned int addr,
785 unsigned int reg, unsigned int *value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200786{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200787 void __iomem *smi_reg = mp->shared_smi->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200788 unsigned long flags;
789 int i;
790
791 /* the SMI register is a shared resource */
792 spin_lock_irqsave(&mp->shared_smi->phy_lock, flags);
793
794 /* wait for the SMI register to become available */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200795 for (i = 0; readl(smi_reg) & SMI_BUSY; i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200796 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200797 printk("%s: PHY busy timeout\n", mp->dev->name);
798 goto out;
799 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200800 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200801 }
802
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200803 writel(SMI_OPCODE_READ | (reg << 21) | (addr << 16), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200804
805 /* now wait for the data to be valid */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200806 for (i = 0; !(readl(smi_reg) & SMI_READ_VALID); i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200807 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200808 printk("%s: PHY read timeout\n", mp->dev->name);
809 goto out;
810 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200811 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200812 }
813
814 *value = readl(smi_reg) & 0xffff;
815out:
816 spin_unlock_irqrestore(&mp->shared_smi->phy_lock, flags);
817}
818
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200819static void smi_reg_write(struct mv643xx_eth_private *mp,
820 unsigned int addr,
821 unsigned int reg, unsigned int value)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200822{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200823 void __iomem *smi_reg = mp->shared_smi->base + SMI_REG;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200824 unsigned long flags;
825 int i;
826
827 /* the SMI register is a shared resource */
828 spin_lock_irqsave(&mp->shared_smi->phy_lock, flags);
829
830 /* wait for the SMI register to become available */
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +0200831 for (i = 0; readl(smi_reg) & SMI_BUSY; i++) {
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200832 if (i == 1000) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200833 printk("%s: PHY busy timeout\n", mp->dev->name);
834 goto out;
835 }
Lennert Buytenheke1bea502008-06-01 01:29:14 +0200836 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200837 }
838
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200839 writel(SMI_OPCODE_WRITE | (reg << 21) |
840 (addr << 16) | (value & 0xffff), smi_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200841out:
842 spin_unlock_irqrestore(&mp->shared_smi->phy_lock, flags);
843}
844
845
846/* mib counters *************************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200847static inline u32 mib_read(struct mv643xx_eth_private *mp, int offset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200848{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200849 return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200850}
851
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200852static void mib_counters_clear(struct mv643xx_eth_private *mp)
853{
854 int i;
855
856 for (i = 0; i < 0x80; i += 4)
857 mib_read(mp, i);
858}
859
860static void mib_counters_update(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200861{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200862 struct mib_counters *p = &mp->mib_counters;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200863
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200864 p->good_octets_received += mib_read(mp, 0x00);
865 p->good_octets_received += (u64)mib_read(mp, 0x04) << 32;
866 p->bad_octets_received += mib_read(mp, 0x08);
867 p->internal_mac_transmit_err += mib_read(mp, 0x0c);
868 p->good_frames_received += mib_read(mp, 0x10);
869 p->bad_frames_received += mib_read(mp, 0x14);
870 p->broadcast_frames_received += mib_read(mp, 0x18);
871 p->multicast_frames_received += mib_read(mp, 0x1c);
872 p->frames_64_octets += mib_read(mp, 0x20);
873 p->frames_65_to_127_octets += mib_read(mp, 0x24);
874 p->frames_128_to_255_octets += mib_read(mp, 0x28);
875 p->frames_256_to_511_octets += mib_read(mp, 0x2c);
876 p->frames_512_to_1023_octets += mib_read(mp, 0x30);
877 p->frames_1024_to_max_octets += mib_read(mp, 0x34);
878 p->good_octets_sent += mib_read(mp, 0x38);
879 p->good_octets_sent += (u64)mib_read(mp, 0x3c) << 32;
880 p->good_frames_sent += mib_read(mp, 0x40);
881 p->excessive_collision += mib_read(mp, 0x44);
882 p->multicast_frames_sent += mib_read(mp, 0x48);
883 p->broadcast_frames_sent += mib_read(mp, 0x4c);
884 p->unrec_mac_control_received += mib_read(mp, 0x50);
885 p->fc_sent += mib_read(mp, 0x54);
886 p->good_fc_received += mib_read(mp, 0x58);
887 p->bad_fc_received += mib_read(mp, 0x5c);
888 p->undersize_received += mib_read(mp, 0x60);
889 p->fragments_received += mib_read(mp, 0x64);
890 p->oversize_received += mib_read(mp, 0x68);
891 p->jabber_received += mib_read(mp, 0x6c);
892 p->mac_receive_error += mib_read(mp, 0x70);
893 p->bad_crc_event += mib_read(mp, 0x74);
894 p->collision += mib_read(mp, 0x78);
895 p->late_collision += mib_read(mp, 0x7c);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200896}
897
898
899/* ethtool ******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200900struct mv643xx_eth_stats {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200901 char stat_string[ETH_GSTRING_LEN];
902 int sizeof_stat;
Lennert Buytenhek16820052008-06-01 11:40:29 +0200903 int netdev_off;
904 int mp_off;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200905};
906
Lennert Buytenhek16820052008-06-01 11:40:29 +0200907#define SSTAT(m) \
908 { #m, FIELD_SIZEOF(struct net_device_stats, m), \
909 offsetof(struct net_device, stats.m), -1 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200910
Lennert Buytenhek16820052008-06-01 11:40:29 +0200911#define MIBSTAT(m) \
912 { #m, FIELD_SIZEOF(struct mib_counters, m), \
913 -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
914
915static const struct mv643xx_eth_stats mv643xx_eth_stats[] = {
916 SSTAT(rx_packets),
917 SSTAT(tx_packets),
918 SSTAT(rx_bytes),
919 SSTAT(tx_bytes),
920 SSTAT(rx_errors),
921 SSTAT(tx_errors),
922 SSTAT(rx_dropped),
923 SSTAT(tx_dropped),
924 MIBSTAT(good_octets_received),
925 MIBSTAT(bad_octets_received),
926 MIBSTAT(internal_mac_transmit_err),
927 MIBSTAT(good_frames_received),
928 MIBSTAT(bad_frames_received),
929 MIBSTAT(broadcast_frames_received),
930 MIBSTAT(multicast_frames_received),
931 MIBSTAT(frames_64_octets),
932 MIBSTAT(frames_65_to_127_octets),
933 MIBSTAT(frames_128_to_255_octets),
934 MIBSTAT(frames_256_to_511_octets),
935 MIBSTAT(frames_512_to_1023_octets),
936 MIBSTAT(frames_1024_to_max_octets),
937 MIBSTAT(good_octets_sent),
938 MIBSTAT(good_frames_sent),
939 MIBSTAT(excessive_collision),
940 MIBSTAT(multicast_frames_sent),
941 MIBSTAT(broadcast_frames_sent),
942 MIBSTAT(unrec_mac_control_received),
943 MIBSTAT(fc_sent),
944 MIBSTAT(good_fc_received),
945 MIBSTAT(bad_fc_received),
946 MIBSTAT(undersize_received),
947 MIBSTAT(fragments_received),
948 MIBSTAT(oversize_received),
949 MIBSTAT(jabber_received),
950 MIBSTAT(mac_receive_error),
951 MIBSTAT(bad_crc_event),
952 MIBSTAT(collision),
953 MIBSTAT(late_collision),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200954};
955
Lennert Buytenheke5371492008-06-01 02:18:13 +0200956static int mv643xx_eth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200957{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200958 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200959 int err;
960
961 spin_lock_irq(&mp->lock);
962 err = mii_ethtool_gset(&mp->mii, cmd);
963 spin_unlock_irq(&mp->lock);
964
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200965 /*
966 * The MAC does not support 1000baseT_Half.
967 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200968 cmd->supported &= ~SUPPORTED_1000baseT_Half;
969 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
970
971 return err;
972}
973
Lennert Buytenheke5371492008-06-01 02:18:13 +0200974static int mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200975{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200976 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200977 int err;
978
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200979 /*
980 * The MAC does not support 1000baseT_Half.
981 */
982 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
983
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200984 spin_lock_irq(&mp->lock);
985 err = mii_ethtool_sset(&mp->mii, cmd);
986 spin_unlock_irq(&mp->lock);
987
988 return err;
989}
990
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200991static void mv643xx_eth_get_drvinfo(struct net_device *dev,
992 struct ethtool_drvinfo *drvinfo)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200993{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200994 strncpy(drvinfo->driver, mv643xx_eth_driver_name, 32);
995 strncpy(drvinfo->version, mv643xx_eth_driver_version, 32);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200996 strncpy(drvinfo->fw_version, "N/A", 32);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200997 strncpy(drvinfo->bus_info, "platform", 32);
Lennert Buytenhek16820052008-06-01 11:40:29 +0200998 drvinfo->n_stats = ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200999}
1000
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001001static int mv643xx_eth_nway_reset(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001002{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001003 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001004
1005 return mii_nway_restart(&mp->mii);
1006}
1007
1008static u32 mv643xx_eth_get_link(struct net_device *dev)
1009{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001010 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001011
1012 return mii_link_ok(&mp->mii);
1013}
1014
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001015static void mv643xx_eth_get_strings(struct net_device *dev,
1016 uint32_t stringset, uint8_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001017{
1018 int i;
1019
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001020 if (stringset == ETH_SS_STATS) {
1021 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001022 memcpy(data + i * ETH_GSTRING_LEN,
Lennert Buytenhek16820052008-06-01 11:40:29 +02001023 mv643xx_eth_stats[i].stat_string,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001024 ETH_GSTRING_LEN);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001025 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001026 }
1027}
1028
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001029static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
1030 struct ethtool_stats *stats,
1031 uint64_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001032{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001033 struct mv643xx_eth_private *mp = dev->priv;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001034 int i;
1035
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001036 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001037
Lennert Buytenhek16820052008-06-01 11:40:29 +02001038 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
1039 const struct mv643xx_eth_stats *stat;
1040 void *p;
1041
1042 stat = mv643xx_eth_stats + i;
1043
1044 if (stat->netdev_off >= 0)
1045 p = ((void *)mp->dev) + stat->netdev_off;
1046 else
1047 p = ((void *)mp) + stat->mp_off;
1048
1049 data[i] = (stat->sizeof_stat == 8) ?
1050 *(uint64_t *)p : *(uint32_t *)p;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001051 }
1052}
1053
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001054static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001055{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001056 if (sset == ETH_SS_STATS)
Lennert Buytenhek16820052008-06-01 11:40:29 +02001057 return ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001058
1059 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001060}
1061
Lennert Buytenheke5371492008-06-01 02:18:13 +02001062static const struct ethtool_ops mv643xx_eth_ethtool_ops = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001063 .get_settings = mv643xx_eth_get_settings,
1064 .set_settings = mv643xx_eth_set_settings,
1065 .get_drvinfo = mv643xx_eth_get_drvinfo,
1066 .nway_reset = mv643xx_eth_nway_reset,
1067 .get_link = mv643xx_eth_get_link,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001068 .set_sg = ethtool_op_set_sg,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001069 .get_strings = mv643xx_eth_get_strings,
1070 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001071 .get_sset_count = mv643xx_eth_get_sset_count,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001072};
1073
1074
1075/* address handling *********************************************************/
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001076static void uc_addr_get(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001077{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001078 unsigned int mac_h;
1079 unsigned int mac_l;
1080
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001081 mac_h = rdl(mp, MAC_ADDR_HIGH(mp->port_num));
1082 mac_l = rdl(mp, MAC_ADDR_LOW(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001083
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001084 addr[0] = (mac_h >> 24) & 0xff;
1085 addr[1] = (mac_h >> 16) & 0xff;
1086 addr[2] = (mac_h >> 8) & 0xff;
1087 addr[3] = mac_h & 0xff;
1088 addr[4] = (mac_l >> 8) & 0xff;
1089 addr[5] = mac_l & 0xff;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001090}
1091
Lennert Buytenheke5371492008-06-01 02:18:13 +02001092static void init_mac_tables(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001093{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001094 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001095
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001096 for (i = 0; i < 0x100; i += 4) {
1097 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1098 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001099 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001100
1101 for (i = 0; i < 0x10; i += 4)
1102 wrl(mp, UNICAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001103}
1104
Lennert Buytenheke5371492008-06-01 02:18:13 +02001105static void set_filter_table_entry(struct mv643xx_eth_private *mp,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001106 int table, unsigned char entry)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001107{
1108 unsigned int table_reg;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001109
1110 /* Set "accepts frame bit" at specified table entry */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001111 table_reg = rdl(mp, table + (entry & 0xfc));
1112 table_reg |= 0x01 << (8 * (entry & 3));
1113 wrl(mp, table + (entry & 0xfc), table_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001114}
1115
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001116static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001117{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001118 unsigned int mac_h;
1119 unsigned int mac_l;
1120 int table;
1121
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001122 mac_l = (addr[4] << 8) | addr[5];
1123 mac_h = (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001124
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001125 wrl(mp, MAC_ADDR_LOW(mp->port_num), mac_l);
1126 wrl(mp, MAC_ADDR_HIGH(mp->port_num), mac_h);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001127
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001128 table = UNICAST_TABLE(mp->port_num);
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001129 set_filter_table_entry(mp, table, addr[5] & 0x0f);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001130}
1131
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001132static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
1133{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001134 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001135
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001136 /* +2 is for the offset of the HW addr type */
1137 memcpy(dev->dev_addr, addr + 2, 6);
1138
1139 init_mac_tables(mp);
1140 uc_addr_set(mp, dev->dev_addr);
1141
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001142 return 0;
1143}
1144
Lennert Buytenhek69876562008-06-01 11:43:32 +02001145static int addr_crc(unsigned char *addr)
1146{
1147 int crc = 0;
1148 int i;
1149
1150 for (i = 0; i < 6; i++) {
1151 int j;
1152
1153 crc = (crc ^ addr[i]) << 8;
1154 for (j = 7; j >= 0; j--) {
1155 if (crc & (0x100 << j))
1156 crc ^= 0x107 << j;
1157 }
1158 }
1159
1160 return crc;
1161}
1162
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001163static void mv643xx_eth_set_rx_mode(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001164{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001165 struct mv643xx_eth_private *mp = netdev_priv(dev);
1166 u32 port_config;
1167 struct dev_addr_list *addr;
1168 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001169
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001170 port_config = rdl(mp, PORT_CONFIG(mp->port_num));
1171 if (dev->flags & IFF_PROMISC)
1172 port_config |= UNICAST_PROMISCUOUS_MODE;
1173 else
1174 port_config &= ~UNICAST_PROMISCUOUS_MODE;
1175 wrl(mp, PORT_CONFIG(mp->port_num), port_config);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001176
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001177 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
1178 int port_num = mp->port_num;
1179 u32 accept = 0x01010101;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001180
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001181 for (i = 0; i < 0x100; i += 4) {
1182 wrl(mp, SPECIAL_MCAST_TABLE(port_num) + i, accept);
1183 wrl(mp, OTHER_MCAST_TABLE(port_num) + i, accept);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001184 }
1185 return;
1186 }
1187
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001188 for (i = 0; i < 0x100; i += 4) {
1189 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, 0);
1190 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001191 }
1192
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001193 for (addr = dev->mc_list; addr != NULL; addr = addr->next) {
1194 u8 *a = addr->da_addr;
1195 int table;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001196
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001197 if (addr->da_addrlen != 6)
1198 continue;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001199
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001200 if (memcmp(a, "\x01\x00\x5e\x00\x00", 5) == 0) {
1201 table = SPECIAL_MCAST_TABLE(mp->port_num);
1202 set_filter_table_entry(mp, table, a[5]);
1203 } else {
1204 int crc = addr_crc(a);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001205
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001206 table = OTHER_MCAST_TABLE(mp->port_num);
1207 set_filter_table_entry(mp, table, crc);
1208 }
1209 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001210}
1211
1212
1213/* rx/tx queue initialisation ***********************************************/
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001214static int rxq_init(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001215{
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001216 struct rx_queue *rxq = mp->rxq;
1217 struct rx_desc *rx_desc;
1218 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001219 int i;
1220
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001221 rxq->rx_ring_size = mp->default_rx_ring_size;
1222
1223 rxq->rx_desc_count = 0;
1224 rxq->rx_curr_desc = 0;
1225 rxq->rx_used_desc = 0;
1226
1227 size = rxq->rx_ring_size * sizeof(struct rx_desc);
1228
1229 if (size <= mp->rx_desc_sram_size) {
1230 rxq->rx_desc_area = ioremap(mp->rx_desc_sram_addr,
1231 mp->rx_desc_sram_size);
1232 rxq->rx_desc_dma = mp->rx_desc_sram_addr;
1233 } else {
1234 rxq->rx_desc_area = dma_alloc_coherent(NULL, size,
1235 &rxq->rx_desc_dma,
1236 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001237 }
1238
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001239 if (rxq->rx_desc_area == NULL) {
1240 dev_printk(KERN_ERR, &mp->dev->dev,
1241 "can't allocate rx ring (%d bytes)\n", size);
1242 goto out;
1243 }
1244 memset(rxq->rx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001245
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001246 rxq->rx_desc_area_size = size;
1247 rxq->rx_skb = kmalloc(rxq->rx_ring_size * sizeof(*rxq->rx_skb),
1248 GFP_KERNEL);
1249 if (rxq->rx_skb == NULL) {
1250 dev_printk(KERN_ERR, &mp->dev->dev,
1251 "can't allocate rx skb ring\n");
1252 goto out_free;
1253 }
1254
1255 rx_desc = (struct rx_desc *)rxq->rx_desc_area;
1256 for (i = 0; i < rxq->rx_ring_size; i++) {
1257 int nexti = (i + 1) % rxq->rx_ring_size;
1258 rx_desc[i].next_desc_ptr = rxq->rx_desc_dma +
1259 nexti * sizeof(struct rx_desc);
1260 }
1261
1262 init_timer(&rxq->rx_oom);
1263 rxq->rx_oom.data = (unsigned long)rxq;
1264 rxq->rx_oom.function = rxq_refill_timer_wrapper;
1265
1266 return 0;
1267
1268
1269out_free:
1270 if (size <= mp->rx_desc_sram_size)
1271 iounmap(rxq->rx_desc_area);
1272 else
1273 dma_free_coherent(NULL, size,
1274 rxq->rx_desc_area,
1275 rxq->rx_desc_dma);
1276
1277out:
1278 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001279}
1280
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001281static void rxq_deinit(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001282{
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001283 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
1284 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001285
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001286 rxq_disable(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001287
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001288 del_timer_sync(&rxq->rx_oom);
1289
1290 for (i = 0; i < rxq->rx_ring_size; i++) {
1291 if (rxq->rx_skb[i]) {
1292 dev_kfree_skb(rxq->rx_skb[i]);
1293 rxq->rx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001294 }
1295 }
1296
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001297 if (rxq->rx_desc_count) {
1298 dev_printk(KERN_ERR, &mp->dev->dev,
1299 "error freeing rx ring -- %d skbs stuck\n",
1300 rxq->rx_desc_count);
1301 }
1302
1303 if (rxq->rx_desc_area_size <= mp->rx_desc_sram_size)
1304 iounmap(rxq->rx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001305 else
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001306 dma_free_coherent(NULL, rxq->rx_desc_area_size,
1307 rxq->rx_desc_area, rxq->rx_desc_dma);
1308
1309 kfree(rxq->rx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001310}
1311
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001312static int txq_init(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001313{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001314 struct tx_queue *txq = mp->txq;
1315 struct tx_desc *tx_desc;
1316 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001317 int i;
1318
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001319 txq->tx_ring_size = mp->default_tx_ring_size;
1320
1321 txq->tx_desc_count = 0;
1322 txq->tx_curr_desc = 0;
1323 txq->tx_used_desc = 0;
1324
1325 size = txq->tx_ring_size * sizeof(struct tx_desc);
1326
1327 if (size <= mp->tx_desc_sram_size) {
1328 txq->tx_desc_area = ioremap(mp->tx_desc_sram_addr,
1329 mp->tx_desc_sram_size);
1330 txq->tx_desc_dma = mp->tx_desc_sram_addr;
1331 } else {
1332 txq->tx_desc_area = dma_alloc_coherent(NULL, size,
1333 &txq->tx_desc_dma,
1334 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001335 }
1336
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001337 if (txq->tx_desc_area == NULL) {
1338 dev_printk(KERN_ERR, &mp->dev->dev,
1339 "can't allocate tx ring (%d bytes)\n", size);
1340 goto out;
1341 }
1342 memset(txq->tx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001343
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001344 txq->tx_desc_area_size = size;
1345 txq->tx_skb = kmalloc(txq->tx_ring_size * sizeof(*txq->tx_skb),
1346 GFP_KERNEL);
1347 if (txq->tx_skb == NULL) {
1348 dev_printk(KERN_ERR, &mp->dev->dev,
1349 "can't allocate tx skb ring\n");
1350 goto out_free;
1351 }
1352
1353 tx_desc = (struct tx_desc *)txq->tx_desc_area;
1354 for (i = 0; i < txq->tx_ring_size; i++) {
1355 int nexti = (i + 1) % txq->tx_ring_size;
1356 tx_desc[i].next_desc_ptr = txq->tx_desc_dma +
1357 nexti * sizeof(struct tx_desc);
1358 }
1359
1360 return 0;
1361
1362
1363out_free:
1364 if (size <= mp->tx_desc_sram_size)
1365 iounmap(txq->tx_desc_area);
1366 else
1367 dma_free_coherent(NULL, size,
1368 txq->tx_desc_area,
1369 txq->tx_desc_dma);
1370
1371out:
1372 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001373}
1374
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001375static void txq_reclaim(struct tx_queue *txq, int force)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001376{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001377 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001378 unsigned long flags;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001379
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001380 spin_lock_irqsave(&mp->lock, flags);
1381 while (txq->tx_desc_count > 0) {
1382 int tx_index;
1383 struct tx_desc *desc;
1384 u32 cmd_sts;
1385 struct sk_buff *skb;
1386 dma_addr_t addr;
1387 int count;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001388
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001389 tx_index = txq->tx_used_desc;
1390 desc = &txq->tx_desc_area[tx_index];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001391 cmd_sts = desc->cmd_sts;
1392
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001393 if (!force && (cmd_sts & BUFFER_OWNED_BY_DMA))
1394 break;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001395
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001396 txq->tx_used_desc = (tx_index + 1) % txq->tx_ring_size;
1397 txq->tx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001398
1399 addr = desc->buf_ptr;
1400 count = desc->byte_cnt;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001401 skb = txq->tx_skb[tx_index];
1402 txq->tx_skb[tx_index] = NULL;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001403
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001404 if (cmd_sts & ERROR_SUMMARY) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001405 dev_printk(KERN_INFO, &mp->dev->dev, "tx error\n");
1406 mp->dev->stats.tx_errors++;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001407 }
1408
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001409 /*
1410 * Drop mp->lock while we free the skb.
1411 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001412 spin_unlock_irqrestore(&mp->lock, flags);
1413
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001414 if (cmd_sts & TX_FIRST_DESC)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001415 dma_unmap_single(NULL, addr, count, DMA_TO_DEVICE);
1416 else
1417 dma_unmap_page(NULL, addr, count, DMA_TO_DEVICE);
1418
1419 if (skb)
1420 dev_kfree_skb_irq(skb);
1421
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001422 spin_lock_irqsave(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001423 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001424 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001425}
1426
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001427static void txq_deinit(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001428{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001429 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001430
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001431 txq_disable(txq);
1432 txq_reclaim(txq, 1);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001433
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001434 BUG_ON(txq->tx_used_desc != txq->tx_curr_desc);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001435
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001436 if (txq->tx_desc_area_size <= mp->tx_desc_sram_size)
1437 iounmap(txq->tx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001438 else
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001439 dma_free_coherent(NULL, txq->tx_desc_area_size,
1440 txq->tx_desc_area, txq->tx_desc_dma);
1441
1442 kfree(txq->tx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001443}
1444
1445
1446/* netdev ops and related ***************************************************/
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001447static void update_pscr(struct mv643xx_eth_private *mp, int speed, int duplex)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001448{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001449 u32 pscr_o;
1450 u32 pscr_n;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001451
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001452 pscr_o = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001453
1454 /* clear speed, duplex and rx buffer size fields */
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001455 pscr_n = pscr_o & ~(SET_MII_SPEED_TO_100 |
1456 SET_GMII_SPEED_TO_1000 |
1457 SET_FULL_DUPLEX_MODE |
1458 MAX_RX_PACKET_MASK);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001459
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001460 if (speed == SPEED_1000) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001461 pscr_n |= SET_GMII_SPEED_TO_1000 | MAX_RX_PACKET_9700BYTE;
1462 } else {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001463 if (speed == SPEED_100)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001464 pscr_n |= SET_MII_SPEED_TO_100;
1465 pscr_n |= MAX_RX_PACKET_1522BYTE;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001466 }
1467
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001468 if (duplex == DUPLEX_FULL)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001469 pscr_n |= SET_FULL_DUPLEX_MODE;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001470
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001471 if (pscr_n != pscr_o) {
1472 if ((pscr_o & SERIAL_PORT_ENABLE) == 0)
1473 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
1474 else {
1475 txq_disable(mp->txq);
1476 pscr_o &= ~SERIAL_PORT_ENABLE;
1477 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_o);
1478 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
1479 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr_n);
1480 txq_enable(mp->txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001481 }
1482 }
1483}
1484
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001485static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001486{
1487 struct net_device *dev = (struct net_device *)dev_id;
Lennert Buytenheke5371492008-06-01 02:18:13 +02001488 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001489 u32 int_cause;
1490 u32 int_cause_ext;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001491
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001492 int_cause = rdl(mp, INT_CAUSE(mp->port_num)) & (INT_RX | INT_EXT);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001493 if (int_cause == 0)
1494 return IRQ_NONE;
1495
1496 int_cause_ext = 0;
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001497 if (int_cause & INT_EXT) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001498 int_cause_ext = rdl(mp, INT_CAUSE_EXT(mp->port_num))
Lennert Buytenhek073a3452008-06-01 02:00:31 +02001499 & (INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001500 wrl(mp, INT_CAUSE_EXT(mp->port_num), ~int_cause_ext);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001501 }
1502
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001503 if (int_cause_ext & (INT_EXT_PHY | INT_EXT_LINK)) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001504 if (mii_link_ok(&mp->mii)) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001505 struct ethtool_cmd cmd;
1506
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001507 mii_ethtool_gset(&mp->mii, &cmd);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001508 update_pscr(mp, cmd.speed, cmd.duplex);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001509 txq_enable(mp->txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001510 if (!netif_carrier_ok(dev)) {
1511 netif_carrier_on(dev);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001512 __txq_maybe_wake(mp->txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001513 }
1514 } else if (netif_carrier_ok(dev)) {
1515 netif_stop_queue(dev);
1516 netif_carrier_off(dev);
1517 }
1518 }
1519
Lennert Buytenheke5371492008-06-01 02:18:13 +02001520#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001521 if (int_cause & INT_RX) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001522 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001523 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001524
1525 netif_rx_schedule(dev, &mp->napi);
1526 }
1527#else
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001528 if (int_cause & INT_RX)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001529 rxq_process(mp->rxq, INT_MAX);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001530#endif
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001531
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001532 if (int_cause_ext & INT_EXT_TX) {
1533 txq_reclaim(mp->txq, 0);
1534 __txq_maybe_wake(mp->txq);
1535 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001536
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001537 return IRQ_HANDLED;
1538}
1539
Lennert Buytenheke5371492008-06-01 02:18:13 +02001540static void phy_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001541{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001542 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001543
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001544 smi_reg_read(mp, mp->phy_addr, 0, &data);
1545 data |= 0x8000;
1546 smi_reg_write(mp, mp->phy_addr, 0, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001547
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001548 do {
1549 udelay(1);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001550 smi_reg_read(mp, mp->phy_addr, 0, &data);
1551 } while (data & 0x8000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001552}
1553
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001554static void port_start(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001555{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001556 u32 pscr;
1557 struct ethtool_cmd ethtool_cmd;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001558 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001559
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001560 /*
1561 * Configure basic link parameters.
1562 */
1563 pscr = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
1564 pscr &= ~(SERIAL_PORT_ENABLE | FORCE_LINK_PASS);
1565 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1566 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL |
1567 DISABLE_AUTO_NEG_SPEED_GMII |
1568 DISABLE_AUTO_NEG_FOR_DUPLEX |
1569 DO_NOT_FORCE_LINK_FAIL |
1570 SERIAL_PORT_CONTROL_RESERVED;
1571 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
1572 pscr |= SERIAL_PORT_ENABLE;
1573 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), pscr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001574
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001575 wrl(mp, SDMA_CONFIG(mp->port_num), PORT_SDMA_CONFIG_DEFAULT_VALUE);
1576
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001577 mv643xx_eth_get_settings(mp->dev, &ethtool_cmd);
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001578 phy_reset(mp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001579 mv643xx_eth_set_settings(mp->dev, &ethtool_cmd);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001580
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001581 /*
1582 * Configure TX path and queues.
1583 */
1584 wrl(mp, TX_BW_MTU(mp->port_num), 0);
1585 for (i = 0; i < 1; i++) {
1586 struct tx_queue *txq = mp->txq;
1587 int off = TXQ_CURRENT_DESC_PTR(mp->port_num);
1588 u32 addr;
1589
1590 addr = (u32)txq->tx_desc_dma;
1591 addr += txq->tx_curr_desc * sizeof(struct tx_desc);
1592 wrl(mp, off, addr);
1593 }
1594
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001595 /*
1596 * Add configured unicast address to address filter table.
1597 */
1598 uc_addr_set(mp, mp->dev->dev_addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001599
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02001600 /*
1601 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
1602 * frames to RX queue #0.
1603 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001604 wrl(mp, PORT_CONFIG(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001605
Lennert Buytenhek376489a2008-06-01 01:17:44 +02001606 /*
1607 * Treat BPDUs as normal multicasts, and disable partition mode.
1608 */
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001609 wrl(mp, PORT_CONFIG_EXT(mp->port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001610
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001611 /*
1612 * Enable the receive queue.
1613 */
1614 for (i = 0; i < 1; i++) {
1615 struct rx_queue *rxq = mp->rxq;
1616 int off = RXQ_CURRENT_DESC_PTR(mp->port_num);
1617 u32 addr;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001618
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001619 addr = (u32)rxq->rx_desc_dma;
1620 addr += rxq->rx_curr_desc * sizeof(struct rx_desc);
1621 wrl(mp, off, addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001622
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001623 rxq_enable(rxq);
1624 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001625}
1626
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001627static void set_rx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001628{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001629 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
1630
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001631 if (coal > 0x3fff)
1632 coal = 0x3fff;
1633
1634 wrl(mp, SDMA_CONFIG(mp->port_num),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001635 ((coal & 0x3fff) << 8) |
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001636 (rdl(mp, SDMA_CONFIG(mp->port_num))
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001637 & 0xffc000ff));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001638}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001639
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001640static void set_tx_coal(struct mv643xx_eth_private *mp, unsigned int delay)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001641{
1642 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
1643
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001644 if (coal > 0x3fff)
1645 coal = 0x3fff;
1646 wrl(mp, TX_FIFO_URGENT_THRESHOLD(mp->port_num), (coal & 0x3fff) << 4);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001647}
1648
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001649static int mv643xx_eth_open(struct net_device *dev)
1650{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001651 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001652 int err;
1653
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001654 wrl(mp, INT_CAUSE(mp->port_num), 0);
1655 wrl(mp, INT_CAUSE_EXT(mp->port_num), 0);
1656 rdl(mp, INT_CAUSE_EXT(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001657
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001658 err = request_irq(dev->irq, mv643xx_eth_irq,
1659 IRQF_SHARED | IRQF_SAMPLE_RANDOM,
1660 dev->name, dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001661 if (err) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001662 dev_printk(KERN_ERR, &dev->dev, "can't assign irq\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001663 return -EAGAIN;
1664 }
1665
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001666 init_mac_tables(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001667
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001668 err = rxq_init(mp);
1669 if (err)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001670 goto out;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001671 rxq_refill(mp->rxq);
1672
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001673 err = txq_init(mp);
1674 if (err)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001675 goto out_free;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001676
Lennert Buytenheke5371492008-06-01 02:18:13 +02001677#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001678 napi_enable(&mp->napi);
1679#endif
1680
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001681 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001682
Lennert Buytenhekffd86bb2008-06-01 21:59:27 +02001683 set_rx_coal(mp, 0);
1684 set_tx_coal(mp, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001685
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001686 wrl(mp, INT_MASK_EXT(mp->port_num),
1687 INT_EXT_LINK | INT_EXT_PHY | INT_EXT_TX);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001688
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001689 wrl(mp, INT_MASK(mp->port_num), INT_RX | INT_EXT);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001690
1691 return 0;
1692
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001693
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001694out_free:
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001695 rxq_deinit(mp->rxq);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001696out:
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001697 free_irq(dev->irq, dev);
1698
1699 return err;
1700}
1701
Lennert Buytenheke5371492008-06-01 02:18:13 +02001702static void port_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001703{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001704 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001705
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001706 txq_disable(mp->txq);
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001707 rxq_disable(mp->rxq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001708 while (!(rdl(mp, PORT_STATUS(mp->port_num)) & TX_FIFO_EMPTY))
1709 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001710
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001711 /* Reset the Enable bit in the Configuration Register */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001712 data = rdl(mp, PORT_SERIAL_CONTROL(mp->port_num));
1713 data &= ~(SERIAL_PORT_ENABLE |
1714 DO_NOT_FORCE_LINK_FAIL |
1715 FORCE_LINK_PASS);
1716 wrl(mp, PORT_SERIAL_CONTROL(mp->port_num), data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001717}
1718
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001719static int mv643xx_eth_stop(struct net_device *dev)
1720{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001721 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001722
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001723 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
1724 rdl(mp, INT_MASK(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001725
Lennert Buytenheke5371492008-06-01 02:18:13 +02001726#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001727 napi_disable(&mp->napi);
1728#endif
1729 netif_carrier_off(dev);
1730 netif_stop_queue(dev);
1731
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001732 free_irq(dev->irq, dev);
1733
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001734 port_reset(mp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001735 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001736
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001737 txq_deinit(mp->txq);
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001738 rxq_deinit(mp->rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001739
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001740 return 0;
1741}
1742
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001743static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001744{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001745 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001746
1747 return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL);
1748}
1749
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001750static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
1751{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001752 if (new_mtu < 64 || new_mtu > 9500)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001753 return -EINVAL;
1754
1755 dev->mtu = new_mtu;
1756 if (!netif_running(dev))
1757 return 0;
1758
1759 /*
1760 * Stop and then re-open the interface. This will allocate RX
1761 * skbs of the new MTU.
1762 * There is a possible danger that the open will not succeed,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001763 * due to memory being full.
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001764 */
1765 mv643xx_eth_stop(dev);
1766 if (mv643xx_eth_open(dev)) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001767 dev_printk(KERN_ERR, &dev->dev,
1768 "fatal error on re-opening device after "
1769 "MTU change\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001770 }
1771
1772 return 0;
1773}
1774
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001775static void tx_timeout_task(struct work_struct *ugly)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001776{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001777 struct mv643xx_eth_private *mp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001778
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001779 mp = container_of(ugly, struct mv643xx_eth_private, tx_timeout_task);
1780 if (netif_running(mp->dev)) {
1781 netif_stop_queue(mp->dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001782
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001783 port_reset(mp);
1784 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001785
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001786 __txq_maybe_wake(mp->txq);
1787 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001788}
1789
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001790static void mv643xx_eth_tx_timeout(struct net_device *dev)
1791{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001792 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001793
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001794 dev_printk(KERN_INFO, &dev->dev, "tx timeout\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001795
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001796 schedule_work(&mp->tx_timeout_task);
1797}
1798
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001799#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001800static void mv643xx_eth_netpoll(struct net_device *dev)
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001801{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001802 struct mv643xx_eth_private *mp = netdev_priv(dev);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001803
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001804 wrl(mp, INT_MASK(mp->port_num), 0x00000000);
1805 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001806
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001807 mv643xx_eth_irq(dev->irq, dev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001808
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001809 wrl(mp, INT_MASK(mp->port_num), INT_RX | INT_CAUSE_EXT);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001810}
1811#endif
1812
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001813static int mv643xx_eth_mdio_read(struct net_device *dev, int addr, int reg)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001814{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001815 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001816 int val;
1817
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001818 smi_reg_read(mp, addr, reg, &val);
1819
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001820 return val;
1821}
1822
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001823static void mv643xx_eth_mdio_write(struct net_device *dev, int addr, int reg, int val)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001824{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001825 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001826 smi_reg_write(mp, addr, reg, val);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001827}
1828
1829
1830/* platform glue ************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02001831static void
1832mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private *msp,
1833 struct mbus_dram_target_info *dram)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001834{
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001835 void __iomem *base = msp->base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001836 u32 win_enable;
1837 u32 win_protect;
1838 int i;
1839
1840 for (i = 0; i < 6; i++) {
1841 writel(0, base + WINDOW_BASE(i));
1842 writel(0, base + WINDOW_SIZE(i));
1843 if (i < 4)
1844 writel(0, base + WINDOW_REMAP_HIGH(i));
1845 }
1846
1847 win_enable = 0x3f;
1848 win_protect = 0;
1849
1850 for (i = 0; i < dram->num_cs; i++) {
1851 struct mbus_dram_window *cs = dram->cs + i;
1852
1853 writel((cs->base & 0xffff0000) |
1854 (cs->mbus_attr << 8) |
1855 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
1856 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
1857
1858 win_enable &= ~(1 << i);
1859 win_protect |= 3 << (2 * i);
1860 }
1861
1862 writel(win_enable, base + WINDOW_BAR_ENABLE);
1863 msp->win_protect = win_protect;
1864}
1865
1866static int mv643xx_eth_shared_probe(struct platform_device *pdev)
1867{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001868 static int mv643xx_eth_version_printed = 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001869 struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
Lennert Buytenheke5371492008-06-01 02:18:13 +02001870 struct mv643xx_eth_shared_private *msp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001871 struct resource *res;
1872 int ret;
1873
Lennert Buytenheke5371492008-06-01 02:18:13 +02001874 if (!mv643xx_eth_version_printed++)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001875 printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n");
1876
1877 ret = -EINVAL;
1878 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1879 if (res == NULL)
1880 goto out;
1881
1882 ret = -ENOMEM;
1883 msp = kmalloc(sizeof(*msp), GFP_KERNEL);
1884 if (msp == NULL)
1885 goto out;
1886 memset(msp, 0, sizeof(*msp));
1887
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001888 msp->base = ioremap(res->start, res->end - res->start + 1);
1889 if (msp->base == NULL)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001890 goto out_free;
1891
1892 spin_lock_init(&msp->phy_lock);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001893
1894 /*
1895 * (Re-)program MBUS remapping windows if we are asked to.
1896 */
1897 if (pd != NULL && pd->dram != NULL)
1898 mv643xx_eth_conf_mbus_windows(msp, pd->dram);
1899
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001900 /*
1901 * Detect hardware parameters.
1902 */
1903 msp->t_clk = (pd != NULL && pd->t_clk != 0) ? pd->t_clk : 133000000;
1904
1905 platform_set_drvdata(pdev, msp);
1906
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001907 return 0;
1908
1909out_free:
1910 kfree(msp);
1911out:
1912 return ret;
1913}
1914
1915static int mv643xx_eth_shared_remove(struct platform_device *pdev)
1916{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001917 struct mv643xx_eth_shared_private *msp = platform_get_drvdata(pdev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001918
Lennert Buytenhekcc9754b2008-06-01 02:10:27 +02001919 iounmap(msp->base);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001920 kfree(msp);
1921
1922 return 0;
1923}
1924
1925static struct platform_driver mv643xx_eth_shared_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001926 .probe = mv643xx_eth_shared_probe,
1927 .remove = mv643xx_eth_shared_remove,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001928 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001929 .name = MV643XX_ETH_SHARED_NAME,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001930 .owner = THIS_MODULE,
1931 },
1932};
1933
Lennert Buytenheke5371492008-06-01 02:18:13 +02001934static void phy_addr_set(struct mv643xx_eth_private *mp, int phy_addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001935{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001936 int addr_shift = 5 * mp->port_num;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001937 u32 data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001938
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001939 data = rdl(mp, PHY_ADDR);
1940 data &= ~(0x1f << addr_shift);
1941 data |= (phy_addr & 0x1f) << addr_shift;
1942 wrl(mp, PHY_ADDR, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001943}
1944
Lennert Buytenheke5371492008-06-01 02:18:13 +02001945static int phy_addr_get(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001946{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001947 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001948
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001949 data = rdl(mp, PHY_ADDR);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001950
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001951 return (data >> (5 * mp->port_num)) & 0x1f;
1952}
1953
1954static void set_params(struct mv643xx_eth_private *mp,
1955 struct mv643xx_eth_platform_data *pd)
1956{
1957 struct net_device *dev = mp->dev;
1958
1959 if (is_valid_ether_addr(pd->mac_addr))
1960 memcpy(dev->dev_addr, pd->mac_addr, 6);
1961 else
1962 uc_addr_get(mp, dev->dev_addr);
1963
1964 if (pd->phy_addr == -1) {
1965 mp->shared_smi = NULL;
1966 mp->phy_addr = -1;
1967 } else {
1968 mp->shared_smi = mp->shared;
1969 if (pd->shared_smi != NULL)
1970 mp->shared_smi = platform_get_drvdata(pd->shared_smi);
1971
1972 if (pd->force_phy_addr || pd->phy_addr) {
1973 mp->phy_addr = pd->phy_addr & 0x3f;
1974 phy_addr_set(mp, mp->phy_addr);
1975 } else {
1976 mp->phy_addr = phy_addr_get(mp);
1977 }
1978 }
1979
1980 mp->default_rx_ring_size = DEFAULT_RX_QUEUE_SIZE;
1981 if (pd->rx_queue_size)
1982 mp->default_rx_ring_size = pd->rx_queue_size;
1983 mp->rx_desc_sram_addr = pd->rx_sram_addr;
1984 mp->rx_desc_sram_size = pd->rx_sram_size;
1985
1986 mp->default_tx_ring_size = DEFAULT_TX_QUEUE_SIZE;
1987 if (pd->tx_queue_size)
1988 mp->default_tx_ring_size = pd->tx_queue_size;
1989 mp->tx_desc_sram_addr = pd->tx_sram_addr;
1990 mp->tx_desc_sram_size = pd->tx_sram_size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001991}
1992
Lennert Buytenheke5371492008-06-01 02:18:13 +02001993static int phy_detect(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001994{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001995 unsigned int data;
1996 unsigned int data2;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001997
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001998 smi_reg_read(mp, mp->phy_addr, 0, &data);
1999 smi_reg_write(mp, mp->phy_addr, 0, data ^ 0x1000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002000
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002001 smi_reg_read(mp, mp->phy_addr, 0, &data2);
2002 if (((data ^ data2) & 0x1000) == 0)
2003 return -ENODEV;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002004
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002005 smi_reg_write(mp, mp->phy_addr, 0, data);
2006
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002007 return 0;
2008}
2009
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002010static int phy_init(struct mv643xx_eth_private *mp,
2011 struct mv643xx_eth_platform_data *pd)
James Chapmand0412d92006-01-27 01:15:30 -07002012{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002013 struct ethtool_cmd cmd;
2014 int err;
James Chapmand0412d92006-01-27 01:15:30 -07002015
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002016 err = phy_detect(mp);
2017 if (err) {
2018 dev_printk(KERN_INFO, &mp->dev->dev,
2019 "no PHY detected at addr %d\n", mp->phy_addr);
2020 return err;
James Chapmand0412d92006-01-27 01:15:30 -07002021 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002022 phy_reset(mp);
2023
2024 mp->mii.phy_id = mp->phy_addr;
2025 mp->mii.phy_id_mask = 0x3f;
2026 mp->mii.reg_num_mask = 0x1f;
2027 mp->mii.dev = mp->dev;
2028 mp->mii.mdio_read = mv643xx_eth_mdio_read;
2029 mp->mii.mdio_write = mv643xx_eth_mdio_write;
2030
2031 mp->mii.supports_gmii = mii_check_gmii_support(&mp->mii);
2032
2033 memset(&cmd, 0, sizeof(cmd));
2034
2035 cmd.port = PORT_MII;
2036 cmd.transceiver = XCVR_INTERNAL;
2037 cmd.phy_address = mp->phy_addr;
2038 if (pd->speed == 0) {
2039 cmd.autoneg = AUTONEG_ENABLE;
2040 cmd.speed = SPEED_100;
2041 cmd.advertising = ADVERTISED_10baseT_Half |
2042 ADVERTISED_10baseT_Full |
2043 ADVERTISED_100baseT_Half |
2044 ADVERTISED_100baseT_Full;
2045 if (mp->mii.supports_gmii)
2046 cmd.advertising |= ADVERTISED_1000baseT_Full;
2047 } else {
2048 cmd.autoneg = AUTONEG_DISABLE;
2049 cmd.speed = pd->speed;
2050 cmd.duplex = pd->duplex;
2051 }
2052
2053 update_pscr(mp, cmd.speed, cmd.duplex);
2054 mv643xx_eth_set_settings(mp->dev, &cmd);
2055
2056 return 0;
James Chapmand0412d92006-01-27 01:15:30 -07002057}
2058
Russell King3ae5eae2005-11-09 22:32:44 +00002059static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 struct mv643xx_eth_platform_data *pd;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002062 struct mv643xx_eth_private *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 struct resource *res;
Al Viroc5d64712007-10-13 08:30:26 +01002065 DECLARE_MAC_BUF(mac);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002066 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002068 pd = pdev->dev.platform_data;
2069 if (pd == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002070 dev_printk(KERN_ERR, &pdev->dev,
2071 "no mv643xx_eth_platform_data\n");
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002072 return -ENODEV;
2073 }
2074
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002075 if (pd->shared == NULL) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002076 dev_printk(KERN_ERR, &pdev->dev,
2077 "no mv643xx_eth_platform_data->shared\n");
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002078 return -ENODEV;
2079 }
2080
Lennert Buytenheke5371492008-06-01 02:18:13 +02002081 dev = alloc_etherdev(sizeof(struct mv643xx_eth_private));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 if (!dev)
2083 return -ENOMEM;
2084
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002086 platform_set_drvdata(pdev, mp);
2087
2088 mp->shared = platform_get_drvdata(pd->shared);
2089 mp->port_num = pd->port_number;
2090
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002091 mp->dev = dev;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002092#ifdef MV643XX_ETH_NAPI
2093 netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, 64);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002096 set_params(mp, pd);
2097
2098 spin_lock_init(&mp->lock);
2099
2100 mib_counters_clear(mp);
2101 INIT_WORK(&mp->tx_timeout_task, tx_timeout_task);
2102
2103 err = phy_init(mp, pd);
2104 if (err)
2105 goto out;
2106 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops);
2107
2108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2110 BUG_ON(!res);
2111 dev->irq = res->start;
2112
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002113 dev->hard_start_xmit = mv643xx_eth_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 dev->open = mv643xx_eth_open;
2115 dev->stop = mv643xx_eth_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002117 dev->set_mac_address = mv643xx_eth_set_mac_address;
2118 dev->do_ioctl = mv643xx_eth_ioctl;
2119 dev->change_mtu = mv643xx_eth_change_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 dev->tx_timeout = mv643xx_eth_tx_timeout;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002121#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenheke5371492008-06-01 02:18:13 +02002122 dev->poll_controller = mv643xx_eth_netpoll;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002123#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 dev->base_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Lennert Buytenheke5371492008-06-01 02:18:13 +02002127#ifdef MV643XX_ETH_CHECKSUM_OFFLOAD_TX
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 /*
2129 * Zero copy can only work if we use Discovery II memory. Else, we will
2130 * have to map the buffers to ISA memory which is only 16 MB
2131 */
Wolfram Joost63890572006-01-16 16:57:41 -07002132 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133#endif
James Chapmanc28a4f82006-01-27 01:13:15 -07002134
Olaf Heringb0b8dab2006-04-27 18:23:49 -07002135 SET_NETDEV_DEV(dev, &pdev->dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002136
2137 if (mp->shared->win_protect)
2138 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 err = register_netdev(dev);
2141 if (err)
2142 goto out;
2143
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002144 dev_printk(KERN_NOTICE, &dev->dev, "port %d with MAC address %s\n",
2145 mp->port_num, print_mac(mac, dev->dev_addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
2147 if (dev->features & NETIF_F_SG)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002148 dev_printk(KERN_NOTICE, &dev->dev, "scatter/gather enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 if (dev->features & NETIF_F_IP_CSUM)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002151 dev_printk(KERN_NOTICE, &dev->dev, "tx checksum offload\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Lennert Buytenheke5371492008-06-01 02:18:13 +02002153#ifdef MV643XX_ETH_NAPI
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002154 dev_printk(KERN_NOTICE, &dev->dev, "napi enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155#endif
2156
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002157 if (mp->tx_desc_sram_size > 0)
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002158 dev_printk(KERN_NOTICE, &dev->dev, "configured with sram\n");
Nicolas DETb1529872005-10-28 17:46:30 -07002159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 return 0;
2161
2162out:
2163 free_netdev(dev);
2164
2165 return err;
2166}
2167
Russell King3ae5eae2005-11-09 22:32:44 +00002168static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002170 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002172 unregister_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 flush_scheduled_work();
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002174 free_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Russell King3ae5eae2005-11-09 22:32:44 +00002176 platform_set_drvdata(pdev, NULL);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return 0;
2179}
2180
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002181static void mv643xx_eth_shutdown(struct platform_device *pdev)
2182{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002183 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002184
2185 /* Mask all interrupts on ethernet port */
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002186 wrl(mp, INT_MASK(mp->port_num), 0);
2187 rdl(mp, INT_MASK(mp->port_num));
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002188
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002189 if (netif_running(mp->dev))
2190 port_reset(mp);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002191}
2192
Russell King3ae5eae2005-11-09 22:32:44 +00002193static struct platform_driver mv643xx_eth_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002194 .probe = mv643xx_eth_probe,
2195 .remove = mv643xx_eth_remove,
2196 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00002197 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002198 .name = MV643XX_ETH_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07002199 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002200 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201};
2202
Lennert Buytenheke5371492008-06-01 02:18:13 +02002203static int __init mv643xx_eth_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
2205 int rc;
2206
Russell King3ae5eae2005-11-09 22:32:44 +00002207 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00002209 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00002211 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 return rc;
2215}
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002216module_init(mv643xx_eth_init_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Lennert Buytenheke5371492008-06-01 02:18:13 +02002218static void __exit mv643xx_eth_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
Russell King3ae5eae2005-11-09 22:32:44 +00002220 platform_driver_unregister(&mv643xx_eth_driver);
2221 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
Lennert Buytenheke5371492008-06-01 02:18:13 +02002223module_exit(mv643xx_eth_cleanup_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002225MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, Manish Lachwani "
2226 "and Dale Farnsworth");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002228MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -07002229MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002230MODULE_ALIAS("platform:" MV643XX_ETH_NAME);