blob: 6987485d0af0a1f9056ec5f4d23b64632df6b83e [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 Buytenhekc9df406f2008-06-01 00:48:39 +020057static char mv643xx_driver_name[] = "mv643xx_eth";
58static char mv643xx_driver_version[] = "1.0";
59
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020060#define MV643XX_CHECKSUM_OFFLOAD_TX
61#define MV643XX_NAPI
62#define MV643XX_TX_FAST_REFILL
63#undef MV643XX_COAL
64
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020065#define MV643XX_TX_COAL 100
66#ifdef MV643XX_COAL
67#define MV643XX_RX_COAL 100
68#endif
69
70#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
71#define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1)
72#else
73#define MAX_DESCS_PER_SKB 1
74#endif
75
76#define ETH_VLAN_HLEN 4
77#define ETH_FCS_LEN 4
78#define ETH_HW_IP_ALIGN 2 /* hw aligns IP header */
79#define ETH_WRAPPER_LEN (ETH_HW_IP_ALIGN + ETH_HLEN + \
80 ETH_VLAN_HLEN + ETH_FCS_LEN)
81#define ETH_RX_SKB_SIZE (dev->mtu + ETH_WRAPPER_LEN + \
82 dma_get_cache_alignment())
83
84/*
85 * Registers shared between all ports.
86 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020087#define PHY_ADDR 0x0000
88#define SMI_REG 0x0004
89#define WINDOW_BASE(w) (0x0200 + ((w) << 3))
90#define WINDOW_SIZE(w) (0x0204 + ((w) << 3))
91#define WINDOW_REMAP_HIGH(w) (0x0280 + ((w) << 2))
92#define WINDOW_BAR_ENABLE 0x0290
93#define WINDOW_PROTECT(w) (0x0294 + ((w) << 4))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020094
95/*
96 * Per-port registers.
97 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020098#define PORT_CONFIG(p) (0x0400 + ((p) << 10))
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +020099#define UNICAST_PROMISCUOUS_MODE 0x00000001
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200100#define PORT_CONFIG_EXT(p) (0x0404 + ((p) << 10))
101#define MAC_ADDR_LOW(p) (0x0414 + ((p) << 10))
102#define MAC_ADDR_HIGH(p) (0x0418 + ((p) << 10))
103#define SDMA_CONFIG(p) (0x041c + ((p) << 10))
104#define PORT_SERIAL_CONTROL(p) (0x043c + ((p) << 10))
105#define PORT_STATUS(p) (0x0444 + ((p) << 10))
106#define TXQ_COMMAND(p) (0x0448 + ((p) << 10))
107#define TX_BW_MTU(p) (0x0458 + ((p) << 10))
108#define INT_CAUSE(p) (0x0460 + ((p) << 10))
109#define INT_CAUSE_EXT(p) (0x0464 + ((p) << 10))
110#define INT_MASK(p) (0x0468 + ((p) << 10))
111#define INT_MASK_EXT(p) (0x046c + ((p) << 10))
112#define TX_FIFO_URGENT_THRESHOLD(p) (0x0474 + ((p) << 10))
113#define RXQ_CURRENT_DESC_PTR(p) (0x060c + ((p) << 10))
114#define RXQ_COMMAND(p) (0x0680 + ((p) << 10))
115#define TXQ_CURRENT_DESC_PTR(p) (0x06c0 + ((p) << 10))
116#define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
117#define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
118#define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
119#define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200120
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200121/* These macros describe Ethernet Port configuration extend reg (Px_cXR) bits*/
122#define CLASSIFY_EN (1 << 0)
123#define SPAN_BPDU_PACKETS_AS_NORMAL (0 << 1)
124#define SPAN_BPDU_PACKETS_TO_RX_QUEUE_7 (1 << 1)
125#define PARTITION_DISABLE (0 << 2)
126#define PARTITION_ENABLE (1 << 2)
127
128#define PORT_CONFIG_EXTEND_DEFAULT_VALUE \
129 SPAN_BPDU_PACKETS_AS_NORMAL | \
130 PARTITION_DISABLE
131
132/* These macros describe Ethernet Port Sdma configuration reg (SDCR) bits */
133#define RIFB (1 << 0)
134#define RX_BURST_SIZE_1_64BIT (0 << 1)
135#define RX_BURST_SIZE_2_64BIT (1 << 1)
136#define RX_BURST_SIZE_4_64BIT (2 << 1)
137#define RX_BURST_SIZE_8_64BIT (3 << 1)
138#define RX_BURST_SIZE_16_64BIT (4 << 1)
139#define BLM_RX_NO_SWAP (1 << 4)
140#define BLM_RX_BYTE_SWAP (0 << 4)
141#define BLM_TX_NO_SWAP (1 << 5)
142#define BLM_TX_BYTE_SWAP (0 << 5)
143#define DESCRIPTORS_BYTE_SWAP (1 << 6)
144#define DESCRIPTORS_NO_SWAP (0 << 6)
145#define IPG_INT_RX(value) (((value) & 0x3fff) << 8)
146#define TX_BURST_SIZE_1_64BIT (0 << 22)
147#define TX_BURST_SIZE_2_64BIT (1 << 22)
148#define TX_BURST_SIZE_4_64BIT (2 << 22)
149#define TX_BURST_SIZE_8_64BIT (3 << 22)
150#define TX_BURST_SIZE_16_64BIT (4 << 22)
151
152#if defined(__BIG_ENDIAN)
153#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
154 RX_BURST_SIZE_4_64BIT | \
155 IPG_INT_RX(0) | \
156 TX_BURST_SIZE_4_64BIT
157#elif defined(__LITTLE_ENDIAN)
158#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
159 RX_BURST_SIZE_4_64BIT | \
160 BLM_RX_NO_SWAP | \
161 BLM_TX_NO_SWAP | \
162 IPG_INT_RX(0) | \
163 TX_BURST_SIZE_4_64BIT
164#else
165#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
166#endif
167
168/* These macros describe Ethernet Port serial control reg (PSCR) bits */
169#define SERIAL_PORT_DISABLE (0 << 0)
170#define SERIAL_PORT_ENABLE (1 << 0)
171#define DO_NOT_FORCE_LINK_PASS (0 << 1)
172#define FORCE_LINK_PASS (1 << 1)
173#define ENABLE_AUTO_NEG_FOR_DUPLX (0 << 2)
174#define DISABLE_AUTO_NEG_FOR_DUPLX (1 << 2)
175#define ENABLE_AUTO_NEG_FOR_FLOW_CTRL (0 << 3)
176#define DISABLE_AUTO_NEG_FOR_FLOW_CTRL (1 << 3)
177#define ADV_NO_FLOW_CTRL (0 << 4)
178#define ADV_SYMMETRIC_FLOW_CTRL (1 << 4)
179#define FORCE_FC_MODE_NO_PAUSE_DIS_TX (0 << 5)
180#define FORCE_FC_MODE_TX_PAUSE_DIS (1 << 5)
181#define FORCE_BP_MODE_NO_JAM (0 << 7)
182#define FORCE_BP_MODE_JAM_TX (1 << 7)
183#define FORCE_BP_MODE_JAM_TX_ON_RX_ERR (2 << 7)
184#define SERIAL_PORT_CONTROL_RESERVED (1 << 9)
185#define FORCE_LINK_FAIL (0 << 10)
186#define DO_NOT_FORCE_LINK_FAIL (1 << 10)
187#define RETRANSMIT_16_ATTEMPTS (0 << 11)
188#define RETRANSMIT_FOREVER (1 << 11)
189#define ENABLE_AUTO_NEG_SPEED_GMII (0 << 13)
190#define DISABLE_AUTO_NEG_SPEED_GMII (1 << 13)
191#define DTE_ADV_0 (0 << 14)
192#define DTE_ADV_1 (1 << 14)
193#define DISABLE_AUTO_NEG_BYPASS (0 << 15)
194#define ENABLE_AUTO_NEG_BYPASS (1 << 15)
195#define AUTO_NEG_NO_CHANGE (0 << 16)
196#define RESTART_AUTO_NEG (1 << 16)
197#define MAX_RX_PACKET_1518BYTE (0 << 17)
198#define MAX_RX_PACKET_1522BYTE (1 << 17)
199#define MAX_RX_PACKET_1552BYTE (2 << 17)
200#define MAX_RX_PACKET_9022BYTE (3 << 17)
201#define MAX_RX_PACKET_9192BYTE (4 << 17)
202#define MAX_RX_PACKET_9700BYTE (5 << 17)
203#define MAX_RX_PACKET_MASK (7 << 17)
204#define CLR_EXT_LOOPBACK (0 << 20)
205#define SET_EXT_LOOPBACK (1 << 20)
206#define SET_HALF_DUPLEX_MODE (0 << 21)
207#define SET_FULL_DUPLEX_MODE (1 << 21)
208#define DISABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX (0 << 22)
209#define ENABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX (1 << 22)
210#define SET_GMII_SPEED_TO_10_100 (0 << 23)
211#define SET_GMII_SPEED_TO_1000 (1 << 23)
212#define SET_MII_SPEED_TO_10 (0 << 24)
213#define SET_MII_SPEED_TO_100 (1 << 24)
214
215#define PORT_SERIAL_CONTROL_DEFAULT_VALUE \
216 DO_NOT_FORCE_LINK_PASS | \
217 ENABLE_AUTO_NEG_FOR_DUPLX | \
218 DISABLE_AUTO_NEG_FOR_FLOW_CTRL | \
219 ADV_SYMMETRIC_FLOW_CTRL | \
220 FORCE_FC_MODE_NO_PAUSE_DIS_TX | \
221 FORCE_BP_MODE_NO_JAM | \
222 (1 << 9) /* reserved */ | \
223 DO_NOT_FORCE_LINK_FAIL | \
224 RETRANSMIT_16_ATTEMPTS | \
225 ENABLE_AUTO_NEG_SPEED_GMII | \
226 DTE_ADV_0 | \
227 DISABLE_AUTO_NEG_BYPASS | \
228 AUTO_NEG_NO_CHANGE | \
229 MAX_RX_PACKET_9700BYTE | \
230 CLR_EXT_LOOPBACK | \
231 SET_FULL_DUPLEX_MODE | \
232 ENABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX
233
234/* These macros describe Ethernet Serial Status reg (PSR) bits */
235#define PORT_STATUS_MODE_10_BIT (1 << 0)
236#define PORT_STATUS_LINK_UP (1 << 1)
237#define PORT_STATUS_FULL_DUPLEX (1 << 2)
238#define PORT_STATUS_FLOW_CONTROL (1 << 3)
239#define PORT_STATUS_GMII_1000 (1 << 4)
240#define PORT_STATUS_MII_100 (1 << 5)
241/* PSR bit 6 is undocumented */
242#define PORT_STATUS_TX_IN_PROGRESS (1 << 7)
243#define PORT_STATUS_AUTONEG_BYPASSED (1 << 8)
244#define PORT_STATUS_PARTITION (1 << 9)
245#define PORT_STATUS_TX_FIFO_EMPTY (1 << 10)
246/* PSR bits 11-31 are reserved */
247
248#define PORT_DEFAULT_TRANSMIT_QUEUE_SIZE 800
249#define PORT_DEFAULT_RECEIVE_QUEUE_SIZE 400
250
251#define DESC_SIZE 64
252
253#define ETH_RX_QUEUES_ENABLED (1 << 0) /* use only Q0 for receive */
254#define ETH_TX_QUEUES_ENABLED (1 << 0) /* use only Q0 for transmit */
255
256#define ETH_INT_CAUSE_RX_DONE (ETH_RX_QUEUES_ENABLED << 2)
257#define ETH_INT_CAUSE_RX_ERROR (ETH_RX_QUEUES_ENABLED << 9)
258#define ETH_INT_CAUSE_RX (ETH_INT_CAUSE_RX_DONE | ETH_INT_CAUSE_RX_ERROR)
259#define ETH_INT_CAUSE_EXT 0x00000002
260#define ETH_INT_UNMASK_ALL (ETH_INT_CAUSE_RX | ETH_INT_CAUSE_EXT)
261
262#define ETH_INT_CAUSE_TX_DONE (ETH_TX_QUEUES_ENABLED << 0)
263#define ETH_INT_CAUSE_TX_ERROR (ETH_TX_QUEUES_ENABLED << 8)
264#define ETH_INT_CAUSE_TX (ETH_INT_CAUSE_TX_DONE | ETH_INT_CAUSE_TX_ERROR)
265#define ETH_INT_CAUSE_PHY 0x00010000
266#define ETH_INT_CAUSE_STATE 0x00100000
267#define ETH_INT_UNMASK_ALL_EXT (ETH_INT_CAUSE_TX | ETH_INT_CAUSE_PHY | \
268 ETH_INT_CAUSE_STATE)
269
270#define ETH_INT_MASK_ALL 0x00000000
271#define ETH_INT_MASK_ALL_EXT 0x00000000
272
273#define PHY_WAIT_ITERATIONS 1000 /* 1000 iterations * 10uS = 10mS max */
274#define PHY_WAIT_MICRO_SECONDS 10
275
276/* Buffer offset from buffer pointer */
277#define RX_BUF_OFFSET 0x2
278
279/* Gigabit Ethernet Unit Global Registers */
280
281/* MIB Counters register definitions */
282#define ETH_MIB_GOOD_OCTETS_RECEIVED_LOW 0x0
283#define ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH 0x4
284#define ETH_MIB_BAD_OCTETS_RECEIVED 0x8
285#define ETH_MIB_INTERNAL_MAC_TRANSMIT_ERR 0xc
286#define ETH_MIB_GOOD_FRAMES_RECEIVED 0x10
287#define ETH_MIB_BAD_FRAMES_RECEIVED 0x14
288#define ETH_MIB_BROADCAST_FRAMES_RECEIVED 0x18
289#define ETH_MIB_MULTICAST_FRAMES_RECEIVED 0x1c
290#define ETH_MIB_FRAMES_64_OCTETS 0x20
291#define ETH_MIB_FRAMES_65_TO_127_OCTETS 0x24
292#define ETH_MIB_FRAMES_128_TO_255_OCTETS 0x28
293#define ETH_MIB_FRAMES_256_TO_511_OCTETS 0x2c
294#define ETH_MIB_FRAMES_512_TO_1023_OCTETS 0x30
295#define ETH_MIB_FRAMES_1024_TO_MAX_OCTETS 0x34
296#define ETH_MIB_GOOD_OCTETS_SENT_LOW 0x38
297#define ETH_MIB_GOOD_OCTETS_SENT_HIGH 0x3c
298#define ETH_MIB_GOOD_FRAMES_SENT 0x40
299#define ETH_MIB_EXCESSIVE_COLLISION 0x44
300#define ETH_MIB_MULTICAST_FRAMES_SENT 0x48
301#define ETH_MIB_BROADCAST_FRAMES_SENT 0x4c
302#define ETH_MIB_UNREC_MAC_CONTROL_RECEIVED 0x50
303#define ETH_MIB_FC_SENT 0x54
304#define ETH_MIB_GOOD_FC_RECEIVED 0x58
305#define ETH_MIB_BAD_FC_RECEIVED 0x5c
306#define ETH_MIB_UNDERSIZE_RECEIVED 0x60
307#define ETH_MIB_FRAGMENTS_RECEIVED 0x64
308#define ETH_MIB_OVERSIZE_RECEIVED 0x68
309#define ETH_MIB_JABBER_RECEIVED 0x6c
310#define ETH_MIB_MAC_RECEIVE_ERROR 0x70
311#define ETH_MIB_BAD_CRC_EVENT 0x74
312#define ETH_MIB_COLLISION 0x78
313#define ETH_MIB_LATE_COLLISION 0x7c
314
315/* Port serial status reg (PSR) */
316#define ETH_INTERFACE_PCM 0x00000001
317#define ETH_LINK_IS_UP 0x00000002
318#define ETH_PORT_AT_FULL_DUPLEX 0x00000004
319#define ETH_RX_FLOW_CTRL_ENABLED 0x00000008
320#define ETH_GMII_SPEED_1000 0x00000010
321#define ETH_MII_SPEED_100 0x00000020
322#define ETH_TX_IN_PROGRESS 0x00000080
323#define ETH_BYPASS_ACTIVE 0x00000100
324#define ETH_PORT_AT_PARTITION_STATE 0x00000200
325#define ETH_PORT_TX_FIFO_EMPTY 0x00000400
326
327/* SMI reg */
328#define ETH_SMI_BUSY 0x10000000 /* 0 - Write, 1 - Read */
329#define ETH_SMI_READ_VALID 0x08000000 /* 0 - Write, 1 - Read */
330#define ETH_SMI_OPCODE_WRITE 0 /* Completion of Read */
331#define ETH_SMI_OPCODE_READ 0x04000000 /* Operation is in progress */
332
333/* Interrupt Cause Register Bit Definitions */
334
335/* SDMA command status fields macros */
336
337/* Tx & Rx descriptors status */
338#define ETH_ERROR_SUMMARY 0x00000001
339
340/* Tx & Rx descriptors command */
341#define ETH_BUFFER_OWNED_BY_DMA 0x80000000
342
343/* Tx descriptors status */
344#define ETH_LC_ERROR 0
345#define ETH_UR_ERROR 0x00000002
346#define ETH_RL_ERROR 0x00000004
347#define ETH_LLC_SNAP_FORMAT 0x00000200
348
349/* Rx descriptors status */
350#define ETH_OVERRUN_ERROR 0x00000002
351#define ETH_MAX_FRAME_LENGTH_ERROR 0x00000004
352#define ETH_RESOURCE_ERROR 0x00000006
353#define ETH_VLAN_TAGGED 0x00080000
354#define ETH_BPDU_FRAME 0x00100000
355#define ETH_UDP_FRAME_OVER_IP_V_4 0x00200000
356#define ETH_OTHER_FRAME_TYPE 0x00400000
357#define ETH_LAYER_2_IS_ETH_V_2 0x00800000
358#define ETH_FRAME_TYPE_IP_V_4 0x01000000
359#define ETH_FRAME_HEADER_OK 0x02000000
360#define ETH_RX_LAST_DESC 0x04000000
361#define ETH_RX_FIRST_DESC 0x08000000
362#define ETH_UNKNOWN_DESTINATION_ADDR 0x10000000
363#define ETH_RX_ENABLE_INTERRUPT 0x20000000
364#define ETH_LAYER_4_CHECKSUM_OK 0x40000000
365
366/* Rx descriptors byte count */
367#define ETH_FRAME_FRAGMENTED 0x00000004
368
369/* Tx descriptors command */
370#define ETH_LAYER_4_CHECKSUM_FIRST_DESC 0x00000400
371#define ETH_FRAME_SET_TO_VLAN 0x00008000
372#define ETH_UDP_FRAME 0x00010000
373#define ETH_GEN_TCP_UDP_CHECKSUM 0x00020000
374#define ETH_GEN_IP_V_4_CHECKSUM 0x00040000
375#define ETH_ZERO_PADDING 0x00080000
376#define ETH_TX_LAST_DESC 0x00100000
377#define ETH_TX_FIRST_DESC 0x00200000
378#define ETH_GEN_CRC 0x00400000
379#define ETH_TX_ENABLE_INTERRUPT 0x00800000
380#define ETH_AUTO_MODE 0x40000000
381
382#define ETH_TX_IHL_SHIFT 11
383
384/* typedefs */
385
386typedef enum _eth_func_ret_status {
387 ETH_OK, /* Returned as expected. */
388 ETH_ERROR, /* Fundamental error. */
389 ETH_RETRY, /* Could not process request. Try later.*/
390 ETH_END_OF_JOB, /* Ring has nothing to process. */
391 ETH_QUEUE_FULL, /* Ring resource error. */
392 ETH_QUEUE_LAST_RESOURCE /* Ring resources about to exhaust. */
393} ETH_FUNC_RET_STATUS;
394
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200395/* These are for big-endian machines. Little endian needs different
396 * definitions.
397 */
398#if defined(__BIG_ENDIAN)
399struct eth_rx_desc {
400 u16 byte_cnt; /* Descriptor buffer byte count */
401 u16 buf_size; /* Buffer size */
402 u32 cmd_sts; /* Descriptor command status */
403 u32 next_desc_ptr; /* Next descriptor pointer */
404 u32 buf_ptr; /* Descriptor buffer pointer */
405};
406
407struct eth_tx_desc {
408 u16 byte_cnt; /* buffer byte count */
409 u16 l4i_chk; /* CPU provided TCP checksum */
410 u32 cmd_sts; /* Command/status field */
411 u32 next_desc_ptr; /* Pointer to next descriptor */
412 u32 buf_ptr; /* pointer to buffer for this descriptor*/
413};
414#elif defined(__LITTLE_ENDIAN)
415struct eth_rx_desc {
416 u32 cmd_sts; /* Descriptor command status */
417 u16 buf_size; /* Buffer size */
418 u16 byte_cnt; /* Descriptor buffer byte count */
419 u32 buf_ptr; /* Descriptor buffer pointer */
420 u32 next_desc_ptr; /* Next descriptor pointer */
421};
422
423struct eth_tx_desc {
424 u32 cmd_sts; /* Command/status field */
425 u16 l4i_chk; /* CPU provided TCP checksum */
426 u16 byte_cnt; /* buffer byte count */
427 u32 buf_ptr; /* pointer to buffer for this descriptor*/
428 u32 next_desc_ptr; /* Pointer to next descriptor */
429};
430#else
431#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
432#endif
433
434/* Unified struct for Rx and Tx operations. The user is not required to */
435/* be familier with neither Tx nor Rx descriptors. */
436struct pkt_info {
437 unsigned short byte_cnt; /* Descriptor buffer byte count */
438 unsigned short l4i_chk; /* Tx CPU provided TCP Checksum */
439 unsigned int cmd_sts; /* Descriptor command status */
440 dma_addr_t buf_ptr; /* Descriptor buffer pointer */
441 struct sk_buff *return_info; /* User resource return information */
442};
443
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200444
445/* global *******************************************************************/
446struct mv643xx_shared_private {
447 void __iomem *eth_base;
448
449 /* used to protect SMI_REG, which is shared across ports */
450 spinlock_t phy_lock;
451
452 u32 win_protect;
453
454 unsigned int t_clk;
455};
456
457
458/* per-port *****************************************************************/
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200459struct mv643xx_mib_counters {
460 u64 good_octets_received;
461 u32 bad_octets_received;
462 u32 internal_mac_transmit_err;
463 u32 good_frames_received;
464 u32 bad_frames_received;
465 u32 broadcast_frames_received;
466 u32 multicast_frames_received;
467 u32 frames_64_octets;
468 u32 frames_65_to_127_octets;
469 u32 frames_128_to_255_octets;
470 u32 frames_256_to_511_octets;
471 u32 frames_512_to_1023_octets;
472 u32 frames_1024_to_max_octets;
473 u64 good_octets_sent;
474 u32 good_frames_sent;
475 u32 excessive_collision;
476 u32 multicast_frames_sent;
477 u32 broadcast_frames_sent;
478 u32 unrec_mac_control_received;
479 u32 fc_sent;
480 u32 good_fc_received;
481 u32 bad_fc_received;
482 u32 undersize_received;
483 u32 fragments_received;
484 u32 oversize_received;
485 u32 jabber_received;
486 u32 mac_receive_error;
487 u32 bad_crc_event;
488 u32 collision;
489 u32 late_collision;
490};
491
492struct mv643xx_private {
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200493 struct mv643xx_shared_private *shared;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200494 int port_num; /* User Ethernet port number */
495
Lennert Buytenhekce4e2e42008-04-24 01:29:59 +0200496 struct mv643xx_shared_private *shared_smi;
497
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200498 u32 rx_sram_addr; /* Base address of rx sram area */
499 u32 rx_sram_size; /* Size of rx sram area */
500 u32 tx_sram_addr; /* Base address of tx sram area */
501 u32 tx_sram_size; /* Size of tx sram area */
502
503 int rx_resource_err; /* Rx ring resource error flag */
504
505 /* Tx/Rx rings managment indexes fields. For driver use */
506
507 /* Next available and first returning Rx resource */
508 int rx_curr_desc_q, rx_used_desc_q;
509
510 /* Next available and first returning Tx resource */
511 int tx_curr_desc_q, tx_used_desc_q;
512
513#ifdef MV643XX_TX_FAST_REFILL
514 u32 tx_clean_threshold;
515#endif
516
517 struct eth_rx_desc *p_rx_desc_area;
518 dma_addr_t rx_desc_dma;
519 int rx_desc_area_size;
520 struct sk_buff **rx_skb;
521
522 struct eth_tx_desc *p_tx_desc_area;
523 dma_addr_t tx_desc_dma;
524 int tx_desc_area_size;
525 struct sk_buff **tx_skb;
526
527 struct work_struct tx_timeout_task;
528
529 struct net_device *dev;
530 struct napi_struct napi;
531 struct net_device_stats stats;
532 struct mv643xx_mib_counters mib_counters;
533 spinlock_t lock;
534 /* Size of Tx Ring per queue */
535 int tx_ring_size;
536 /* Number of tx descriptors in use */
537 int tx_desc_count;
538 /* Size of Rx Ring per queue */
539 int rx_ring_size;
540 /* Number of rx descriptors in use */
541 int rx_desc_count;
542
543 /*
544 * Used in case RX Ring is empty, which can be caused when
545 * system does not have resources (skb's)
546 */
547 struct timer_list timeout;
548
549 u32 rx_int_coal;
550 u32 tx_int_coal;
551 struct mii_if_info mii;
552};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200554
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200555/* port register accessors **************************************************/
Lennert Buytenhekec69d652008-03-18 11:38:05 -0700556static inline u32 rdl(struct mv643xx_private *mp, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200558 return readl(mp->shared->eth_base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559}
560
Lennert Buytenhekec69d652008-03-18 11:38:05 -0700561static inline void wrl(struct mv643xx_private *mp, int offset, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200563 writel(data, mp->shared->eth_base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200566
567/* rxq/txq helper functions *************************************************/
568static void mv643xx_eth_port_enable_rx(struct mv643xx_private *mp,
569 unsigned int queues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200571 wrl(mp, RXQ_COMMAND(mp->port_num), queues);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200572}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200574static unsigned int mv643xx_eth_port_disable_rx(struct mv643xx_private *mp)
575{
576 unsigned int port_num = mp->port_num;
577 u32 queues;
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700578
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200579 /* Stop Rx port activity. Check port Rx activity. */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200580 queues = rdl(mp, RXQ_COMMAND(port_num)) & 0xFF;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200581 if (queues) {
582 /* Issue stop command for active queues only */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200583 wrl(mp, RXQ_COMMAND(port_num), (queues << 8));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200584
585 /* Wait for all Rx activity to terminate. */
586 /* Check port cause register that all Rx queues are stopped */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200587 while (rdl(mp, RXQ_COMMAND(port_num)) & 0xFF)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200588 udelay(PHY_WAIT_MICRO_SECONDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200591 return queues;
592}
593
594static void mv643xx_eth_port_enable_tx(struct mv643xx_private *mp,
595 unsigned int queues)
596{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200597 wrl(mp, TXQ_COMMAND(mp->port_num), queues);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200598}
599
600static unsigned int mv643xx_eth_port_disable_tx(struct mv643xx_private *mp)
601{
602 unsigned int port_num = mp->port_num;
603 u32 queues;
604
605 /* Stop Tx port activity. Check port Tx activity. */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200606 queues = rdl(mp, TXQ_COMMAND(port_num)) & 0xFF;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200607 if (queues) {
608 /* Issue stop command for active queues only */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200609 wrl(mp, TXQ_COMMAND(port_num), (queues << 8));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200610
611 /* Wait for all Tx activity to terminate. */
612 /* Check port cause register that all Tx queues are stopped */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200613 while (rdl(mp, TXQ_COMMAND(port_num)) & 0xFF)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200614 udelay(PHY_WAIT_MICRO_SECONDS);
615
616 /* Wait for Tx FIFO to empty */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200617 while (rdl(mp, PORT_STATUS(port_num)) & ETH_PORT_TX_FIFO_EMPTY)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200618 udelay(PHY_WAIT_MICRO_SECONDS);
619 }
620
621 return queues;
622}
623
624
625/* rx ***********************************************************************/
626static void mv643xx_eth_free_completed_tx_descs(struct net_device *dev);
627
628/*
629 * eth_rx_return_buff - Returns a Rx buffer back to the Rx ring.
630 *
631 * DESCRIPTION:
632 * This routine returns a Rx buffer back to the Rx ring. It retrieves the
633 * next 'used' descriptor and attached the returned buffer to it.
634 * In case the Rx ring was in "resource error" condition, where there are
635 * no available Rx resources, the function resets the resource error flag.
636 *
637 * INPUT:
638 * struct mv643xx_private *mp Ethernet Port Control srtuct.
639 * struct pkt_info *p_pkt_info Information on returned buffer.
640 *
641 * OUTPUT:
642 * New available Rx resource in Rx descriptor ring.
643 *
644 * RETURN:
645 * ETH_ERROR in case the routine can not access Rx desc ring.
646 * ETH_OK otherwise.
647 */
648static ETH_FUNC_RET_STATUS eth_rx_return_buff(struct mv643xx_private *mp,
649 struct pkt_info *p_pkt_info)
650{
651 int used_rx_desc; /* Where to return Rx resource */
652 volatile struct eth_rx_desc *p_used_rx_desc;
653 unsigned long flags;
654
655 spin_lock_irqsave(&mp->lock, flags);
656
657 /* Get 'used' Rx descriptor */
658 used_rx_desc = mp->rx_used_desc_q;
659 p_used_rx_desc = &mp->p_rx_desc_area[used_rx_desc];
660
661 p_used_rx_desc->buf_ptr = p_pkt_info->buf_ptr;
662 p_used_rx_desc->buf_size = p_pkt_info->byte_cnt;
663 mp->rx_skb[used_rx_desc] = p_pkt_info->return_info;
664
665 /* Flush the write pipe */
666
667 /* Return the descriptor to DMA ownership */
668 wmb();
669 p_used_rx_desc->cmd_sts =
670 ETH_BUFFER_OWNED_BY_DMA | ETH_RX_ENABLE_INTERRUPT;
671 wmb();
672
673 /* Move the used descriptor pointer to the next descriptor */
674 mp->rx_used_desc_q = (used_rx_desc + 1) % mp->rx_ring_size;
675
676 /* Any Rx return cancels the Rx resource error status */
677 mp->rx_resource_err = 0;
678
679 spin_unlock_irqrestore(&mp->lock, flags);
680
681 return ETH_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684/*
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700685 * mv643xx_eth_rx_refill_descs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 *
687 * Fills / refills RX queue on a certain gigabit ethernet port
688 *
689 * Input : pointer to ethernet interface network device structure
690 * Output : N/A
691 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700692static void mv643xx_eth_rx_refill_descs(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 struct mv643xx_private *mp = netdev_priv(dev);
695 struct pkt_info pkt_info;
696 struct sk_buff *skb;
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700697 int unaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700699 while (mp->rx_desc_count < mp->rx_ring_size) {
Ralf Baechle908b6372007-02-26 19:52:06 +0000700 skb = dev_alloc_skb(ETH_RX_SKB_SIZE + dma_get_cache_alignment());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 if (!skb)
702 break;
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700703 mp->rx_desc_count++;
Ralf Baechle908b6372007-02-26 19:52:06 +0000704 unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700705 if (unaligned)
Ralf Baechle908b6372007-02-26 19:52:06 +0000706 skb_reserve(skb, dma_get_cache_alignment() - unaligned);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 pkt_info.cmd_sts = ETH_RX_ENABLE_INTERRUPT;
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700708 pkt_info.byte_cnt = ETH_RX_SKB_SIZE;
709 pkt_info.buf_ptr = dma_map_single(NULL, skb->data,
710 ETH_RX_SKB_SIZE, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 pkt_info.return_info = skb;
712 if (eth_rx_return_buff(mp, &pkt_info) != ETH_OK) {
713 printk(KERN_ERR
714 "%s: Error allocating RX Ring\n", dev->name);
715 break;
716 }
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700717 skb_reserve(skb, ETH_HW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /*
720 * If RX ring is empty of SKB, set a timer to try allocating
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700721 * again at a later time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700723 if (mp->rx_desc_count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 printk(KERN_INFO "%s: Rx ring is empty\n", dev->name);
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700725 mp->timeout.expires = jiffies + (HZ / 10); /* 100 mSec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 add_timer(&mp->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728}
729
730/*
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700731 * mv643xx_eth_rx_refill_descs_timer_wrapper
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 *
733 * Timer routine to wake up RX queue filling task. This function is
734 * used only in case the RX queue is empty, and all alloc_skb has
735 * failed (due to out of memory event).
736 *
737 * Input : pointer to ethernet interface network device structure
738 * Output : N/A
739 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700740static inline void mv643xx_eth_rx_refill_descs_timer_wrapper(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700742 mv643xx_eth_rx_refill_descs((struct net_device *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745/*
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200746 * eth_port_receive - Get received information from Rx ring.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 *
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200748 * DESCRIPTION:
749 * This routine returns the received data to the caller. There is no
750 * data copying during routine operation. All information is returned
751 * using pointer to packet information struct passed from the caller.
752 * If the routine exhausts Rx ring resources then the resource error flag
753 * is set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 *
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200755 * INPUT:
756 * struct mv643xx_private *mp Ethernet Port Control srtuct.
757 * struct pkt_info *p_pkt_info User packet buffer.
758 *
759 * OUTPUT:
760 * Rx ring current and used indexes are updated.
761 *
762 * RETURN:
763 * ETH_ERROR in case the routine can not access Rx desc ring.
764 * ETH_QUEUE_FULL if Rx ring resources are exhausted.
765 * ETH_END_OF_JOB if there is no received data.
766 * ETH_OK otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200768static ETH_FUNC_RET_STATUS eth_port_receive(struct mv643xx_private *mp,
769 struct pkt_info *p_pkt_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200771 int rx_next_curr_desc, rx_curr_desc, rx_used_desc;
772 volatile struct eth_rx_desc *p_rx_desc;
773 unsigned int command_status;
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700774 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200776 /* Do not process Rx ring in case of Rx ring resource error */
777 if (mp->rx_resource_err)
778 return ETH_QUEUE_FULL;
Dale Farnsworthd344bff2007-01-23 09:52:25 -0700779
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200780 spin_lock_irqsave(&mp->lock, flags);
Dale Farnsworthd344bff2007-01-23 09:52:25 -0700781
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200782 /* Get the Rx Desc ring 'curr and 'used' indexes */
783 rx_curr_desc = mp->rx_curr_desc_q;
784 rx_used_desc = mp->rx_used_desc_q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200786 p_rx_desc = &mp->p_rx_desc_area[rx_curr_desc];
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700787
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200788 /* The following parameters are used to save readings from memory */
789 command_status = p_rx_desc->cmd_sts;
790 rmb();
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700791
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200792 /* Nothing to receive... */
793 if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) {
Dale Farnsworthd344bff2007-01-23 09:52:25 -0700794 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200795 return ETH_END_OF_JOB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200798 p_pkt_info->byte_cnt = (p_rx_desc->byte_cnt) - RX_BUF_OFFSET;
799 p_pkt_info->cmd_sts = command_status;
800 p_pkt_info->buf_ptr = (p_rx_desc->buf_ptr) + RX_BUF_OFFSET;
801 p_pkt_info->return_info = mp->rx_skb[rx_curr_desc];
802 p_pkt_info->l4i_chk = p_rx_desc->buf_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200804 /*
805 * Clean the return info field to indicate that the
806 * packet has been moved to the upper layers
807 */
808 mp->rx_skb[rx_curr_desc] = NULL;
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700809
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200810 /* Update current index in data structure */
811 rx_next_curr_desc = (rx_curr_desc + 1) % mp->rx_ring_size;
812 mp->rx_curr_desc_q = rx_next_curr_desc;
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700813
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200814 /* Rx descriptors exhausted. Set the Rx ring resource error flag */
815 if (rx_next_curr_desc == rx_used_desc)
816 mp->rx_resource_err = 1;
817
818 spin_unlock_irqrestore(&mp->lock, flags);
819
820 return ETH_OK;
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700821}
822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823/*
824 * mv643xx_eth_receive
825 *
826 * This function is forward packets that are received from the port's
827 * queues toward kernel core or FastRoute them to another interface.
828 *
829 * Input : dev - a pointer to the required interface
830 * max - maximum number to receive (0 means unlimted)
831 *
832 * Output : number of served packets
833 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834static int mv643xx_eth_receive_queue(struct net_device *dev, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 struct mv643xx_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700837 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 unsigned int received_packets = 0;
839 struct sk_buff *skb;
840 struct pkt_info pkt_info;
841
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700842 while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) {
Jeff Garzik54caf442006-09-21 00:08:10 -0400843 dma_unmap_single(NULL, pkt_info.buf_ptr, ETH_RX_SKB_SIZE,
Dale Farnsworth71d28722006-09-13 09:21:08 -0700844 DMA_FROM_DEVICE);
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700845 mp->rx_desc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 received_packets++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700847
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700848 /*
849 * Update statistics.
850 * Note byte count includes 4 byte CRC count
851 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 stats->rx_packets++;
853 stats->rx_bytes += pkt_info.byte_cnt;
854 skb = pkt_info.return_info;
855 /*
856 * In case received a packet without first / last bits on OR
857 * the error summary bit is on, the packets needs to be dropeed.
858 */
859 if (((pkt_info.cmd_sts
860 & (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) !=
861 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC))
862 || (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)) {
863 stats->rx_dropped++;
864 if ((pkt_info.cmd_sts & (ETH_RX_FIRST_DESC |
865 ETH_RX_LAST_DESC)) !=
866 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) {
867 if (net_ratelimit())
868 printk(KERN_ERR
869 "%s: Received packet spread "
870 "on multiple descriptors\n",
871 dev->name);
872 }
873 if (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)
874 stats->rx_errors++;
875
876 dev_kfree_skb_irq(skb);
877 } else {
878 /*
879 * The -4 is for the CRC in the trailer of the
880 * received packet
881 */
882 skb_put(skb, pkt_info.byte_cnt - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 if (pkt_info.cmd_sts & ETH_LAYER_4_CHECKSUM_OK) {
885 skb->ip_summed = CHECKSUM_UNNECESSARY;
886 skb->csum = htons(
887 (pkt_info.cmd_sts & 0x0007fff8) >> 3);
888 }
889 skb->protocol = eth_type_trans(skb, dev);
890#ifdef MV643XX_NAPI
891 netif_receive_skb(skb);
892#else
893 netif_rx(skb);
894#endif
895 }
Paolo Galtieri12ad74f2006-01-27 01:03:38 -0700896 dev->last_rx = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700898 mv643xx_eth_rx_refill_descs(dev); /* Fill RX ring with skb's */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 return received_packets;
901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903#ifdef MV643XX_NAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/*
905 * mv643xx_poll
906 *
907 * This function is used in case of NAPI
908 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700909static int mv643xx_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700911 struct mv643xx_private *mp = container_of(napi, struct mv643xx_private, napi);
912 struct net_device *dev = mp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 unsigned int port_num = mp->port_num;
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700914 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916#ifdef MV643XX_TX_FAST_REFILL
917 if (++mp->tx_clean_threshold > 5) {
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700918 mv643xx_eth_free_completed_tx_descs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 mp->tx_clean_threshold = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921#endif
922
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700923 work_done = 0;
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200924 if ((rdl(mp, RXQ_CURRENT_DESC_PTR(port_num)))
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700925 != (u32) mp->rx_used_desc_q)
926 work_done = mv643xx_eth_receive_queue(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700928 if (work_done < budget) {
929 netif_rx_complete(dev, napi);
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200930 wrl(mp, INT_CAUSE(port_num), 0);
931 wrl(mp, INT_CAUSE_EXT(port_num), 0);
932 wrl(mp, INT_MASK(port_num), ETH_INT_UNMASK_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700935 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937#endif
938
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200939
940/* tx ***********************************************************************/
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700941/**
942 * has_tiny_unaligned_frags - check if skb has any small, unaligned fragments
943 *
944 * Hardware can't handle unaligned fragments smaller than 9 bytes.
Paul Janzenf7ea3332006-01-16 16:52:13 -0700945 * This helper function detects that case.
946 */
947
948static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
949{
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700950 unsigned int frag;
951 skb_frag_t *fragp;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700952
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700953 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
954 fragp = &skb_shinfo(skb)->frags[frag];
955 if (fragp->size <= 8 && fragp->page_offset & 0x7)
956 return 1;
957 }
958 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700959}
960
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700961/**
962 * eth_alloc_tx_desc_index - return the index of the next available tx desc
963 */
964static int eth_alloc_tx_desc_index(struct mv643xx_private *mp)
965{
966 int tx_desc_curr;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700967
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700968 BUG_ON(mp->tx_desc_count >= mp->tx_ring_size);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700969
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700970 tx_desc_curr = mp->tx_curr_desc_q;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700971 mp->tx_curr_desc_q = (tx_desc_curr + 1) % mp->tx_ring_size;
972
973 BUG_ON(mp->tx_curr_desc_q == mp->tx_used_desc_q);
974
975 return tx_desc_curr;
976}
977
978/**
979 * eth_tx_fill_frag_descs - fill tx hw descriptors for an skb's fragments.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 *
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700981 * Ensure the data for each fragment to be transmitted is mapped properly,
982 * then fill in descriptors in the tx hw queue.
983 */
984static void eth_tx_fill_frag_descs(struct mv643xx_private *mp,
985 struct sk_buff *skb)
986{
987 int frag;
988 int tx_index;
989 struct eth_tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700990
991 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
992 skb_frag_t *this_frag = &skb_shinfo(skb)->frags[frag];
993
994 tx_index = eth_alloc_tx_desc_index(mp);
995 desc = &mp->p_tx_desc_area[tx_index];
996
997 desc->cmd_sts = ETH_BUFFER_OWNED_BY_DMA;
998 /* Last Frag enables interrupt and frees the skb */
999 if (frag == (skb_shinfo(skb)->nr_frags - 1)) {
1000 desc->cmd_sts |= ETH_ZERO_PADDING |
1001 ETH_TX_LAST_DESC |
1002 ETH_TX_ENABLE_INTERRUPT;
1003 mp->tx_skb[tx_index] = skb;
1004 } else
Al Viro05980772006-05-30 23:59:09 -04001005 mp->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001006
1007 desc = &mp->p_tx_desc_area[tx_index];
1008 desc->l4i_chk = 0;
1009 desc->byte_cnt = this_frag->size;
1010 desc->buf_ptr = dma_map_page(NULL, this_frag->page,
1011 this_frag->page_offset,
1012 this_frag->size,
1013 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001014 }
1015}
1016
Byron Bradley324ff2c2008-02-04 23:47:15 -08001017static inline __be16 sum16_as_be(__sum16 sum)
1018{
1019 return (__force __be16)sum;
1020}
1021
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001022/**
1023 * eth_tx_submit_descs_for_skb - submit data from an skb to the tx hw
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 *
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001025 * Ensure the data for an skb to be transmitted is mapped properly,
1026 * then fill in descriptors in the tx hw queue and start the hardware.
1027 */
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001028static void eth_tx_submit_descs_for_skb(struct mv643xx_private *mp,
1029 struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001030{
1031 int tx_index;
1032 struct eth_tx_desc *desc;
1033 u32 cmd_sts;
1034 int length;
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001035 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001036
1037 cmd_sts = ETH_TX_FIRST_DESC | ETH_GEN_CRC | ETH_BUFFER_OWNED_BY_DMA;
1038
1039 tx_index = eth_alloc_tx_desc_index(mp);
1040 desc = &mp->p_tx_desc_area[tx_index];
1041
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001042 if (nr_frags) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001043 eth_tx_fill_frag_descs(mp, skb);
1044
1045 length = skb_headlen(skb);
Al Viro05980772006-05-30 23:59:09 -04001046 mp->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001047 } else {
1048 cmd_sts |= ETH_ZERO_PADDING |
1049 ETH_TX_LAST_DESC |
1050 ETH_TX_ENABLE_INTERRUPT;
1051 length = skb->len;
1052 mp->tx_skb[tx_index] = skb;
1053 }
1054
1055 desc->byte_cnt = length;
1056 desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001057
Patrick McHardy84fa7932006-08-29 16:44:56 -07001058 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Byron Bradley324ff2c2008-02-04 23:47:15 -08001059 BUG_ON(skb->protocol != htons(ETH_P_IP));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001060
1061 cmd_sts |= ETH_GEN_TCP_UDP_CHECKSUM |
1062 ETH_GEN_IP_V_4_CHECKSUM |
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001063 ip_hdr(skb)->ihl << ETH_TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001064
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001065 switch (ip_hdr(skb)->protocol) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001066 case IPPROTO_UDP:
1067 cmd_sts |= ETH_UDP_FRAME;
Byron Bradley324ff2c2008-02-04 23:47:15 -08001068 desc->l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001069 break;
1070 case IPPROTO_TCP:
Byron Bradley324ff2c2008-02-04 23:47:15 -08001071 desc->l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001072 break;
1073 default:
1074 BUG();
1075 }
1076 } else {
1077 /* Errata BTS #50, IHL must be 5 if no HW checksum */
1078 cmd_sts |= 5 << ETH_TX_IHL_SHIFT;
1079 desc->l4i_chk = 0;
1080 }
1081
1082 /* ensure all other descriptors are written before first cmd_sts */
1083 wmb();
1084 desc->cmd_sts = cmd_sts;
1085
1086 /* ensure all descriptors are written before poking hardware */
1087 wmb();
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001088 mv643xx_eth_port_enable_tx(mp, ETH_TX_QUEUES_ENABLED);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001089
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001090 mp->tx_desc_count += nr_frags + 1;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001091}
1092
1093/**
1094 * mv643xx_eth_start_xmit - queue an skb to the hardware for transmission
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 */
1097static int mv643xx_eth_start_xmit(struct sk_buff *skb, struct net_device *dev)
1098{
1099 struct mv643xx_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001100 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001103 BUG_ON(netif_queue_stopped(dev));
Dale Farnsworth94843562006-04-11 18:24:26 -07001104
Lennert Buytenhek4d64e712008-03-18 11:32:41 -07001105 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
1106 stats->tx_dropped++;
1107 printk(KERN_DEBUG "%s: failed to linearize tiny "
1108 "unaligned fragment\n", dev->name);
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -07001109 return NETDEV_TX_BUSY;
Dale Farnsworth94843562006-04-11 18:24:26 -07001110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 spin_lock_irqsave(&mp->lock, flags);
1113
Lennert Buytenhek4d64e712008-03-18 11:32:41 -07001114 if (mp->tx_ring_size - mp->tx_desc_count < MAX_DESCS_PER_SKB) {
1115 printk(KERN_ERR "%s: transmit with queue full\n", dev->name);
1116 netif_stop_queue(dev);
1117 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -07001118 return NETDEV_TX_BUSY;
Lennert Buytenhek4d64e712008-03-18 11:32:41 -07001119 }
1120
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001121 eth_tx_submit_descs_for_skb(mp, skb);
Dale Farnsworthe7e381f2007-09-14 11:23:16 -07001122 stats->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 stats->tx_packets++;
1124 dev->trans_start = jiffies;
1125
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001126 if (mp->tx_ring_size - mp->tx_desc_count < MAX_DESCS_PER_SKB)
1127 netif_stop_queue(dev);
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 spin_unlock_irqrestore(&mp->lock, flags);
1130
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -07001131 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001134
1135/* mii management interface *************************************************/
1136static int ethernet_phy_get(struct mv643xx_private *mp);
1137
1138/*
1139 * eth_port_read_smi_reg - Read PHY registers
1140 *
1141 * DESCRIPTION:
1142 * This routine utilize the SMI interface to interact with the PHY in
1143 * order to perform PHY register read.
1144 *
1145 * INPUT:
1146 * struct mv643xx_private *mp Ethernet Port.
1147 * unsigned int phy_reg PHY register address offset.
1148 * unsigned int *value Register value buffer.
1149 *
1150 * OUTPUT:
1151 * Write the value of a specified PHY register into given buffer.
1152 *
1153 * RETURN:
1154 * false if the PHY is busy or read data is not in valid state.
1155 * true otherwise.
1156 *
1157 */
1158static void eth_port_read_smi_reg(struct mv643xx_private *mp,
1159 unsigned int phy_reg, unsigned int *value)
1160{
1161 void __iomem *smi_reg = mp->shared_smi->eth_base + SMI_REG;
1162 int phy_addr = ethernet_phy_get(mp);
1163 unsigned long flags;
1164 int i;
1165
1166 /* the SMI register is a shared resource */
1167 spin_lock_irqsave(&mp->shared_smi->phy_lock, flags);
1168
1169 /* wait for the SMI register to become available */
1170 for (i = 0; readl(smi_reg) & ETH_SMI_BUSY; i++) {
1171 if (i == PHY_WAIT_ITERATIONS) {
1172 printk("%s: PHY busy timeout\n", mp->dev->name);
1173 goto out;
1174 }
1175 udelay(PHY_WAIT_MICRO_SECONDS);
1176 }
1177
1178 writel((phy_addr << 16) | (phy_reg << 21) | ETH_SMI_OPCODE_READ,
1179 smi_reg);
1180
1181 /* now wait for the data to be valid */
1182 for (i = 0; !(readl(smi_reg) & ETH_SMI_READ_VALID); i++) {
1183 if (i == PHY_WAIT_ITERATIONS) {
1184 printk("%s: PHY read timeout\n", mp->dev->name);
1185 goto out;
1186 }
1187 udelay(PHY_WAIT_MICRO_SECONDS);
1188 }
1189
1190 *value = readl(smi_reg) & 0xffff;
1191out:
1192 spin_unlock_irqrestore(&mp->shared_smi->phy_lock, flags);
1193}
1194
1195/*
1196 * eth_port_write_smi_reg - Write to PHY registers
1197 *
1198 * DESCRIPTION:
1199 * This routine utilize the SMI interface to interact with the PHY in
1200 * order to perform writes to PHY registers.
1201 *
1202 * INPUT:
1203 * struct mv643xx_private *mp Ethernet Port.
1204 * unsigned int phy_reg PHY register address offset.
1205 * unsigned int value Register value.
1206 *
1207 * OUTPUT:
1208 * Write the given value to the specified PHY register.
1209 *
1210 * RETURN:
1211 * false if the PHY is busy.
1212 * true otherwise.
1213 *
1214 */
1215static void eth_port_write_smi_reg(struct mv643xx_private *mp,
1216 unsigned int phy_reg, unsigned int value)
1217{
1218 void __iomem *smi_reg = mp->shared_smi->eth_base + SMI_REG;
1219 int phy_addr = ethernet_phy_get(mp);
1220 unsigned long flags;
1221 int i;
1222
1223 /* the SMI register is a shared resource */
1224 spin_lock_irqsave(&mp->shared_smi->phy_lock, flags);
1225
1226 /* wait for the SMI register to become available */
1227 for (i = 0; readl(smi_reg) & ETH_SMI_BUSY; i++) {
1228 if (i == PHY_WAIT_ITERATIONS) {
1229 printk("%s: PHY busy timeout\n", mp->dev->name);
1230 goto out;
1231 }
1232 udelay(PHY_WAIT_MICRO_SECONDS);
1233 }
1234
1235 writel((phy_addr << 16) | (phy_reg << 21) |
1236 ETH_SMI_OPCODE_WRITE | (value & 0xffff), smi_reg);
1237out:
1238 spin_unlock_irqrestore(&mp->shared_smi->phy_lock, flags);
1239}
1240
1241
1242/* mib counters *************************************************************/
1243/*
1244 * eth_clear_mib_counters - Clear all MIB counters
1245 *
1246 * DESCRIPTION:
1247 * This function clears all MIB counters of a specific ethernet port.
1248 * A read from the MIB counter will reset the counter.
1249 *
1250 * INPUT:
1251 * struct mv643xx_private *mp Ethernet Port.
1252 *
1253 * OUTPUT:
1254 * After reading all MIB counters, the counters resets.
1255 *
1256 * RETURN:
1257 * MIB counter value.
1258 *
1259 */
1260static void eth_clear_mib_counters(struct mv643xx_private *mp)
1261{
1262 unsigned int port_num = mp->port_num;
1263 int i;
1264
1265 /* Perform dummy reads from MIB counters */
1266 for (i = ETH_MIB_GOOD_OCTETS_RECEIVED_LOW; i < ETH_MIB_LATE_COLLISION;
1267 i += 4)
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001268 rdl(mp, MIB_COUNTERS(port_num) + i);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001269}
1270
1271static inline u32 read_mib(struct mv643xx_private *mp, int offset)
1272{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001273 return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001274}
1275
1276static void eth_update_mib_counters(struct mv643xx_private *mp)
1277{
1278 struct mv643xx_mib_counters *p = &mp->mib_counters;
1279 int offset;
1280
1281 p->good_octets_received +=
1282 read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_LOW);
1283 p->good_octets_received +=
1284 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH) << 32;
1285
1286 for (offset = ETH_MIB_BAD_OCTETS_RECEIVED;
1287 offset <= ETH_MIB_FRAMES_1024_TO_MAX_OCTETS;
1288 offset += 4)
1289 *(u32 *)((char *)p + offset) += read_mib(mp, offset);
1290
1291 p->good_octets_sent += read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_LOW);
1292 p->good_octets_sent +=
1293 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_HIGH) << 32;
1294
1295 for (offset = ETH_MIB_GOOD_FRAMES_SENT;
1296 offset <= ETH_MIB_LATE_COLLISION;
1297 offset += 4)
1298 *(u32 *)((char *)p + offset) += read_mib(mp, offset);
1299}
1300
1301
1302/* ethtool ******************************************************************/
1303struct mv643xx_stats {
1304 char stat_string[ETH_GSTRING_LEN];
1305 int sizeof_stat;
1306 int stat_offset;
1307};
1308
1309#define MV643XX_STAT(m) FIELD_SIZEOF(struct mv643xx_private, m), \
1310 offsetof(struct mv643xx_private, m)
1311
1312static const struct mv643xx_stats mv643xx_gstrings_stats[] = {
1313 { "rx_packets", MV643XX_STAT(stats.rx_packets) },
1314 { "tx_packets", MV643XX_STAT(stats.tx_packets) },
1315 { "rx_bytes", MV643XX_STAT(stats.rx_bytes) },
1316 { "tx_bytes", MV643XX_STAT(stats.tx_bytes) },
1317 { "rx_errors", MV643XX_STAT(stats.rx_errors) },
1318 { "tx_errors", MV643XX_STAT(stats.tx_errors) },
1319 { "rx_dropped", MV643XX_STAT(stats.rx_dropped) },
1320 { "tx_dropped", MV643XX_STAT(stats.tx_dropped) },
1321 { "good_octets_received", MV643XX_STAT(mib_counters.good_octets_received) },
1322 { "bad_octets_received", MV643XX_STAT(mib_counters.bad_octets_received) },
1323 { "internal_mac_transmit_err", MV643XX_STAT(mib_counters.internal_mac_transmit_err) },
1324 { "good_frames_received", MV643XX_STAT(mib_counters.good_frames_received) },
1325 { "bad_frames_received", MV643XX_STAT(mib_counters.bad_frames_received) },
1326 { "broadcast_frames_received", MV643XX_STAT(mib_counters.broadcast_frames_received) },
1327 { "multicast_frames_received", MV643XX_STAT(mib_counters.multicast_frames_received) },
1328 { "frames_64_octets", MV643XX_STAT(mib_counters.frames_64_octets) },
1329 { "frames_65_to_127_octets", MV643XX_STAT(mib_counters.frames_65_to_127_octets) },
1330 { "frames_128_to_255_octets", MV643XX_STAT(mib_counters.frames_128_to_255_octets) },
1331 { "frames_256_to_511_octets", MV643XX_STAT(mib_counters.frames_256_to_511_octets) },
1332 { "frames_512_to_1023_octets", MV643XX_STAT(mib_counters.frames_512_to_1023_octets) },
1333 { "frames_1024_to_max_octets", MV643XX_STAT(mib_counters.frames_1024_to_max_octets) },
1334 { "good_octets_sent", MV643XX_STAT(mib_counters.good_octets_sent) },
1335 { "good_frames_sent", MV643XX_STAT(mib_counters.good_frames_sent) },
1336 { "excessive_collision", MV643XX_STAT(mib_counters.excessive_collision) },
1337 { "multicast_frames_sent", MV643XX_STAT(mib_counters.multicast_frames_sent) },
1338 { "broadcast_frames_sent", MV643XX_STAT(mib_counters.broadcast_frames_sent) },
1339 { "unrec_mac_control_received", MV643XX_STAT(mib_counters.unrec_mac_control_received) },
1340 { "fc_sent", MV643XX_STAT(mib_counters.fc_sent) },
1341 { "good_fc_received", MV643XX_STAT(mib_counters.good_fc_received) },
1342 { "bad_fc_received", MV643XX_STAT(mib_counters.bad_fc_received) },
1343 { "undersize_received", MV643XX_STAT(mib_counters.undersize_received) },
1344 { "fragments_received", MV643XX_STAT(mib_counters.fragments_received) },
1345 { "oversize_received", MV643XX_STAT(mib_counters.oversize_received) },
1346 { "jabber_received", MV643XX_STAT(mib_counters.jabber_received) },
1347 { "mac_receive_error", MV643XX_STAT(mib_counters.mac_receive_error) },
1348 { "bad_crc_event", MV643XX_STAT(mib_counters.bad_crc_event) },
1349 { "collision", MV643XX_STAT(mib_counters.collision) },
1350 { "late_collision", MV643XX_STAT(mib_counters.late_collision) },
1351};
1352
1353#define MV643XX_STATS_LEN ARRAY_SIZE(mv643xx_gstrings_stats)
1354
1355static int mv643xx_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1356{
1357 struct mv643xx_private *mp = netdev_priv(dev);
1358 int err;
1359
1360 spin_lock_irq(&mp->lock);
1361 err = mii_ethtool_gset(&mp->mii, cmd);
1362 spin_unlock_irq(&mp->lock);
1363
1364 /* The PHY may support 1000baseT_Half, but the mv643xx does not */
1365 cmd->supported &= ~SUPPORTED_1000baseT_Half;
1366 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1367
1368 return err;
1369}
1370
1371static int mv643xx_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1372{
1373 struct mv643xx_private *mp = netdev_priv(dev);
1374 int err;
1375
1376 spin_lock_irq(&mp->lock);
1377 err = mii_ethtool_sset(&mp->mii, cmd);
1378 spin_unlock_irq(&mp->lock);
1379
1380 return err;
1381}
1382
1383static void mv643xx_get_drvinfo(struct net_device *netdev,
1384 struct ethtool_drvinfo *drvinfo)
1385{
1386 strncpy(drvinfo->driver, mv643xx_driver_name, 32);
1387 strncpy(drvinfo->version, mv643xx_driver_version, 32);
1388 strncpy(drvinfo->fw_version, "N/A", 32);
1389 strncpy(drvinfo->bus_info, "mv643xx", 32);
1390 drvinfo->n_stats = MV643XX_STATS_LEN;
1391}
1392
1393static int mv643xx_eth_nway_restart(struct net_device *dev)
1394{
1395 struct mv643xx_private *mp = netdev_priv(dev);
1396
1397 return mii_nway_restart(&mp->mii);
1398}
1399
1400static u32 mv643xx_eth_get_link(struct net_device *dev)
1401{
1402 struct mv643xx_private *mp = netdev_priv(dev);
1403
1404 return mii_link_ok(&mp->mii);
1405}
1406
1407static void mv643xx_get_strings(struct net_device *netdev, uint32_t stringset,
1408 uint8_t *data)
1409{
1410 int i;
1411
1412 switch(stringset) {
1413 case ETH_SS_STATS:
1414 for (i=0; i < MV643XX_STATS_LEN; i++) {
1415 memcpy(data + i * ETH_GSTRING_LEN,
1416 mv643xx_gstrings_stats[i].stat_string,
1417 ETH_GSTRING_LEN);
1418 }
1419 break;
1420 }
1421}
1422
1423static void mv643xx_get_ethtool_stats(struct net_device *netdev,
1424 struct ethtool_stats *stats, uint64_t *data)
1425{
1426 struct mv643xx_private *mp = netdev->priv;
1427 int i;
1428
1429 eth_update_mib_counters(mp);
1430
1431 for (i = 0; i < MV643XX_STATS_LEN; i++) {
1432 char *p = (char *)mp+mv643xx_gstrings_stats[i].stat_offset;
1433 data[i] = (mv643xx_gstrings_stats[i].sizeof_stat ==
1434 sizeof(uint64_t)) ? *(uint64_t *)p : *(uint32_t *)p;
1435 }
1436}
1437
1438static int mv643xx_get_sset_count(struct net_device *netdev, int sset)
1439{
1440 switch (sset) {
1441 case ETH_SS_STATS:
1442 return MV643XX_STATS_LEN;
1443 default:
1444 return -EOPNOTSUPP;
1445 }
1446}
1447
1448static const struct ethtool_ops mv643xx_ethtool_ops = {
1449 .get_settings = mv643xx_get_settings,
1450 .set_settings = mv643xx_set_settings,
1451 .get_drvinfo = mv643xx_get_drvinfo,
1452 .get_link = mv643xx_eth_get_link,
1453 .set_sg = ethtool_op_set_sg,
1454 .get_sset_count = mv643xx_get_sset_count,
1455 .get_ethtool_stats = mv643xx_get_ethtool_stats,
1456 .get_strings = mv643xx_get_strings,
1457 .nway_reset = mv643xx_eth_nway_restart,
1458};
1459
1460
1461/* address handling *********************************************************/
1462/*
1463 * eth_port_uc_addr_get - Read the MAC address from the port's hw registers
1464 */
1465static void eth_port_uc_addr_get(struct mv643xx_private *mp,
1466 unsigned char *p_addr)
1467{
1468 unsigned int port_num = mp->port_num;
1469 unsigned int mac_h;
1470 unsigned int mac_l;
1471
1472 mac_h = rdl(mp, MAC_ADDR_HIGH(port_num));
1473 mac_l = rdl(mp, MAC_ADDR_LOW(port_num));
1474
1475 p_addr[0] = (mac_h >> 24) & 0xff;
1476 p_addr[1] = (mac_h >> 16) & 0xff;
1477 p_addr[2] = (mac_h >> 8) & 0xff;
1478 p_addr[3] = mac_h & 0xff;
1479 p_addr[4] = (mac_l >> 8) & 0xff;
1480 p_addr[5] = mac_l & 0xff;
1481}
1482
1483/*
1484 * eth_port_init_mac_tables - Clear all entrance in the UC, SMC and OMC tables
1485 *
1486 * DESCRIPTION:
1487 * Go through all the DA filter tables (Unicast, Special Multicast &
1488 * Other Multicast) and set each entry to 0.
1489 *
1490 * INPUT:
1491 * struct mv643xx_private *mp Ethernet Port.
1492 *
1493 * OUTPUT:
1494 * Multicast and Unicast packets are rejected.
1495 *
1496 * RETURN:
1497 * None.
1498 */
1499static void eth_port_init_mac_tables(struct mv643xx_private *mp)
1500{
1501 unsigned int port_num = mp->port_num;
1502 int table_index;
1503
1504 /* Clear DA filter unicast table (Ex_dFUT) */
1505 for (table_index = 0; table_index <= 0xC; table_index += 4)
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001506 wrl(mp, UNICAST_TABLE(port_num) + table_index, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001507
1508 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
1509 /* Clear DA filter special multicast table (Ex_dFSMT) */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001510 wrl(mp, SPECIAL_MCAST_TABLE(port_num) + table_index, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001511 /* Clear DA filter other multicast table (Ex_dFOMT) */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001512 wrl(mp, OTHER_MCAST_TABLE(port_num) + table_index, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001513 }
1514}
1515
1516/*
1517 * The entries in each table are indexed by a hash of a packet's MAC
1518 * address. One bit in each entry determines whether the packet is
1519 * accepted. There are 4 entries (each 8 bits wide) in each register
1520 * of the table. The bits in each entry are defined as follows:
1521 * 0 Accept=1, Drop=0
1522 * 3-1 Queue (ETH_Q0=0)
1523 * 7-4 Reserved = 0;
1524 */
1525static void eth_port_set_filter_table_entry(struct mv643xx_private *mp,
1526 int table, unsigned char entry)
1527{
1528 unsigned int table_reg;
1529 unsigned int tbl_offset;
1530 unsigned int reg_offset;
1531
1532 tbl_offset = (entry / 4) * 4; /* Register offset of DA table entry */
1533 reg_offset = entry % 4; /* Entry offset within the register */
1534
1535 /* Set "accepts frame bit" at specified table entry */
1536 table_reg = rdl(mp, table + tbl_offset);
1537 table_reg |= 0x01 << (8 * reg_offset);
1538 wrl(mp, table + tbl_offset, table_reg);
1539}
1540
1541/*
1542 * eth_port_uc_addr_set - Write a MAC address into the port's hw registers
1543 */
1544static void eth_port_uc_addr_set(struct mv643xx_private *mp,
1545 unsigned char *p_addr)
1546{
1547 unsigned int port_num = mp->port_num;
1548 unsigned int mac_h;
1549 unsigned int mac_l;
1550 int table;
1551
1552 mac_l = (p_addr[4] << 8) | (p_addr[5]);
1553 mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) |
1554 (p_addr[3] << 0);
1555
1556 wrl(mp, MAC_ADDR_LOW(port_num), mac_l);
1557 wrl(mp, MAC_ADDR_HIGH(port_num), mac_h);
1558
1559 /* Accept frames with this address */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001560 table = UNICAST_TABLE(port_num);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001561 eth_port_set_filter_table_entry(mp, table, p_addr[5] & 0x0f);
1562}
1563
1564/*
1565 * mv643xx_eth_update_mac_address
1566 *
1567 * Update the MAC address of the port in the address table
1568 *
1569 * Input : pointer to ethernet interface network device structure
1570 * Output : N/A
1571 */
1572static void mv643xx_eth_update_mac_address(struct net_device *dev)
1573{
1574 struct mv643xx_private *mp = netdev_priv(dev);
1575
1576 eth_port_init_mac_tables(mp);
1577 eth_port_uc_addr_set(mp, dev->dev_addr);
1578}
1579
1580/*
1581 * mv643xx_eth_set_mac_address
1582 *
1583 * Change the interface's mac address.
1584 * No special hardware thing should be done because interface is always
1585 * put in promiscuous mode.
1586 *
1587 * Input : pointer to ethernet interface network device structure and
1588 * a pointer to the designated entry to be added to the cache.
1589 * Output : zero upon success, negative upon failure
1590 */
1591static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
1592{
1593 int i;
1594
1595 for (i = 0; i < 6; i++)
1596 /* +2 is for the offset of the HW addr type */
1597 dev->dev_addr[i] = ((unsigned char *)addr)[i + 2];
1598 mv643xx_eth_update_mac_address(dev);
1599 return 0;
1600}
1601
1602/*
1603 * eth_port_mc_addr - Multicast address settings.
1604 *
1605 * The MV device supports multicast using two tables:
1606 * 1) Special Multicast Table for MAC addresses of the form
1607 * 0x01-00-5E-00-00-XX (where XX is between 0x00 and 0x_FF).
1608 * The MAC DA[7:0] bits are used as a pointer to the Special Multicast
1609 * Table entries in the DA-Filter table.
1610 * 2) Other Multicast Table for multicast of another type. A CRC-8bit
1611 * is used as an index to the Other Multicast Table entries in the
1612 * DA-Filter table. This function calculates the CRC-8bit value.
1613 * In either case, eth_port_set_filter_table_entry() is then called
1614 * to set to set the actual table entry.
1615 */
1616static void eth_port_mc_addr(struct mv643xx_private *mp, unsigned char *p_addr)
1617{
1618 unsigned int port_num = mp->port_num;
1619 unsigned int mac_h;
1620 unsigned int mac_l;
1621 unsigned char crc_result = 0;
1622 int table;
1623 int mac_array[48];
1624 int crc[8];
1625 int i;
1626
1627 if ((p_addr[0] == 0x01) && (p_addr[1] == 0x00) &&
1628 (p_addr[2] == 0x5E) && (p_addr[3] == 0x00) && (p_addr[4] == 0x00)) {
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001629 table = SPECIAL_MCAST_TABLE(port_num);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001630 eth_port_set_filter_table_entry(mp, table, p_addr[5]);
1631 return;
1632 }
1633
1634 /* Calculate CRC-8 out of the given address */
1635 mac_h = (p_addr[0] << 8) | (p_addr[1]);
1636 mac_l = (p_addr[2] << 24) | (p_addr[3] << 16) |
1637 (p_addr[4] << 8) | (p_addr[5] << 0);
1638
1639 for (i = 0; i < 32; i++)
1640 mac_array[i] = (mac_l >> i) & 0x1;
1641 for (i = 32; i < 48; i++)
1642 mac_array[i] = (mac_h >> (i - 32)) & 0x1;
1643
1644 crc[0] = mac_array[45] ^ mac_array[43] ^ mac_array[40] ^ mac_array[39] ^
1645 mac_array[35] ^ mac_array[34] ^ mac_array[31] ^ mac_array[30] ^
1646 mac_array[28] ^ mac_array[23] ^ mac_array[21] ^ mac_array[19] ^
1647 mac_array[18] ^ mac_array[16] ^ mac_array[14] ^ mac_array[12] ^
1648 mac_array[8] ^ mac_array[7] ^ mac_array[6] ^ mac_array[0];
1649
1650 crc[1] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
1651 mac_array[41] ^ mac_array[39] ^ mac_array[36] ^ mac_array[34] ^
1652 mac_array[32] ^ mac_array[30] ^ mac_array[29] ^ mac_array[28] ^
1653 mac_array[24] ^ mac_array[23] ^ mac_array[22] ^ mac_array[21] ^
1654 mac_array[20] ^ mac_array[18] ^ mac_array[17] ^ mac_array[16] ^
1655 mac_array[15] ^ mac_array[14] ^ mac_array[13] ^ mac_array[12] ^
1656 mac_array[9] ^ mac_array[6] ^ mac_array[1] ^ mac_array[0];
1657
1658 crc[2] = mac_array[47] ^ mac_array[46] ^ mac_array[44] ^ mac_array[43] ^
1659 mac_array[42] ^ mac_array[39] ^ mac_array[37] ^ mac_array[34] ^
1660 mac_array[33] ^ mac_array[29] ^ mac_array[28] ^ mac_array[25] ^
1661 mac_array[24] ^ mac_array[22] ^ mac_array[17] ^ mac_array[15] ^
1662 mac_array[13] ^ mac_array[12] ^ mac_array[10] ^ mac_array[8] ^
1663 mac_array[6] ^ mac_array[2] ^ mac_array[1] ^ mac_array[0];
1664
1665 crc[3] = mac_array[47] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
1666 mac_array[40] ^ mac_array[38] ^ mac_array[35] ^ mac_array[34] ^
1667 mac_array[30] ^ mac_array[29] ^ mac_array[26] ^ mac_array[25] ^
1668 mac_array[23] ^ mac_array[18] ^ mac_array[16] ^ mac_array[14] ^
1669 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[7] ^
1670 mac_array[3] ^ mac_array[2] ^ mac_array[1];
1671
1672 crc[4] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[41] ^
1673 mac_array[39] ^ mac_array[36] ^ mac_array[35] ^ mac_array[31] ^
1674 mac_array[30] ^ mac_array[27] ^ mac_array[26] ^ mac_array[24] ^
1675 mac_array[19] ^ mac_array[17] ^ mac_array[15] ^ mac_array[14] ^
1676 mac_array[12] ^ mac_array[10] ^ mac_array[8] ^ mac_array[4] ^
1677 mac_array[3] ^ mac_array[2];
1678
1679 crc[5] = mac_array[47] ^ mac_array[46] ^ mac_array[45] ^ mac_array[42] ^
1680 mac_array[40] ^ mac_array[37] ^ mac_array[36] ^ mac_array[32] ^
1681 mac_array[31] ^ mac_array[28] ^ mac_array[27] ^ mac_array[25] ^
1682 mac_array[20] ^ mac_array[18] ^ mac_array[16] ^ mac_array[15] ^
1683 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[5] ^
1684 mac_array[4] ^ mac_array[3];
1685
1686 crc[6] = mac_array[47] ^ mac_array[46] ^ mac_array[43] ^ mac_array[41] ^
1687 mac_array[38] ^ mac_array[37] ^ mac_array[33] ^ mac_array[32] ^
1688 mac_array[29] ^ mac_array[28] ^ mac_array[26] ^ mac_array[21] ^
1689 mac_array[19] ^ mac_array[17] ^ mac_array[16] ^ mac_array[14] ^
1690 mac_array[12] ^ mac_array[10] ^ mac_array[6] ^ mac_array[5] ^
1691 mac_array[4];
1692
1693 crc[7] = mac_array[47] ^ mac_array[44] ^ mac_array[42] ^ mac_array[39] ^
1694 mac_array[38] ^ mac_array[34] ^ mac_array[33] ^ mac_array[30] ^
1695 mac_array[29] ^ mac_array[27] ^ mac_array[22] ^ mac_array[20] ^
1696 mac_array[18] ^ mac_array[17] ^ mac_array[15] ^ mac_array[13] ^
1697 mac_array[11] ^ mac_array[7] ^ mac_array[6] ^ mac_array[5];
1698
1699 for (i = 0; i < 8; i++)
1700 crc_result = crc_result | (crc[i] << i);
1701
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001702 table = OTHER_MCAST_TABLE(port_num);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001703 eth_port_set_filter_table_entry(mp, table, crc_result);
1704}
1705
1706/*
1707 * Set the entire multicast list based on dev->mc_list.
1708 */
1709static void eth_port_set_multicast_list(struct net_device *dev)
1710{
1711
1712 struct dev_mc_list *mc_list;
1713 int i;
1714 int table_index;
1715 struct mv643xx_private *mp = netdev_priv(dev);
1716 unsigned int eth_port_num = mp->port_num;
1717
1718 /* If the device is in promiscuous mode or in all multicast mode,
1719 * we will fully populate both multicast tables with accept.
1720 * This is guaranteed to yield a match on all multicast addresses...
1721 */
1722 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI)) {
1723 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
1724 /* Set all entries in DA filter special multicast
1725 * table (Ex_dFSMT)
1726 * Set for ETH_Q0 for now
1727 * Bits
1728 * 0 Accept=1, Drop=0
1729 * 3-1 Queue ETH_Q0=0
1730 * 7-4 Reserved = 0;
1731 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001732 wrl(mp, SPECIAL_MCAST_TABLE(eth_port_num) + table_index, 0x01010101);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001733
1734 /* Set all entries in DA filter other multicast
1735 * table (Ex_dFOMT)
1736 * Set for ETH_Q0 for now
1737 * Bits
1738 * 0 Accept=1, Drop=0
1739 * 3-1 Queue ETH_Q0=0
1740 * 7-4 Reserved = 0;
1741 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001742 wrl(mp, OTHER_MCAST_TABLE(eth_port_num) + table_index, 0x01010101);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001743 }
1744 return;
1745 }
1746
1747 /* We will clear out multicast tables every time we get the list.
1748 * Then add the entire new list...
1749 */
1750 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
1751 /* Clear DA filter special multicast table (Ex_dFSMT) */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001752 wrl(mp, SPECIAL_MCAST_TABLE(eth_port_num) + table_index, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001753
1754 /* Clear DA filter other multicast table (Ex_dFOMT) */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001755 wrl(mp, OTHER_MCAST_TABLE(eth_port_num) + table_index, 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001756 }
1757
1758 /* Get pointer to net_device multicast list and add each one... */
1759 for (i = 0, mc_list = dev->mc_list;
1760 (i < 256) && (mc_list != NULL) && (i < dev->mc_count);
1761 i++, mc_list = mc_list->next)
1762 if (mc_list->dmi_addrlen == 6)
1763 eth_port_mc_addr(mp, mc_list->dmi_addr);
1764}
1765
1766/*
1767 * mv643xx_eth_set_rx_mode
1768 *
1769 * Change from promiscuos to regular rx mode
1770 *
1771 * Input : pointer to ethernet interface network device structure
1772 * Output : N/A
1773 */
1774static void mv643xx_eth_set_rx_mode(struct net_device *dev)
1775{
1776 struct mv643xx_private *mp = netdev_priv(dev);
1777 u32 config_reg;
1778
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001779 config_reg = rdl(mp, PORT_CONFIG(mp->port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001780 if (dev->flags & IFF_PROMISC)
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02001781 config_reg |= UNICAST_PROMISCUOUS_MODE;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001782 else
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02001783 config_reg &= ~UNICAST_PROMISCUOUS_MODE;
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001784 wrl(mp, PORT_CONFIG(mp->port_num), config_reg);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001785
1786 eth_port_set_multicast_list(dev);
1787}
1788
1789
1790/* rx/tx queue initialisation ***********************************************/
1791/*
1792 * ether_init_rx_desc_ring - Curve a Rx chain desc list and buffer in memory.
1793 *
1794 * DESCRIPTION:
1795 * This function prepares a Rx chained list of descriptors and packet
1796 * buffers in a form of a ring. The routine must be called after port
1797 * initialization routine and before port start routine.
1798 * The Ethernet SDMA engine uses CPU bus addresses to access the various
1799 * devices in the system (i.e. DRAM). This function uses the ethernet
1800 * struct 'virtual to physical' routine (set by the user) to set the ring
1801 * with physical addresses.
1802 *
1803 * INPUT:
1804 * struct mv643xx_private *mp Ethernet Port Control srtuct.
1805 *
1806 * OUTPUT:
1807 * The routine updates the Ethernet port control struct with information
1808 * regarding the Rx descriptors and buffers.
1809 *
1810 * RETURN:
1811 * None.
1812 */
1813static void ether_init_rx_desc_ring(struct mv643xx_private *mp)
1814{
1815 volatile struct eth_rx_desc *p_rx_desc;
1816 int rx_desc_num = mp->rx_ring_size;
1817 int i;
1818
1819 /* initialize the next_desc_ptr links in the Rx descriptors ring */
1820 p_rx_desc = (struct eth_rx_desc *)mp->p_rx_desc_area;
1821 for (i = 0; i < rx_desc_num; i++) {
1822 p_rx_desc[i].next_desc_ptr = mp->rx_desc_dma +
1823 ((i + 1) % rx_desc_num) * sizeof(struct eth_rx_desc);
1824 }
1825
1826 /* Save Rx desc pointer to driver struct. */
1827 mp->rx_curr_desc_q = 0;
1828 mp->rx_used_desc_q = 0;
1829
1830 mp->rx_desc_area_size = rx_desc_num * sizeof(struct eth_rx_desc);
1831}
1832
1833static void mv643xx_eth_free_rx_rings(struct net_device *dev)
1834{
1835 struct mv643xx_private *mp = netdev_priv(dev);
1836 int curr;
1837
1838 /* Stop RX Queues */
1839 mv643xx_eth_port_disable_rx(mp);
1840
1841 /* Free preallocated skb's on RX rings */
1842 for (curr = 0; mp->rx_desc_count && curr < mp->rx_ring_size; curr++) {
1843 if (mp->rx_skb[curr]) {
1844 dev_kfree_skb(mp->rx_skb[curr]);
1845 mp->rx_desc_count--;
1846 }
1847 }
1848
1849 if (mp->rx_desc_count)
1850 printk(KERN_ERR
1851 "%s: Error in freeing Rx Ring. %d skb's still"
1852 " stuck in RX Ring - ignoring them\n", dev->name,
1853 mp->rx_desc_count);
1854 /* Free RX ring */
1855 if (mp->rx_sram_size)
1856 iounmap(mp->p_rx_desc_area);
1857 else
1858 dma_free_coherent(NULL, mp->rx_desc_area_size,
1859 mp->p_rx_desc_area, mp->rx_desc_dma);
1860}
1861
1862/*
1863 * ether_init_tx_desc_ring - Curve a Tx chain desc list and buffer in memory.
1864 *
1865 * DESCRIPTION:
1866 * This function prepares a Tx chained list of descriptors and packet
1867 * buffers in a form of a ring. The routine must be called after port
1868 * initialization routine and before port start routine.
1869 * The Ethernet SDMA engine uses CPU bus addresses to access the various
1870 * devices in the system (i.e. DRAM). This function uses the ethernet
1871 * struct 'virtual to physical' routine (set by the user) to set the ring
1872 * with physical addresses.
1873 *
1874 * INPUT:
1875 * struct mv643xx_private *mp Ethernet Port Control srtuct.
1876 *
1877 * OUTPUT:
1878 * The routine updates the Ethernet port control struct with information
1879 * regarding the Tx descriptors and buffers.
1880 *
1881 * RETURN:
1882 * None.
1883 */
1884static void ether_init_tx_desc_ring(struct mv643xx_private *mp)
1885{
1886 int tx_desc_num = mp->tx_ring_size;
1887 struct eth_tx_desc *p_tx_desc;
1888 int i;
1889
1890 /* Initialize the next_desc_ptr links in the Tx descriptors ring */
1891 p_tx_desc = (struct eth_tx_desc *)mp->p_tx_desc_area;
1892 for (i = 0; i < tx_desc_num; i++) {
1893 p_tx_desc[i].next_desc_ptr = mp->tx_desc_dma +
1894 ((i + 1) % tx_desc_num) * sizeof(struct eth_tx_desc);
1895 }
1896
1897 mp->tx_curr_desc_q = 0;
1898 mp->tx_used_desc_q = 0;
1899
1900 mp->tx_desc_area_size = tx_desc_num * sizeof(struct eth_tx_desc);
1901}
1902
1903/**
1904 * mv643xx_eth_free_tx_descs - Free the tx desc data for completed descriptors
1905 *
1906 * If force is non-zero, frees uncompleted descriptors as well
1907 */
1908static int mv643xx_eth_free_tx_descs(struct net_device *dev, int force)
1909{
1910 struct mv643xx_private *mp = netdev_priv(dev);
1911 struct eth_tx_desc *desc;
1912 u32 cmd_sts;
1913 struct sk_buff *skb;
1914 unsigned long flags;
1915 int tx_index;
1916 dma_addr_t addr;
1917 int count;
1918 int released = 0;
1919
1920 while (mp->tx_desc_count > 0) {
1921 spin_lock_irqsave(&mp->lock, flags);
1922
1923 /* tx_desc_count might have changed before acquiring the lock */
1924 if (mp->tx_desc_count <= 0) {
1925 spin_unlock_irqrestore(&mp->lock, flags);
1926 return released;
1927 }
1928
1929 tx_index = mp->tx_used_desc_q;
1930 desc = &mp->p_tx_desc_area[tx_index];
1931 cmd_sts = desc->cmd_sts;
1932
1933 if (!force && (cmd_sts & ETH_BUFFER_OWNED_BY_DMA)) {
1934 spin_unlock_irqrestore(&mp->lock, flags);
1935 return released;
1936 }
1937
1938 mp->tx_used_desc_q = (tx_index + 1) % mp->tx_ring_size;
1939 mp->tx_desc_count--;
1940
1941 addr = desc->buf_ptr;
1942 count = desc->byte_cnt;
1943 skb = mp->tx_skb[tx_index];
1944 if (skb)
1945 mp->tx_skb[tx_index] = NULL;
1946
1947 if (cmd_sts & ETH_ERROR_SUMMARY) {
1948 printk("%s: Error in TX\n", dev->name);
1949 dev->stats.tx_errors++;
1950 }
1951
1952 spin_unlock_irqrestore(&mp->lock, flags);
1953
1954 if (cmd_sts & ETH_TX_FIRST_DESC)
1955 dma_unmap_single(NULL, addr, count, DMA_TO_DEVICE);
1956 else
1957 dma_unmap_page(NULL, addr, count, DMA_TO_DEVICE);
1958
1959 if (skb)
1960 dev_kfree_skb_irq(skb);
1961
1962 released = 1;
1963 }
1964
1965 return released;
1966}
1967
1968static void mv643xx_eth_free_completed_tx_descs(struct net_device *dev)
1969{
1970 struct mv643xx_private *mp = netdev_priv(dev);
1971
1972 if (mv643xx_eth_free_tx_descs(dev, 0) &&
1973 mp->tx_ring_size - mp->tx_desc_count >= MAX_DESCS_PER_SKB)
1974 netif_wake_queue(dev);
1975}
1976
1977static void mv643xx_eth_free_all_tx_descs(struct net_device *dev)
1978{
1979 mv643xx_eth_free_tx_descs(dev, 1);
1980}
1981
1982static void mv643xx_eth_free_tx_rings(struct net_device *dev)
1983{
1984 struct mv643xx_private *mp = netdev_priv(dev);
1985
1986 /* Stop Tx Queues */
1987 mv643xx_eth_port_disable_tx(mp);
1988
1989 /* Free outstanding skb's on TX ring */
1990 mv643xx_eth_free_all_tx_descs(dev);
1991
1992 BUG_ON(mp->tx_used_desc_q != mp->tx_curr_desc_q);
1993
1994 /* Free TX ring */
1995 if (mp->tx_sram_size)
1996 iounmap(mp->p_tx_desc_area);
1997 else
1998 dma_free_coherent(NULL, mp->tx_desc_area_size,
1999 mp->p_tx_desc_area, mp->tx_desc_dma);
2000}
2001
2002
2003/* netdev ops and related ***************************************************/
2004static void eth_port_reset(struct mv643xx_private *mp);
2005
2006/* Set the mv643xx port configuration register for the speed/duplex mode. */
2007static void mv643xx_eth_update_pscr(struct net_device *dev,
2008 struct ethtool_cmd *ecmd)
2009{
2010 struct mv643xx_private *mp = netdev_priv(dev);
2011 int port_num = mp->port_num;
2012 u32 o_pscr, n_pscr;
2013 unsigned int queues;
2014
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002015 o_pscr = rdl(mp, PORT_SERIAL_CONTROL(port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002016 n_pscr = o_pscr;
2017
2018 /* clear speed, duplex and rx buffer size fields */
2019 n_pscr &= ~(SET_MII_SPEED_TO_100 |
2020 SET_GMII_SPEED_TO_1000 |
2021 SET_FULL_DUPLEX_MODE |
2022 MAX_RX_PACKET_MASK);
2023
2024 if (ecmd->duplex == DUPLEX_FULL)
2025 n_pscr |= SET_FULL_DUPLEX_MODE;
2026
2027 if (ecmd->speed == SPEED_1000)
2028 n_pscr |= SET_GMII_SPEED_TO_1000 |
2029 MAX_RX_PACKET_9700BYTE;
2030 else {
2031 if (ecmd->speed == SPEED_100)
2032 n_pscr |= SET_MII_SPEED_TO_100;
2033 n_pscr |= MAX_RX_PACKET_1522BYTE;
2034 }
2035
2036 if (n_pscr != o_pscr) {
2037 if ((o_pscr & SERIAL_PORT_ENABLE) == 0)
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002038 wrl(mp, PORT_SERIAL_CONTROL(port_num), n_pscr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002039 else {
2040 queues = mv643xx_eth_port_disable_tx(mp);
2041
2042 o_pscr &= ~SERIAL_PORT_ENABLE;
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002043 wrl(mp, PORT_SERIAL_CONTROL(port_num), o_pscr);
2044 wrl(mp, PORT_SERIAL_CONTROL(port_num), n_pscr);
2045 wrl(mp, PORT_SERIAL_CONTROL(port_num), n_pscr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002046 if (queues)
2047 mv643xx_eth_port_enable_tx(mp, queues);
2048 }
2049 }
2050}
2051
2052/*
2053 * mv643xx_eth_int_handler
2054 *
2055 * Main interrupt handler for the gigbit ethernet ports
2056 *
2057 * Input : irq - irq number (not used)
2058 * dev_id - a pointer to the required interface's data structure
2059 * regs - not used
2060 * Output : N/A
2061 */
2062
2063static irqreturn_t mv643xx_eth_int_handler(int irq, void *dev_id)
2064{
2065 struct net_device *dev = (struct net_device *)dev_id;
2066 struct mv643xx_private *mp = netdev_priv(dev);
2067 u32 eth_int_cause, eth_int_cause_ext = 0;
2068 unsigned int port_num = mp->port_num;
2069
2070 /* Read interrupt cause registers */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002071 eth_int_cause = rdl(mp, INT_CAUSE(port_num)) & ETH_INT_UNMASK_ALL;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002072 if (eth_int_cause & ETH_INT_CAUSE_EXT) {
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002073 eth_int_cause_ext = rdl(mp, INT_CAUSE_EXT(port_num))
2074 & ETH_INT_UNMASK_ALL_EXT;
2075 wrl(mp, INT_CAUSE_EXT(port_num), ~eth_int_cause_ext);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002076 }
2077
2078 /* PHY status changed */
2079 if (eth_int_cause_ext & (ETH_INT_CAUSE_PHY | ETH_INT_CAUSE_STATE)) {
2080 struct ethtool_cmd cmd;
2081
2082 if (mii_link_ok(&mp->mii)) {
2083 mii_ethtool_gset(&mp->mii, &cmd);
2084 mv643xx_eth_update_pscr(dev, &cmd);
2085 mv643xx_eth_port_enable_tx(mp, ETH_TX_QUEUES_ENABLED);
2086 if (!netif_carrier_ok(dev)) {
2087 netif_carrier_on(dev);
2088 if (mp->tx_ring_size - mp->tx_desc_count >=
2089 MAX_DESCS_PER_SKB)
2090 netif_wake_queue(dev);
2091 }
2092 } else if (netif_carrier_ok(dev)) {
2093 netif_stop_queue(dev);
2094 netif_carrier_off(dev);
2095 }
2096 }
2097
2098#ifdef MV643XX_NAPI
2099 if (eth_int_cause & ETH_INT_CAUSE_RX) {
2100 /* schedule the NAPI poll routine to maintain port */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002101 wrl(mp, INT_MASK(port_num), ETH_INT_MASK_ALL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002102
2103 /* wait for previous write to complete */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002104 rdl(mp, INT_MASK(port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002105
2106 netif_rx_schedule(dev, &mp->napi);
2107 }
2108#else
2109 if (eth_int_cause & ETH_INT_CAUSE_RX)
2110 mv643xx_eth_receive_queue(dev, INT_MAX);
2111#endif
2112 if (eth_int_cause_ext & ETH_INT_CAUSE_TX)
2113 mv643xx_eth_free_completed_tx_descs(dev);
2114
2115 /*
2116 * If no real interrupt occured, exit.
2117 * This can happen when using gigE interrupt coalescing mechanism.
2118 */
2119 if ((eth_int_cause == 0x0) && (eth_int_cause_ext == 0x0))
2120 return IRQ_NONE;
2121
2122 return IRQ_HANDLED;
2123}
2124
2125/*
2126 * ethernet_phy_reset - Reset Ethernet port PHY.
2127 *
2128 * DESCRIPTION:
2129 * This routine utilizes the SMI interface to reset the ethernet port PHY.
2130 *
2131 * INPUT:
2132 * struct mv643xx_private *mp Ethernet Port.
2133 *
2134 * OUTPUT:
2135 * The PHY is reset.
2136 *
2137 * RETURN:
2138 * None.
2139 *
2140 */
2141static void ethernet_phy_reset(struct mv643xx_private *mp)
2142{
2143 unsigned int phy_reg_data;
2144
2145 /* Reset the PHY */
2146 eth_port_read_smi_reg(mp, 0, &phy_reg_data);
2147 phy_reg_data |= 0x8000; /* Set bit 15 to reset the PHY */
2148 eth_port_write_smi_reg(mp, 0, phy_reg_data);
2149
2150 /* wait for PHY to come out of reset */
2151 do {
2152 udelay(1);
2153 eth_port_read_smi_reg(mp, 0, &phy_reg_data);
2154 } while (phy_reg_data & 0x8000);
2155}
2156
2157/*
2158 * eth_port_start - Start the Ethernet port activity.
2159 *
2160 * DESCRIPTION:
2161 * This routine prepares the Ethernet port for Rx and Tx activity:
2162 * 1. Initialize Tx and Rx Current Descriptor Pointer for each queue that
2163 * has been initialized a descriptor's ring (using
2164 * ether_init_tx_desc_ring for Tx and ether_init_rx_desc_ring for Rx)
2165 * 2. Initialize and enable the Ethernet configuration port by writing to
2166 * the port's configuration and command registers.
2167 * 3. Initialize and enable the SDMA by writing to the SDMA's
2168 * configuration and command registers. After completing these steps,
2169 * the ethernet port SDMA can starts to perform Rx and Tx activities.
2170 *
2171 * Note: Each Rx and Tx queue descriptor's list must be initialized prior
2172 * to calling this function (use ether_init_tx_desc_ring for Tx queues
2173 * and ether_init_rx_desc_ring for Rx queues).
2174 *
2175 * INPUT:
2176 * dev - a pointer to the required interface
2177 *
2178 * OUTPUT:
2179 * Ethernet port is ready to receive and transmit.
2180 *
2181 * RETURN:
2182 * None.
2183 */
2184static void eth_port_start(struct net_device *dev)
2185{
2186 struct mv643xx_private *mp = netdev_priv(dev);
2187 unsigned int port_num = mp->port_num;
2188 int tx_curr_desc, rx_curr_desc;
2189 u32 pscr;
2190 struct ethtool_cmd ethtool_cmd;
2191
2192 /* Assignment of Tx CTRP of given queue */
2193 tx_curr_desc = mp->tx_curr_desc_q;
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002194 wrl(mp, TXQ_CURRENT_DESC_PTR(port_num),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002195 (u32)((struct eth_tx_desc *)mp->tx_desc_dma + tx_curr_desc));
2196
2197 /* Assignment of Rx CRDP of given queue */
2198 rx_curr_desc = mp->rx_curr_desc_q;
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002199 wrl(mp, RXQ_CURRENT_DESC_PTR(port_num),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002200 (u32)((struct eth_rx_desc *)mp->rx_desc_dma + rx_curr_desc));
2201
2202 /* Add the assigned Ethernet address to the port's address table */
2203 eth_port_uc_addr_set(mp, dev->dev_addr);
2204
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02002205 /*
2206 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
2207 * frames to RX queue #0.
2208 */
2209 wrl(mp, PORT_CONFIG(port_num), 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002210
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002211 wrl(mp, PORT_CONFIG_EXT(port_num), PORT_CONFIG_EXTEND_DEFAULT_VALUE);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002212
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002213 pscr = rdl(mp, PORT_SERIAL_CONTROL(port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002214
2215 pscr &= ~(SERIAL_PORT_ENABLE | FORCE_LINK_PASS);
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002216 wrl(mp, PORT_SERIAL_CONTROL(port_num), pscr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002217
2218 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL |
2219 DISABLE_AUTO_NEG_SPEED_GMII |
2220 DISABLE_AUTO_NEG_FOR_DUPLX |
2221 DO_NOT_FORCE_LINK_FAIL |
2222 SERIAL_PORT_CONTROL_RESERVED;
2223
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002224 wrl(mp, PORT_SERIAL_CONTROL(port_num), pscr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002225
2226 pscr |= SERIAL_PORT_ENABLE;
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002227 wrl(mp, PORT_SERIAL_CONTROL(port_num), pscr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002228
2229 /* Assign port SDMA configuration */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002230 wrl(mp, SDMA_CONFIG(port_num), PORT_SDMA_CONFIG_DEFAULT_VALUE);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002231
2232 /* Enable port Rx. */
2233 mv643xx_eth_port_enable_rx(mp, ETH_RX_QUEUES_ENABLED);
2234
2235 /* Disable port bandwidth limits by clearing MTU register */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002236 wrl(mp, TX_BW_MTU(port_num), 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002237
2238 /* save phy settings across reset */
2239 mv643xx_get_settings(dev, &ethtool_cmd);
2240 ethernet_phy_reset(mp);
2241 mv643xx_set_settings(dev, &ethtool_cmd);
2242}
2243
2244#ifdef MV643XX_COAL
2245
2246/*
2247 * eth_port_set_rx_coal - Sets coalescing interrupt mechanism on RX path
2248 *
2249 * DESCRIPTION:
2250 * This routine sets the RX coalescing interrupt mechanism parameter.
2251 * This parameter is a timeout counter, that counts in 64 t_clk
2252 * chunks ; that when timeout event occurs a maskable interrupt
2253 * occurs.
2254 * The parameter is calculated using the tClk of the MV-643xx chip
2255 * , and the required delay of the interrupt in usec.
2256 *
2257 * INPUT:
2258 * struct mv643xx_private *mp Ethernet port
2259 * unsigned int delay Delay in usec
2260 *
2261 * OUTPUT:
2262 * Interrupt coalescing mechanism value is set in MV-643xx chip.
2263 *
2264 * RETURN:
2265 * The interrupt coalescing value set in the gigE port.
2266 *
2267 */
2268static unsigned int eth_port_set_rx_coal(struct mv643xx_private *mp,
2269 unsigned int delay)
2270{
2271 unsigned int port_num = mp->port_num;
2272 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
2273
2274 /* Set RX Coalescing mechanism */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002275 wrl(mp, SDMA_CONFIG(port_num),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002276 ((coal & 0x3fff) << 8) |
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002277 (rdl(mp, SDMA_CONFIG(port_num))
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002278 & 0xffc000ff));
2279
2280 return coal;
2281}
2282#endif
2283
2284/*
2285 * eth_port_set_tx_coal - Sets coalescing interrupt mechanism on TX path
2286 *
2287 * DESCRIPTION:
2288 * This routine sets the TX coalescing interrupt mechanism parameter.
2289 * This parameter is a timeout counter, that counts in 64 t_clk
2290 * chunks ; that when timeout event occurs a maskable interrupt
2291 * occurs.
2292 * The parameter is calculated using the t_cLK frequency of the
2293 * MV-643xx chip and the required delay in the interrupt in uSec
2294 *
2295 * INPUT:
2296 * struct mv643xx_private *mp Ethernet port
2297 * unsigned int delay Delay in uSeconds
2298 *
2299 * OUTPUT:
2300 * Interrupt coalescing mechanism value is set in MV-643xx chip.
2301 *
2302 * RETURN:
2303 * The interrupt coalescing value set in the gigE port.
2304 *
2305 */
2306static unsigned int eth_port_set_tx_coal(struct mv643xx_private *mp,
2307 unsigned int delay)
2308{
2309 unsigned int coal = ((mp->shared->t_clk / 1000000) * delay) / 64;
2310
2311 /* Set TX Coalescing mechanism */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002312 wrl(mp, TX_FIFO_URGENT_THRESHOLD(mp->port_num), coal << 4);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002313
2314 return coal;
2315}
2316
2317/*
2318 * eth_port_init - Initialize the Ethernet port driver
2319 *
2320 * DESCRIPTION:
2321 * This function prepares the ethernet port to start its activity:
2322 * 1) Completes the ethernet port driver struct initialization toward port
2323 * start routine.
2324 * 2) Resets the device to a quiescent state in case of warm reboot.
2325 * 3) Enable SDMA access to all four DRAM banks as well as internal SRAM.
2326 * 4) Clean MAC tables. The reset status of those tables is unknown.
2327 * 5) Set PHY address.
2328 * Note: Call this routine prior to eth_port_start routine and after
2329 * setting user values in the user fields of Ethernet port control
2330 * struct.
2331 *
2332 * INPUT:
2333 * struct mv643xx_private *mp Ethernet port control struct
2334 *
2335 * OUTPUT:
2336 * See description.
2337 *
2338 * RETURN:
2339 * None.
2340 */
2341static void eth_port_init(struct mv643xx_private *mp)
2342{
2343 mp->rx_resource_err = 0;
2344
2345 eth_port_reset(mp);
2346
2347 eth_port_init_mac_tables(mp);
2348}
2349
2350/*
2351 * mv643xx_eth_open
2352 *
2353 * This function is called when openning the network device. The function
2354 * should initialize all the hardware, initialize cyclic Rx/Tx
2355 * descriptors chain and buffers and allocate an IRQ to the network
2356 * device.
2357 *
2358 * Input : a pointer to the network device structure
2359 *
2360 * Output : zero of success , nonzero if fails.
2361 */
2362
2363static int mv643xx_eth_open(struct net_device *dev)
2364{
2365 struct mv643xx_private *mp = netdev_priv(dev);
2366 unsigned int port_num = mp->port_num;
2367 unsigned int size;
2368 int err;
2369
2370 /* Clear any pending ethernet port interrupts */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002371 wrl(mp, INT_CAUSE(port_num), 0);
2372 wrl(mp, INT_CAUSE_EXT(port_num), 0);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002373 /* wait for previous write to complete */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002374 rdl(mp, INT_CAUSE_EXT(port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002375
2376 err = request_irq(dev->irq, mv643xx_eth_int_handler,
2377 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, dev);
2378 if (err) {
2379 printk(KERN_ERR "%s: Can not assign IRQ\n", dev->name);
2380 return -EAGAIN;
2381 }
2382
2383 eth_port_init(mp);
2384
2385 memset(&mp->timeout, 0, sizeof(struct timer_list));
2386 mp->timeout.function = mv643xx_eth_rx_refill_descs_timer_wrapper;
2387 mp->timeout.data = (unsigned long)dev;
2388
2389 /* Allocate RX and TX skb rings */
2390 mp->rx_skb = kmalloc(sizeof(*mp->rx_skb) * mp->rx_ring_size,
2391 GFP_KERNEL);
2392 if (!mp->rx_skb) {
2393 printk(KERN_ERR "%s: Cannot allocate Rx skb ring\n", dev->name);
2394 err = -ENOMEM;
2395 goto out_free_irq;
2396 }
2397 mp->tx_skb = kmalloc(sizeof(*mp->tx_skb) * mp->tx_ring_size,
2398 GFP_KERNEL);
2399 if (!mp->tx_skb) {
2400 printk(KERN_ERR "%s: Cannot allocate Tx skb ring\n", dev->name);
2401 err = -ENOMEM;
2402 goto out_free_rx_skb;
2403 }
2404
2405 /* Allocate TX ring */
2406 mp->tx_desc_count = 0;
2407 size = mp->tx_ring_size * sizeof(struct eth_tx_desc);
2408 mp->tx_desc_area_size = size;
2409
2410 if (mp->tx_sram_size) {
2411 mp->p_tx_desc_area = ioremap(mp->tx_sram_addr,
2412 mp->tx_sram_size);
2413 mp->tx_desc_dma = mp->tx_sram_addr;
2414 } else
2415 mp->p_tx_desc_area = dma_alloc_coherent(NULL, size,
2416 &mp->tx_desc_dma,
2417 GFP_KERNEL);
2418
2419 if (!mp->p_tx_desc_area) {
2420 printk(KERN_ERR "%s: Cannot allocate Tx Ring (size %d bytes)\n",
2421 dev->name, size);
2422 err = -ENOMEM;
2423 goto out_free_tx_skb;
2424 }
2425 BUG_ON((u32) mp->p_tx_desc_area & 0xf); /* check 16-byte alignment */
2426 memset((void *)mp->p_tx_desc_area, 0, mp->tx_desc_area_size);
2427
2428 ether_init_tx_desc_ring(mp);
2429
2430 /* Allocate RX ring */
2431 mp->rx_desc_count = 0;
2432 size = mp->rx_ring_size * sizeof(struct eth_rx_desc);
2433 mp->rx_desc_area_size = size;
2434
2435 if (mp->rx_sram_size) {
2436 mp->p_rx_desc_area = ioremap(mp->rx_sram_addr,
2437 mp->rx_sram_size);
2438 mp->rx_desc_dma = mp->rx_sram_addr;
2439 } else
2440 mp->p_rx_desc_area = dma_alloc_coherent(NULL, size,
2441 &mp->rx_desc_dma,
2442 GFP_KERNEL);
2443
2444 if (!mp->p_rx_desc_area) {
2445 printk(KERN_ERR "%s: Cannot allocate Rx ring (size %d bytes)\n",
2446 dev->name, size);
2447 printk(KERN_ERR "%s: Freeing previously allocated TX queues...",
2448 dev->name);
2449 if (mp->rx_sram_size)
2450 iounmap(mp->p_tx_desc_area);
2451 else
2452 dma_free_coherent(NULL, mp->tx_desc_area_size,
2453 mp->p_tx_desc_area, mp->tx_desc_dma);
2454 err = -ENOMEM;
2455 goto out_free_tx_skb;
2456 }
2457 memset((void *)mp->p_rx_desc_area, 0, size);
2458
2459 ether_init_rx_desc_ring(mp);
2460
2461 mv643xx_eth_rx_refill_descs(dev); /* Fill RX ring with skb's */
2462
2463#ifdef MV643XX_NAPI
2464 napi_enable(&mp->napi);
2465#endif
2466
2467 eth_port_start(dev);
2468
2469 /* Interrupt Coalescing */
2470
2471#ifdef MV643XX_COAL
2472 mp->rx_int_coal =
2473 eth_port_set_rx_coal(mp, MV643XX_RX_COAL);
2474#endif
2475
2476 mp->tx_int_coal =
2477 eth_port_set_tx_coal(mp, MV643XX_TX_COAL);
2478
2479 /* Unmask phy and link status changes interrupts */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002480 wrl(mp, INT_MASK_EXT(port_num), ETH_INT_UNMASK_ALL_EXT);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002481
2482 /* Unmask RX buffer and TX end interrupt */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002483 wrl(mp, INT_MASK(port_num), ETH_INT_UNMASK_ALL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002484
2485 return 0;
2486
2487out_free_tx_skb:
2488 kfree(mp->tx_skb);
2489out_free_rx_skb:
2490 kfree(mp->rx_skb);
2491out_free_irq:
2492 free_irq(dev->irq, dev);
2493
2494 return err;
2495}
2496
2497/*
2498 * eth_port_reset - Reset Ethernet port
2499 *
2500 * DESCRIPTION:
2501 * This routine resets the chip by aborting any SDMA engine activity and
2502 * clearing the MIB counters. The Receiver and the Transmit unit are in
2503 * idle state after this command is performed and the port is disabled.
2504 *
2505 * INPUT:
2506 * struct mv643xx_private *mp Ethernet Port.
2507 *
2508 * OUTPUT:
2509 * Channel activity is halted.
2510 *
2511 * RETURN:
2512 * None.
2513 *
2514 */
2515static void eth_port_reset(struct mv643xx_private *mp)
2516{
2517 unsigned int port_num = mp->port_num;
2518 unsigned int reg_data;
2519
2520 mv643xx_eth_port_disable_tx(mp);
2521 mv643xx_eth_port_disable_rx(mp);
2522
2523 /* Clear all MIB counters */
2524 eth_clear_mib_counters(mp);
2525
2526 /* Reset the Enable bit in the Configuration Register */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002527 reg_data = rdl(mp, PORT_SERIAL_CONTROL(port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002528 reg_data &= ~(SERIAL_PORT_ENABLE |
2529 DO_NOT_FORCE_LINK_FAIL |
2530 FORCE_LINK_PASS);
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002531 wrl(mp, PORT_SERIAL_CONTROL(port_num), reg_data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002532}
2533
2534/*
2535 * mv643xx_eth_stop
2536 *
2537 * This function is used when closing the network device.
2538 * It updates the hardware,
2539 * release all memory that holds buffers and descriptors and release the IRQ.
2540 * Input : a pointer to the device structure
2541 * Output : zero if success , nonzero if fails
2542 */
2543
2544static int mv643xx_eth_stop(struct net_device *dev)
2545{
2546 struct mv643xx_private *mp = netdev_priv(dev);
2547 unsigned int port_num = mp->port_num;
2548
2549 /* Mask all interrupts on ethernet port */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002550 wrl(mp, INT_MASK(port_num), ETH_INT_MASK_ALL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002551 /* wait for previous write to complete */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002552 rdl(mp, INT_MASK(port_num));
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002553
2554#ifdef MV643XX_NAPI
2555 napi_disable(&mp->napi);
2556#endif
2557 netif_carrier_off(dev);
2558 netif_stop_queue(dev);
2559
2560 eth_port_reset(mp);
2561
2562 mv643xx_eth_free_tx_rings(dev);
2563 mv643xx_eth_free_rx_rings(dev);
2564
2565 free_irq(dev->irq, dev);
2566
2567 return 0;
2568}
2569
2570static int mv643xx_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2571{
2572 struct mv643xx_private *mp = netdev_priv(dev);
2573
2574 return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL);
2575}
2576
2577/*
2578 * Changes MTU (maximum transfer unit) of the gigabit ethenret port
2579 *
2580 * Input : pointer to ethernet interface network device structure
2581 * new mtu size
2582 * Output : 0 upon success, -EINVAL upon failure
2583 */
2584static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
2585{
2586 if ((new_mtu > 9500) || (new_mtu < 64))
2587 return -EINVAL;
2588
2589 dev->mtu = new_mtu;
2590 if (!netif_running(dev))
2591 return 0;
2592
2593 /*
2594 * Stop and then re-open the interface. This will allocate RX
2595 * skbs of the new MTU.
2596 * There is a possible danger that the open will not succeed,
2597 * due to memory being full, which might fail the open function.
2598 */
2599 mv643xx_eth_stop(dev);
2600 if (mv643xx_eth_open(dev)) {
2601 printk(KERN_ERR "%s: Fatal error on opening device\n",
2602 dev->name);
2603 }
2604
2605 return 0;
2606}
2607
2608/*
2609 * mv643xx_eth_tx_timeout_task
2610 *
2611 * Actual routine to reset the adapter when a timeout on Tx has occurred
2612 */
2613static void mv643xx_eth_tx_timeout_task(struct work_struct *ugly)
2614{
2615 struct mv643xx_private *mp = container_of(ugly, struct mv643xx_private,
2616 tx_timeout_task);
2617 struct net_device *dev = mp->dev;
2618
2619 if (!netif_running(dev))
2620 return;
2621
2622 netif_stop_queue(dev);
2623
2624 eth_port_reset(mp);
2625 eth_port_start(dev);
2626
2627 if (mp->tx_ring_size - mp->tx_desc_count >= MAX_DESCS_PER_SKB)
2628 netif_wake_queue(dev);
2629}
2630
2631/*
2632 * mv643xx_eth_tx_timeout
2633 *
2634 * Called upon a timeout on transmitting a packet
2635 *
2636 * Input : pointer to ethernet interface network device structure.
2637 * Output : N/A
2638 */
2639static void mv643xx_eth_tx_timeout(struct net_device *dev)
2640{
2641 struct mv643xx_private *mp = netdev_priv(dev);
2642
2643 printk(KERN_INFO "%s: TX timeout ", dev->name);
2644
2645 /* Do the reset outside of interrupt context */
2646 schedule_work(&mp->tx_timeout_task);
2647}
2648
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002649#ifdef CONFIG_NET_POLL_CONTROLLER
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002650static void mv643xx_netpoll(struct net_device *netdev)
2651{
2652 struct mv643xx_private *mp = netdev_priv(netdev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002653 int port_num = mp->port_num;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002654
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002655 wrl(mp, INT_MASK(port_num), ETH_INT_MASK_ALL);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002656 /* wait for previous write to complete */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002657 rdl(mp, INT_MASK(port_num));
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002658
Al Viro9da3b1a2006-10-08 15:00:44 +01002659 mv643xx_eth_int_handler(netdev->irq, netdev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002660
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002661 wrl(mp, INT_MASK(port_num), ETH_INT_UNMASK_ALL);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002662}
2663#endif
2664
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002665/*
2666 * Wrappers for MII support library.
2667 */
2668static int mv643xx_mdio_read(struct net_device *dev, int phy_id, int location)
2669{
2670 struct mv643xx_private *mp = netdev_priv(dev);
2671 int val;
2672
2673 eth_port_read_smi_reg(mp, location, &val);
2674 return val;
2675}
2676
2677static void mv643xx_mdio_write(struct net_device *dev, int phy_id, int location, int val)
2678{
2679 struct mv643xx_private *mp = netdev_priv(dev);
2680 eth_port_write_smi_reg(mp, location, val);
2681}
2682
2683
2684/* platform glue ************************************************************/
2685static void mv643xx_eth_conf_mbus_windows(struct mv643xx_shared_private *msp,
2686 struct mbus_dram_target_info *dram)
2687{
2688 void __iomem *base = msp->eth_base;
2689 u32 win_enable;
2690 u32 win_protect;
2691 int i;
2692
2693 for (i = 0; i < 6; i++) {
2694 writel(0, base + WINDOW_BASE(i));
2695 writel(0, base + WINDOW_SIZE(i));
2696 if (i < 4)
2697 writel(0, base + WINDOW_REMAP_HIGH(i));
2698 }
2699
2700 win_enable = 0x3f;
2701 win_protect = 0;
2702
2703 for (i = 0; i < dram->num_cs; i++) {
2704 struct mbus_dram_window *cs = dram->cs + i;
2705
2706 writel((cs->base & 0xffff0000) |
2707 (cs->mbus_attr << 8) |
2708 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
2709 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
2710
2711 win_enable &= ~(1 << i);
2712 win_protect |= 3 << (2 * i);
2713 }
2714
2715 writel(win_enable, base + WINDOW_BAR_ENABLE);
2716 msp->win_protect = win_protect;
2717}
2718
2719static int mv643xx_eth_shared_probe(struct platform_device *pdev)
2720{
2721 static int mv643xx_version_printed = 0;
2722 struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
2723 struct mv643xx_shared_private *msp;
2724 struct resource *res;
2725 int ret;
2726
2727 if (!mv643xx_version_printed++)
2728 printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n");
2729
2730 ret = -EINVAL;
2731 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2732 if (res == NULL)
2733 goto out;
2734
2735 ret = -ENOMEM;
2736 msp = kmalloc(sizeof(*msp), GFP_KERNEL);
2737 if (msp == NULL)
2738 goto out;
2739 memset(msp, 0, sizeof(*msp));
2740
2741 msp->eth_base = ioremap(res->start, res->end - res->start + 1);
2742 if (msp->eth_base == NULL)
2743 goto out_free;
2744
2745 spin_lock_init(&msp->phy_lock);
2746 msp->t_clk = (pd != NULL && pd->t_clk != 0) ? pd->t_clk : 133000000;
2747
2748 platform_set_drvdata(pdev, msp);
2749
2750 /*
2751 * (Re-)program MBUS remapping windows if we are asked to.
2752 */
2753 if (pd != NULL && pd->dram != NULL)
2754 mv643xx_eth_conf_mbus_windows(msp, pd->dram);
2755
2756 return 0;
2757
2758out_free:
2759 kfree(msp);
2760out:
2761 return ret;
2762}
2763
2764static int mv643xx_eth_shared_remove(struct platform_device *pdev)
2765{
2766 struct mv643xx_shared_private *msp = platform_get_drvdata(pdev);
2767
2768 iounmap(msp->eth_base);
2769 kfree(msp);
2770
2771 return 0;
2772}
2773
2774static struct platform_driver mv643xx_eth_shared_driver = {
2775 .probe = mv643xx_eth_shared_probe,
2776 .remove = mv643xx_eth_shared_remove,
2777 .driver = {
2778 .name = MV643XX_ETH_SHARED_NAME,
2779 .owner = THIS_MODULE,
2780 },
2781};
2782
2783/*
2784 * ethernet_phy_set - Set the ethernet port PHY address.
2785 *
2786 * DESCRIPTION:
2787 * This routine sets the given ethernet port PHY address.
2788 *
2789 * INPUT:
2790 * struct mv643xx_private *mp Ethernet Port.
2791 * int phy_addr PHY address.
2792 *
2793 * OUTPUT:
2794 * None.
2795 *
2796 * RETURN:
2797 * None.
2798 *
2799 */
2800static void ethernet_phy_set(struct mv643xx_private *mp, int phy_addr)
2801{
2802 u32 reg_data;
2803 int addr_shift = 5 * mp->port_num;
2804
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002805 reg_data = rdl(mp, PHY_ADDR);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002806 reg_data &= ~(0x1f << addr_shift);
2807 reg_data |= (phy_addr & 0x1f) << addr_shift;
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002808 wrl(mp, PHY_ADDR, reg_data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002809}
2810
2811/*
2812 * ethernet_phy_get - Get the ethernet port PHY address.
2813 *
2814 * DESCRIPTION:
2815 * This routine returns the given ethernet port PHY address.
2816 *
2817 * INPUT:
2818 * struct mv643xx_private *mp Ethernet Port.
2819 *
2820 * OUTPUT:
2821 * None.
2822 *
2823 * RETURN:
2824 * PHY address.
2825 *
2826 */
2827static int ethernet_phy_get(struct mv643xx_private *mp)
2828{
2829 unsigned int reg_data;
2830
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02002831 reg_data = rdl(mp, PHY_ADDR);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002832
2833 return ((reg_data >> (5 * mp->port_num)) & 0x1f);
2834}
2835
2836/*
2837 * ethernet_phy_detect - Detect whether a phy is present
2838 *
2839 * DESCRIPTION:
2840 * This function tests whether there is a PHY present on
2841 * the specified port.
2842 *
2843 * INPUT:
2844 * struct mv643xx_private *mp Ethernet Port.
2845 *
2846 * OUTPUT:
2847 * None
2848 *
2849 * RETURN:
2850 * 0 on success
2851 * -ENODEV on failure
2852 *
2853 */
2854static int ethernet_phy_detect(struct mv643xx_private *mp)
2855{
2856 unsigned int phy_reg_data0;
2857 int auto_neg;
2858
2859 eth_port_read_smi_reg(mp, 0, &phy_reg_data0);
2860 auto_neg = phy_reg_data0 & 0x1000;
2861 phy_reg_data0 ^= 0x1000; /* invert auto_neg */
2862 eth_port_write_smi_reg(mp, 0, phy_reg_data0);
2863
2864 eth_port_read_smi_reg(mp, 0, &phy_reg_data0);
2865 if ((phy_reg_data0 & 0x1000) == auto_neg)
2866 return -ENODEV; /* change didn't take */
2867
2868 phy_reg_data0 ^= 0x1000;
2869 eth_port_write_smi_reg(mp, 0, phy_reg_data0);
2870 return 0;
2871}
2872
James Chapmand0412d92006-01-27 01:15:30 -07002873static void mv643xx_init_ethtool_cmd(struct net_device *dev, int phy_address,
2874 int speed, int duplex,
2875 struct ethtool_cmd *cmd)
2876{
2877 struct mv643xx_private *mp = netdev_priv(dev);
2878
2879 memset(cmd, 0, sizeof(*cmd));
2880
2881 cmd->port = PORT_MII;
2882 cmd->transceiver = XCVR_INTERNAL;
2883 cmd->phy_address = phy_address;
2884
2885 if (speed == 0) {
2886 cmd->autoneg = AUTONEG_ENABLE;
2887 /* mii lib checks, but doesn't use speed on AUTONEG_ENABLE */
2888 cmd->speed = SPEED_100;
2889 cmd->advertising = ADVERTISED_10baseT_Half |
2890 ADVERTISED_10baseT_Full |
2891 ADVERTISED_100baseT_Half |
2892 ADVERTISED_100baseT_Full;
2893 if (mp->mii.supports_gmii)
2894 cmd->advertising |= ADVERTISED_1000baseT_Full;
2895 } else {
2896 cmd->autoneg = AUTONEG_DISABLE;
2897 cmd->speed = speed;
2898 cmd->duplex = duplex;
2899 }
2900}
2901
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902/*/
2903 * mv643xx_eth_probe
2904 *
2905 * First function called after registering the network device.
2906 * It's purpose is to initialize the device as an ethernet device,
2907 * fill the ethernet device structure with pointers * to functions,
2908 * and set the MAC address of the interface
2909 *
2910 * Input : struct device *
2911 * Output : -ENOMEM if failed , 0 if success
2912 */
Russell King3ae5eae2005-11-09 22:32:44 +00002913static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 struct mv643xx_eth_platform_data *pd;
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002916 int port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 struct mv643xx_private *mp;
2918 struct net_device *dev;
2919 u8 *p;
2920 struct resource *res;
2921 int err;
James Chapmand0412d92006-01-27 01:15:30 -07002922 struct ethtool_cmd cmd;
Dale Farnsworth01999872006-01-27 01:18:01 -07002923 int duplex = DUPLEX_HALF;
2924 int speed = 0; /* default to auto-negotiation */
Al Viroc5d64712007-10-13 08:30:26 +01002925 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002927 pd = pdev->dev.platform_data;
2928 if (pd == NULL) {
2929 printk(KERN_ERR "No mv643xx_eth_platform_data\n");
2930 return -ENODEV;
2931 }
2932
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002933 if (pd->shared == NULL) {
2934 printk(KERN_ERR "No mv643xx_eth_platform_data->shared\n");
2935 return -ENODEV;
2936 }
2937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 dev = alloc_etherdev(sizeof(struct mv643xx_private));
2939 if (!dev)
2940 return -ENOMEM;
2941
Russell King3ae5eae2005-11-09 22:32:44 +00002942 platform_set_drvdata(pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
2944 mp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002945 mp->dev = dev;
2946#ifdef MV643XX_NAPI
2947 netif_napi_add(dev, &mp->napi, mv643xx_poll, 64);
2948#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949
2950 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2951 BUG_ON(!res);
2952 dev->irq = res->start;
2953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 dev->open = mv643xx_eth_open;
2955 dev->stop = mv643xx_eth_stop;
2956 dev->hard_start_xmit = mv643xx_eth_start_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 dev->set_mac_address = mv643xx_eth_set_mac_address;
2958 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
2959
2960 /* No need to Tx Timeout */
2961 dev->tx_timeout = mv643xx_eth_tx_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002963#ifdef CONFIG_NET_POLL_CONTROLLER
2964 dev->poll_controller = mv643xx_netpoll;
2965#endif
2966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 dev->base_addr = 0;
2969 dev->change_mtu = mv643xx_eth_change_mtu;
James Chapmand0412d92006-01-27 01:15:30 -07002970 dev->do_ioctl = mv643xx_eth_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 SET_ETHTOOL_OPS(dev, &mv643xx_ethtool_ops);
2972
2973#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
2974#ifdef MAX_SKB_FRAGS
2975 /*
2976 * Zero copy can only work if we use Discovery II memory. Else, we will
2977 * have to map the buffers to ISA memory which is only 16 MB
2978 */
Wolfram Joost63890572006-01-16 16:57:41 -07002979 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980#endif
2981#endif
2982
2983 /* Configure the timeout task */
Al Viro91c7c562006-12-06 19:50:06 +00002984 INIT_WORK(&mp->tx_timeout_task, mv643xx_eth_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
2986 spin_lock_init(&mp->lock);
2987
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002988 mp->shared = platform_get_drvdata(pd->shared);
Gabriel Paubertfadac402007-03-23 12:03:52 -07002989 port_num = mp->port_num = pd->port_number;
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002990
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +02002991 if (mp->shared->win_protect)
2992 wrl(mp, WINDOW_PROTECT(port_num), mp->shared->win_protect);
2993
Lennert Buytenhekce4e2e42008-04-24 01:29:59 +02002994 mp->shared_smi = mp->shared;
2995 if (pd->shared_smi != NULL)
2996 mp->shared_smi = platform_get_drvdata(pd->shared_smi);
2997
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 /* set default config values */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002999 eth_port_uc_addr_get(mp, dev->dev_addr);
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02003000 mp->rx_ring_size = PORT_DEFAULT_RECEIVE_QUEUE_SIZE;
3001 mp->tx_ring_size = PORT_DEFAULT_TRANSMIT_QUEUE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Dale Farnsworth84dd6192007-03-03 06:40:28 -07003003 if (is_valid_ether_addr(pd->mac_addr))
3004 memcpy(dev->dev_addr, pd->mac_addr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Dale Farnsworth84dd6192007-03-03 06:40:28 -07003006 if (pd->phy_addr || pd->force_phy_addr)
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003007 ethernet_phy_set(mp, pd->phy_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
Dale Farnsworth84dd6192007-03-03 06:40:28 -07003009 if (pd->rx_queue_size)
3010 mp->rx_ring_size = pd->rx_queue_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011
Dale Farnsworth84dd6192007-03-03 06:40:28 -07003012 if (pd->tx_queue_size)
3013 mp->tx_ring_size = pd->tx_queue_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014
Dale Farnsworth84dd6192007-03-03 06:40:28 -07003015 if (pd->tx_sram_size) {
3016 mp->tx_sram_size = pd->tx_sram_size;
3017 mp->tx_sram_addr = pd->tx_sram_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 }
3019
Dale Farnsworth84dd6192007-03-03 06:40:28 -07003020 if (pd->rx_sram_size) {
3021 mp->rx_sram_size = pd->rx_sram_size;
3022 mp->rx_sram_addr = pd->rx_sram_addr;
3023 }
3024
3025 duplex = pd->duplex;
3026 speed = pd->speed;
3027
James Chapmanc28a4f82006-01-27 01:13:15 -07003028 /* Hook up MII support for ethtool */
3029 mp->mii.dev = dev;
3030 mp->mii.mdio_read = mv643xx_mdio_read;
3031 mp->mii.mdio_write = mv643xx_mdio_write;
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003032 mp->mii.phy_id = ethernet_phy_get(mp);
James Chapmanc28a4f82006-01-27 01:13:15 -07003033 mp->mii.phy_id_mask = 0x3f;
3034 mp->mii.reg_num_mask = 0x1f;
3035
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003036 err = ethernet_phy_detect(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 if (err) {
Lennert Buytenhekc1b35a22008-03-18 11:37:19 -07003038 pr_debug("%s: No PHY detected at addr %d\n",
3039 dev->name, ethernet_phy_get(mp));
James Chapmand0412d92006-01-27 01:15:30 -07003040 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 }
3042
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003043 ethernet_phy_reset(mp);
James Chapmanc28a4f82006-01-27 01:13:15 -07003044 mp->mii.supports_gmii = mii_check_gmii_support(&mp->mii);
James Chapmand0412d92006-01-27 01:15:30 -07003045 mv643xx_init_ethtool_cmd(dev, mp->mii.phy_id, speed, duplex, &cmd);
3046 mv643xx_eth_update_pscr(dev, &cmd);
3047 mv643xx_set_settings(dev, &cmd);
James Chapmanc28a4f82006-01-27 01:13:15 -07003048
Olaf Heringb0b8dab2006-04-27 18:23:49 -07003049 SET_NETDEV_DEV(dev, &pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 err = register_netdev(dev);
3051 if (err)
3052 goto out;
3053
3054 p = dev->dev_addr;
3055 printk(KERN_NOTICE
Joe Perches0795af52007-10-03 17:59:30 -07003056 "%s: port %d with MAC address %s\n",
3057 dev->name, port_num, print_mac(mac, p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
3059 if (dev->features & NETIF_F_SG)
3060 printk(KERN_NOTICE "%s: Scatter Gather Enabled\n", dev->name);
3061
3062 if (dev->features & NETIF_F_IP_CSUM)
3063 printk(KERN_NOTICE "%s: TX TCP/IP Checksumming Supported\n",
3064 dev->name);
3065
3066#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
3067 printk(KERN_NOTICE "%s: RX TCP/UDP Checksum Offload ON \n", dev->name);
3068#endif
3069
3070#ifdef MV643XX_COAL
3071 printk(KERN_NOTICE "%s: TX and RX Interrupt Coalescing ON \n",
3072 dev->name);
3073#endif
3074
3075#ifdef MV643XX_NAPI
3076 printk(KERN_NOTICE "%s: RX NAPI Enabled \n", dev->name);
3077#endif
3078
Nicolas DETb1529872005-10-28 17:46:30 -07003079 if (mp->tx_sram_size > 0)
3080 printk(KERN_NOTICE "%s: Using SRAM\n", dev->name);
3081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 return 0;
3083
3084out:
3085 free_netdev(dev);
3086
3087 return err;
3088}
3089
Russell King3ae5eae2005-11-09 22:32:44 +00003090static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091{
Russell King3ae5eae2005-11-09 22:32:44 +00003092 struct net_device *dev = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
3094 unregister_netdev(dev);
3095 flush_scheduled_work();
3096
3097 free_netdev(dev);
Russell King3ae5eae2005-11-09 22:32:44 +00003098 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 return 0;
3100}
3101
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07003102static void mv643xx_eth_shutdown(struct platform_device *pdev)
3103{
3104 struct net_device *dev = platform_get_drvdata(pdev);
3105 struct mv643xx_private *mp = netdev_priv(dev);
3106 unsigned int port_num = mp->port_num;
3107
3108 /* Mask all interrupts on ethernet port */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02003109 wrl(mp, INT_MASK(port_num), 0);
3110 rdl(mp, INT_MASK(port_num));
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07003111
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003112 eth_port_reset(mp);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07003113}
3114
Russell King3ae5eae2005-11-09 22:32:44 +00003115static struct platform_driver mv643xx_eth_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 .probe = mv643xx_eth_probe,
3117 .remove = mv643xx_eth_remove,
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07003118 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00003119 .driver = {
3120 .name = MV643XX_ETH_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07003121 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003122 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123};
3124
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125/*
3126 * mv643xx_init_module
3127 *
3128 * Registers the network drivers into the Linux kernel
3129 *
3130 * Input : N/A
3131 *
3132 * Output : N/A
3133 */
3134static int __init mv643xx_init_module(void)
3135{
3136 int rc;
3137
Russell King3ae5eae2005-11-09 22:32:44 +00003138 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00003140 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00003142 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 }
3144 return rc;
3145}
3146
3147/*
3148 * mv643xx_cleanup_module
3149 *
3150 * Registers the network drivers into the Linux kernel
3151 *
3152 * Input : N/A
3153 *
3154 * Output : N/A
3155 */
3156static void __exit mv643xx_cleanup_module(void)
3157{
Russell King3ae5eae2005-11-09 22:32:44 +00003158 platform_driver_unregister(&mv643xx_eth_driver);
3159 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160}
3161
3162module_init(mv643xx_init_module);
3163module_exit(mv643xx_cleanup_module);
3164
3165MODULE_LICENSE("GPL");
3166MODULE_AUTHOR( "Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, Manish Lachwani"
3167 " and Dale Farnsworth");
3168MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
Kay Sievers72abb462008-04-18 13:50:44 -07003169MODULE_ALIAS("platform:" MV643XX_ETH_NAME);
3170MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);