blob: aabf1c60946d0dd8fe2c6c1ee8aacd43c65e42db [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 */
37#include <linux/init.h>
38#include <linux/dma-mapping.h>
Al Virob6298c22006-01-18 19:35:54 -050039#include <linux/in.h>
40#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/tcp.h>
42#include <linux/udp.h>
43#include <linux/etherdevice.h>
44
45#include <linux/bitops.h>
46#include <linux/delay.h>
47#include <linux/ethtool.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010048#include <linux/platform_device.h>
49
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020050#include <linux/module.h>
51#include <linux/kernel.h>
52#include <linux/spinlock.h>
53#include <linux/workqueue.h>
54#include <linux/mii.h>
55
56#include <linux/mv643xx_eth.h>
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/io.h>
59#include <asm/types.h>
60#include <asm/pgtable.h>
61#include <asm/system.h>
62#include <asm/delay.h>
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020063#include <asm/dma-mapping.h>
64
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020065#define MV643XX_CHECKSUM_OFFLOAD_TX
66#define MV643XX_NAPI
67#define MV643XX_TX_FAST_REFILL
68#undef MV643XX_COAL
69
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020070#define MV643XX_TX_COAL 100
71#ifdef MV643XX_COAL
72#define MV643XX_RX_COAL 100
73#endif
74
75#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
76#define MAX_DESCS_PER_SKB (MAX_SKB_FRAGS + 1)
77#else
78#define MAX_DESCS_PER_SKB 1
79#endif
80
81#define ETH_VLAN_HLEN 4
82#define ETH_FCS_LEN 4
83#define ETH_HW_IP_ALIGN 2 /* hw aligns IP header */
84#define ETH_WRAPPER_LEN (ETH_HW_IP_ALIGN + ETH_HLEN + \
85 ETH_VLAN_HLEN + ETH_FCS_LEN)
86#define ETH_RX_SKB_SIZE (dev->mtu + ETH_WRAPPER_LEN + \
87 dma_get_cache_alignment())
88
89/*
90 * Registers shared between all ports.
91 */
92#define PHY_ADDR_REG 0x0000
93#define SMI_REG 0x0004
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +020094#define WINDOW_BASE(i) (0x0200 + ((i) << 3))
95#define WINDOW_SIZE(i) (0x0204 + ((i) << 3))
96#define WINDOW_REMAP_HIGH(i) (0x0280 + ((i) << 2))
97#define WINDOW_BAR_ENABLE 0x0290
98#define WINDOW_PROTECT(i) (0x0294 + ((i) << 4))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020099
100/*
101 * Per-port registers.
102 */
103#define PORT_CONFIG_REG(p) (0x0400 + ((p) << 10))
104#define PORT_CONFIG_EXTEND_REG(p) (0x0404 + ((p) << 10))
105#define MAC_ADDR_LOW(p) (0x0414 + ((p) << 10))
106#define MAC_ADDR_HIGH(p) (0x0418 + ((p) << 10))
107#define SDMA_CONFIG_REG(p) (0x041c + ((p) << 10))
108#define PORT_SERIAL_CONTROL_REG(p) (0x043c + ((p) << 10))
109#define PORT_STATUS_REG(p) (0x0444 + ((p) << 10))
110#define TRANSMIT_QUEUE_COMMAND_REG(p) (0x0448 + ((p) << 10))
111#define MAXIMUM_TRANSMIT_UNIT(p) (0x0458 + ((p) << 10))
112#define INTERRUPT_CAUSE_REG(p) (0x0460 + ((p) << 10))
113#define INTERRUPT_CAUSE_EXTEND_REG(p) (0x0464 + ((p) << 10))
114#define INTERRUPT_MASK_REG(p) (0x0468 + ((p) << 10))
115#define INTERRUPT_EXTEND_MASK_REG(p) (0x046c + ((p) << 10))
116#define TX_FIFO_URGENT_THRESHOLD_REG(p) (0x0474 + ((p) << 10))
117#define RX_CURRENT_QUEUE_DESC_PTR_0(p) (0x060c + ((p) << 10))
118#define RECEIVE_QUEUE_COMMAND_REG(p) (0x0680 + ((p) << 10))
119#define TX_CURRENT_QUEUE_DESC_PTR_0(p) (0x06c0 + ((p) << 10))
120#define MIB_COUNTERS_BASE(p) (0x1000 + ((p) << 7))
121#define DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE(p) (0x1400 + ((p) << 10))
122#define DA_FILTER_OTHER_MULTICAST_TABLE_BASE(p) (0x1500 + ((p) << 10))
123#define DA_FILTER_UNICAST_TABLE_BASE(p) (0x1600 + ((p) << 10))
124
125/* These macros describe Ethernet Port configuration reg (Px_cR) bits */
126#define UNICAST_NORMAL_MODE (0 << 0)
127#define UNICAST_PROMISCUOUS_MODE (1 << 0)
128#define DEFAULT_RX_QUEUE(queue) ((queue) << 1)
129#define DEFAULT_RX_ARP_QUEUE(queue) ((queue) << 4)
130#define RECEIVE_BC_IF_NOT_IP_OR_ARP (0 << 7)
131#define REJECT_BC_IF_NOT_IP_OR_ARP (1 << 7)
132#define RECEIVE_BC_IF_IP (0 << 8)
133#define REJECT_BC_IF_IP (1 << 8)
134#define RECEIVE_BC_IF_ARP (0 << 9)
135#define REJECT_BC_IF_ARP (1 << 9)
136#define TX_AM_NO_UPDATE_ERROR_SUMMARY (1 << 12)
137#define CAPTURE_TCP_FRAMES_DIS (0 << 14)
138#define CAPTURE_TCP_FRAMES_EN (1 << 14)
139#define CAPTURE_UDP_FRAMES_DIS (0 << 15)
140#define CAPTURE_UDP_FRAMES_EN (1 << 15)
141#define DEFAULT_RX_TCP_QUEUE(queue) ((queue) << 16)
142#define DEFAULT_RX_UDP_QUEUE(queue) ((queue) << 19)
143#define DEFAULT_RX_BPDU_QUEUE(queue) ((queue) << 22)
144
145#define PORT_CONFIG_DEFAULT_VALUE \
146 UNICAST_NORMAL_MODE | \
147 DEFAULT_RX_QUEUE(0) | \
148 DEFAULT_RX_ARP_QUEUE(0) | \
149 RECEIVE_BC_IF_NOT_IP_OR_ARP | \
150 RECEIVE_BC_IF_IP | \
151 RECEIVE_BC_IF_ARP | \
152 CAPTURE_TCP_FRAMES_DIS | \
153 CAPTURE_UDP_FRAMES_DIS | \
154 DEFAULT_RX_TCP_QUEUE(0) | \
155 DEFAULT_RX_UDP_QUEUE(0) | \
156 DEFAULT_RX_BPDU_QUEUE(0)
157
158/* These macros describe Ethernet Port configuration extend reg (Px_cXR) bits*/
159#define CLASSIFY_EN (1 << 0)
160#define SPAN_BPDU_PACKETS_AS_NORMAL (0 << 1)
161#define SPAN_BPDU_PACKETS_TO_RX_QUEUE_7 (1 << 1)
162#define PARTITION_DISABLE (0 << 2)
163#define PARTITION_ENABLE (1 << 2)
164
165#define PORT_CONFIG_EXTEND_DEFAULT_VALUE \
166 SPAN_BPDU_PACKETS_AS_NORMAL | \
167 PARTITION_DISABLE
168
169/* These macros describe Ethernet Port Sdma configuration reg (SDCR) bits */
170#define RIFB (1 << 0)
171#define RX_BURST_SIZE_1_64BIT (0 << 1)
172#define RX_BURST_SIZE_2_64BIT (1 << 1)
173#define RX_BURST_SIZE_4_64BIT (2 << 1)
174#define RX_BURST_SIZE_8_64BIT (3 << 1)
175#define RX_BURST_SIZE_16_64BIT (4 << 1)
176#define BLM_RX_NO_SWAP (1 << 4)
177#define BLM_RX_BYTE_SWAP (0 << 4)
178#define BLM_TX_NO_SWAP (1 << 5)
179#define BLM_TX_BYTE_SWAP (0 << 5)
180#define DESCRIPTORS_BYTE_SWAP (1 << 6)
181#define DESCRIPTORS_NO_SWAP (0 << 6)
182#define IPG_INT_RX(value) (((value) & 0x3fff) << 8)
183#define TX_BURST_SIZE_1_64BIT (0 << 22)
184#define TX_BURST_SIZE_2_64BIT (1 << 22)
185#define TX_BURST_SIZE_4_64BIT (2 << 22)
186#define TX_BURST_SIZE_8_64BIT (3 << 22)
187#define TX_BURST_SIZE_16_64BIT (4 << 22)
188
189#if defined(__BIG_ENDIAN)
190#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
191 RX_BURST_SIZE_4_64BIT | \
192 IPG_INT_RX(0) | \
193 TX_BURST_SIZE_4_64BIT
194#elif defined(__LITTLE_ENDIAN)
195#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
196 RX_BURST_SIZE_4_64BIT | \
197 BLM_RX_NO_SWAP | \
198 BLM_TX_NO_SWAP | \
199 IPG_INT_RX(0) | \
200 TX_BURST_SIZE_4_64BIT
201#else
202#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
203#endif
204
205/* These macros describe Ethernet Port serial control reg (PSCR) bits */
206#define SERIAL_PORT_DISABLE (0 << 0)
207#define SERIAL_PORT_ENABLE (1 << 0)
208#define DO_NOT_FORCE_LINK_PASS (0 << 1)
209#define FORCE_LINK_PASS (1 << 1)
210#define ENABLE_AUTO_NEG_FOR_DUPLX (0 << 2)
211#define DISABLE_AUTO_NEG_FOR_DUPLX (1 << 2)
212#define ENABLE_AUTO_NEG_FOR_FLOW_CTRL (0 << 3)
213#define DISABLE_AUTO_NEG_FOR_FLOW_CTRL (1 << 3)
214#define ADV_NO_FLOW_CTRL (0 << 4)
215#define ADV_SYMMETRIC_FLOW_CTRL (1 << 4)
216#define FORCE_FC_MODE_NO_PAUSE_DIS_TX (0 << 5)
217#define FORCE_FC_MODE_TX_PAUSE_DIS (1 << 5)
218#define FORCE_BP_MODE_NO_JAM (0 << 7)
219#define FORCE_BP_MODE_JAM_TX (1 << 7)
220#define FORCE_BP_MODE_JAM_TX_ON_RX_ERR (2 << 7)
221#define SERIAL_PORT_CONTROL_RESERVED (1 << 9)
222#define FORCE_LINK_FAIL (0 << 10)
223#define DO_NOT_FORCE_LINK_FAIL (1 << 10)
224#define RETRANSMIT_16_ATTEMPTS (0 << 11)
225#define RETRANSMIT_FOREVER (1 << 11)
226#define ENABLE_AUTO_NEG_SPEED_GMII (0 << 13)
227#define DISABLE_AUTO_NEG_SPEED_GMII (1 << 13)
228#define DTE_ADV_0 (0 << 14)
229#define DTE_ADV_1 (1 << 14)
230#define DISABLE_AUTO_NEG_BYPASS (0 << 15)
231#define ENABLE_AUTO_NEG_BYPASS (1 << 15)
232#define AUTO_NEG_NO_CHANGE (0 << 16)
233#define RESTART_AUTO_NEG (1 << 16)
234#define MAX_RX_PACKET_1518BYTE (0 << 17)
235#define MAX_RX_PACKET_1522BYTE (1 << 17)
236#define MAX_RX_PACKET_1552BYTE (2 << 17)
237#define MAX_RX_PACKET_9022BYTE (3 << 17)
238#define MAX_RX_PACKET_9192BYTE (4 << 17)
239#define MAX_RX_PACKET_9700BYTE (5 << 17)
240#define MAX_RX_PACKET_MASK (7 << 17)
241#define CLR_EXT_LOOPBACK (0 << 20)
242#define SET_EXT_LOOPBACK (1 << 20)
243#define SET_HALF_DUPLEX_MODE (0 << 21)
244#define SET_FULL_DUPLEX_MODE (1 << 21)
245#define DISABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX (0 << 22)
246#define ENABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX (1 << 22)
247#define SET_GMII_SPEED_TO_10_100 (0 << 23)
248#define SET_GMII_SPEED_TO_1000 (1 << 23)
249#define SET_MII_SPEED_TO_10 (0 << 24)
250#define SET_MII_SPEED_TO_100 (1 << 24)
251
252#define PORT_SERIAL_CONTROL_DEFAULT_VALUE \
253 DO_NOT_FORCE_LINK_PASS | \
254 ENABLE_AUTO_NEG_FOR_DUPLX | \
255 DISABLE_AUTO_NEG_FOR_FLOW_CTRL | \
256 ADV_SYMMETRIC_FLOW_CTRL | \
257 FORCE_FC_MODE_NO_PAUSE_DIS_TX | \
258 FORCE_BP_MODE_NO_JAM | \
259 (1 << 9) /* reserved */ | \
260 DO_NOT_FORCE_LINK_FAIL | \
261 RETRANSMIT_16_ATTEMPTS | \
262 ENABLE_AUTO_NEG_SPEED_GMII | \
263 DTE_ADV_0 | \
264 DISABLE_AUTO_NEG_BYPASS | \
265 AUTO_NEG_NO_CHANGE | \
266 MAX_RX_PACKET_9700BYTE | \
267 CLR_EXT_LOOPBACK | \
268 SET_FULL_DUPLEX_MODE | \
269 ENABLE_FLOW_CTRL_TX_RX_IN_FULL_DUPLEX
270
271/* These macros describe Ethernet Serial Status reg (PSR) bits */
272#define PORT_STATUS_MODE_10_BIT (1 << 0)
273#define PORT_STATUS_LINK_UP (1 << 1)
274#define PORT_STATUS_FULL_DUPLEX (1 << 2)
275#define PORT_STATUS_FLOW_CONTROL (1 << 3)
276#define PORT_STATUS_GMII_1000 (1 << 4)
277#define PORT_STATUS_MII_100 (1 << 5)
278/* PSR bit 6 is undocumented */
279#define PORT_STATUS_TX_IN_PROGRESS (1 << 7)
280#define PORT_STATUS_AUTONEG_BYPASSED (1 << 8)
281#define PORT_STATUS_PARTITION (1 << 9)
282#define PORT_STATUS_TX_FIFO_EMPTY (1 << 10)
283/* PSR bits 11-31 are reserved */
284
285#define PORT_DEFAULT_TRANSMIT_QUEUE_SIZE 800
286#define PORT_DEFAULT_RECEIVE_QUEUE_SIZE 400
287
288#define DESC_SIZE 64
289
290#define ETH_RX_QUEUES_ENABLED (1 << 0) /* use only Q0 for receive */
291#define ETH_TX_QUEUES_ENABLED (1 << 0) /* use only Q0 for transmit */
292
293#define ETH_INT_CAUSE_RX_DONE (ETH_RX_QUEUES_ENABLED << 2)
294#define ETH_INT_CAUSE_RX_ERROR (ETH_RX_QUEUES_ENABLED << 9)
295#define ETH_INT_CAUSE_RX (ETH_INT_CAUSE_RX_DONE | ETH_INT_CAUSE_RX_ERROR)
296#define ETH_INT_CAUSE_EXT 0x00000002
297#define ETH_INT_UNMASK_ALL (ETH_INT_CAUSE_RX | ETH_INT_CAUSE_EXT)
298
299#define ETH_INT_CAUSE_TX_DONE (ETH_TX_QUEUES_ENABLED << 0)
300#define ETH_INT_CAUSE_TX_ERROR (ETH_TX_QUEUES_ENABLED << 8)
301#define ETH_INT_CAUSE_TX (ETH_INT_CAUSE_TX_DONE | ETH_INT_CAUSE_TX_ERROR)
302#define ETH_INT_CAUSE_PHY 0x00010000
303#define ETH_INT_CAUSE_STATE 0x00100000
304#define ETH_INT_UNMASK_ALL_EXT (ETH_INT_CAUSE_TX | ETH_INT_CAUSE_PHY | \
305 ETH_INT_CAUSE_STATE)
306
307#define ETH_INT_MASK_ALL 0x00000000
308#define ETH_INT_MASK_ALL_EXT 0x00000000
309
310#define PHY_WAIT_ITERATIONS 1000 /* 1000 iterations * 10uS = 10mS max */
311#define PHY_WAIT_MICRO_SECONDS 10
312
313/* Buffer offset from buffer pointer */
314#define RX_BUF_OFFSET 0x2
315
316/* Gigabit Ethernet Unit Global Registers */
317
318/* MIB Counters register definitions */
319#define ETH_MIB_GOOD_OCTETS_RECEIVED_LOW 0x0
320#define ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH 0x4
321#define ETH_MIB_BAD_OCTETS_RECEIVED 0x8
322#define ETH_MIB_INTERNAL_MAC_TRANSMIT_ERR 0xc
323#define ETH_MIB_GOOD_FRAMES_RECEIVED 0x10
324#define ETH_MIB_BAD_FRAMES_RECEIVED 0x14
325#define ETH_MIB_BROADCAST_FRAMES_RECEIVED 0x18
326#define ETH_MIB_MULTICAST_FRAMES_RECEIVED 0x1c
327#define ETH_MIB_FRAMES_64_OCTETS 0x20
328#define ETH_MIB_FRAMES_65_TO_127_OCTETS 0x24
329#define ETH_MIB_FRAMES_128_TO_255_OCTETS 0x28
330#define ETH_MIB_FRAMES_256_TO_511_OCTETS 0x2c
331#define ETH_MIB_FRAMES_512_TO_1023_OCTETS 0x30
332#define ETH_MIB_FRAMES_1024_TO_MAX_OCTETS 0x34
333#define ETH_MIB_GOOD_OCTETS_SENT_LOW 0x38
334#define ETH_MIB_GOOD_OCTETS_SENT_HIGH 0x3c
335#define ETH_MIB_GOOD_FRAMES_SENT 0x40
336#define ETH_MIB_EXCESSIVE_COLLISION 0x44
337#define ETH_MIB_MULTICAST_FRAMES_SENT 0x48
338#define ETH_MIB_BROADCAST_FRAMES_SENT 0x4c
339#define ETH_MIB_UNREC_MAC_CONTROL_RECEIVED 0x50
340#define ETH_MIB_FC_SENT 0x54
341#define ETH_MIB_GOOD_FC_RECEIVED 0x58
342#define ETH_MIB_BAD_FC_RECEIVED 0x5c
343#define ETH_MIB_UNDERSIZE_RECEIVED 0x60
344#define ETH_MIB_FRAGMENTS_RECEIVED 0x64
345#define ETH_MIB_OVERSIZE_RECEIVED 0x68
346#define ETH_MIB_JABBER_RECEIVED 0x6c
347#define ETH_MIB_MAC_RECEIVE_ERROR 0x70
348#define ETH_MIB_BAD_CRC_EVENT 0x74
349#define ETH_MIB_COLLISION 0x78
350#define ETH_MIB_LATE_COLLISION 0x7c
351
352/* Port serial status reg (PSR) */
353#define ETH_INTERFACE_PCM 0x00000001
354#define ETH_LINK_IS_UP 0x00000002
355#define ETH_PORT_AT_FULL_DUPLEX 0x00000004
356#define ETH_RX_FLOW_CTRL_ENABLED 0x00000008
357#define ETH_GMII_SPEED_1000 0x00000010
358#define ETH_MII_SPEED_100 0x00000020
359#define ETH_TX_IN_PROGRESS 0x00000080
360#define ETH_BYPASS_ACTIVE 0x00000100
361#define ETH_PORT_AT_PARTITION_STATE 0x00000200
362#define ETH_PORT_TX_FIFO_EMPTY 0x00000400
363
364/* SMI reg */
365#define ETH_SMI_BUSY 0x10000000 /* 0 - Write, 1 - Read */
366#define ETH_SMI_READ_VALID 0x08000000 /* 0 - Write, 1 - Read */
367#define ETH_SMI_OPCODE_WRITE 0 /* Completion of Read */
368#define ETH_SMI_OPCODE_READ 0x04000000 /* Operation is in progress */
369
370/* Interrupt Cause Register Bit Definitions */
371
372/* SDMA command status fields macros */
373
374/* Tx & Rx descriptors status */
375#define ETH_ERROR_SUMMARY 0x00000001
376
377/* Tx & Rx descriptors command */
378#define ETH_BUFFER_OWNED_BY_DMA 0x80000000
379
380/* Tx descriptors status */
381#define ETH_LC_ERROR 0
382#define ETH_UR_ERROR 0x00000002
383#define ETH_RL_ERROR 0x00000004
384#define ETH_LLC_SNAP_FORMAT 0x00000200
385
386/* Rx descriptors status */
387#define ETH_OVERRUN_ERROR 0x00000002
388#define ETH_MAX_FRAME_LENGTH_ERROR 0x00000004
389#define ETH_RESOURCE_ERROR 0x00000006
390#define ETH_VLAN_TAGGED 0x00080000
391#define ETH_BPDU_FRAME 0x00100000
392#define ETH_UDP_FRAME_OVER_IP_V_4 0x00200000
393#define ETH_OTHER_FRAME_TYPE 0x00400000
394#define ETH_LAYER_2_IS_ETH_V_2 0x00800000
395#define ETH_FRAME_TYPE_IP_V_4 0x01000000
396#define ETH_FRAME_HEADER_OK 0x02000000
397#define ETH_RX_LAST_DESC 0x04000000
398#define ETH_RX_FIRST_DESC 0x08000000
399#define ETH_UNKNOWN_DESTINATION_ADDR 0x10000000
400#define ETH_RX_ENABLE_INTERRUPT 0x20000000
401#define ETH_LAYER_4_CHECKSUM_OK 0x40000000
402
403/* Rx descriptors byte count */
404#define ETH_FRAME_FRAGMENTED 0x00000004
405
406/* Tx descriptors command */
407#define ETH_LAYER_4_CHECKSUM_FIRST_DESC 0x00000400
408#define ETH_FRAME_SET_TO_VLAN 0x00008000
409#define ETH_UDP_FRAME 0x00010000
410#define ETH_GEN_TCP_UDP_CHECKSUM 0x00020000
411#define ETH_GEN_IP_V_4_CHECKSUM 0x00040000
412#define ETH_ZERO_PADDING 0x00080000
413#define ETH_TX_LAST_DESC 0x00100000
414#define ETH_TX_FIRST_DESC 0x00200000
415#define ETH_GEN_CRC 0x00400000
416#define ETH_TX_ENABLE_INTERRUPT 0x00800000
417#define ETH_AUTO_MODE 0x40000000
418
419#define ETH_TX_IHL_SHIFT 11
420
421/* typedefs */
422
423typedef enum _eth_func_ret_status {
424 ETH_OK, /* Returned as expected. */
425 ETH_ERROR, /* Fundamental error. */
426 ETH_RETRY, /* Could not process request. Try later.*/
427 ETH_END_OF_JOB, /* Ring has nothing to process. */
428 ETH_QUEUE_FULL, /* Ring resource error. */
429 ETH_QUEUE_LAST_RESOURCE /* Ring resources about to exhaust. */
430} ETH_FUNC_RET_STATUS;
431
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200432/* These are for big-endian machines. Little endian needs different
433 * definitions.
434 */
435#if defined(__BIG_ENDIAN)
436struct eth_rx_desc {
437 u16 byte_cnt; /* Descriptor buffer byte count */
438 u16 buf_size; /* Buffer size */
439 u32 cmd_sts; /* Descriptor command status */
440 u32 next_desc_ptr; /* Next descriptor pointer */
441 u32 buf_ptr; /* Descriptor buffer pointer */
442};
443
444struct eth_tx_desc {
445 u16 byte_cnt; /* buffer byte count */
446 u16 l4i_chk; /* CPU provided TCP checksum */
447 u32 cmd_sts; /* Command/status field */
448 u32 next_desc_ptr; /* Pointer to next descriptor */
449 u32 buf_ptr; /* pointer to buffer for this descriptor*/
450};
451#elif defined(__LITTLE_ENDIAN)
452struct eth_rx_desc {
453 u32 cmd_sts; /* Descriptor command status */
454 u16 buf_size; /* Buffer size */
455 u16 byte_cnt; /* Descriptor buffer byte count */
456 u32 buf_ptr; /* Descriptor buffer pointer */
457 u32 next_desc_ptr; /* Next descriptor pointer */
458};
459
460struct eth_tx_desc {
461 u32 cmd_sts; /* Command/status field */
462 u16 l4i_chk; /* CPU provided TCP checksum */
463 u16 byte_cnt; /* buffer byte count */
464 u32 buf_ptr; /* pointer to buffer for this descriptor*/
465 u32 next_desc_ptr; /* Pointer to next descriptor */
466};
467#else
468#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
469#endif
470
471/* Unified struct for Rx and Tx operations. The user is not required to */
472/* be familier with neither Tx nor Rx descriptors. */
473struct pkt_info {
474 unsigned short byte_cnt; /* Descriptor buffer byte count */
475 unsigned short l4i_chk; /* Tx CPU provided TCP Checksum */
476 unsigned int cmd_sts; /* Descriptor command status */
477 dma_addr_t buf_ptr; /* Descriptor buffer pointer */
478 struct sk_buff *return_info; /* User resource return information */
479};
480
481/* Ethernet port specific information */
482struct mv643xx_mib_counters {
483 u64 good_octets_received;
484 u32 bad_octets_received;
485 u32 internal_mac_transmit_err;
486 u32 good_frames_received;
487 u32 bad_frames_received;
488 u32 broadcast_frames_received;
489 u32 multicast_frames_received;
490 u32 frames_64_octets;
491 u32 frames_65_to_127_octets;
492 u32 frames_128_to_255_octets;
493 u32 frames_256_to_511_octets;
494 u32 frames_512_to_1023_octets;
495 u32 frames_1024_to_max_octets;
496 u64 good_octets_sent;
497 u32 good_frames_sent;
498 u32 excessive_collision;
499 u32 multicast_frames_sent;
500 u32 broadcast_frames_sent;
501 u32 unrec_mac_control_received;
502 u32 fc_sent;
503 u32 good_fc_received;
504 u32 bad_fc_received;
505 u32 undersize_received;
506 u32 fragments_received;
507 u32 oversize_received;
508 u32 jabber_received;
509 u32 mac_receive_error;
510 u32 bad_crc_event;
511 u32 collision;
512 u32 late_collision;
513};
514
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200515struct mv643xx_shared_private {
516 void __iomem *eth_base;
517
518 /* used to protect SMI_REG, which is shared across ports */
519 spinlock_t phy_lock;
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +0200520
521 u32 win_protect;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200522};
523
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200524struct mv643xx_private {
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200525 struct mv643xx_shared_private *shared;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200526 int port_num; /* User Ethernet port number */
527
528 u32 rx_sram_addr; /* Base address of rx sram area */
529 u32 rx_sram_size; /* Size of rx sram area */
530 u32 tx_sram_addr; /* Base address of tx sram area */
531 u32 tx_sram_size; /* Size of tx sram area */
532
533 int rx_resource_err; /* Rx ring resource error flag */
534
535 /* Tx/Rx rings managment indexes fields. For driver use */
536
537 /* Next available and first returning Rx resource */
538 int rx_curr_desc_q, rx_used_desc_q;
539
540 /* Next available and first returning Tx resource */
541 int tx_curr_desc_q, tx_used_desc_q;
542
543#ifdef MV643XX_TX_FAST_REFILL
544 u32 tx_clean_threshold;
545#endif
546
547 struct eth_rx_desc *p_rx_desc_area;
548 dma_addr_t rx_desc_dma;
549 int rx_desc_area_size;
550 struct sk_buff **rx_skb;
551
552 struct eth_tx_desc *p_tx_desc_area;
553 dma_addr_t tx_desc_dma;
554 int tx_desc_area_size;
555 struct sk_buff **tx_skb;
556
557 struct work_struct tx_timeout_task;
558
559 struct net_device *dev;
560 struct napi_struct napi;
561 struct net_device_stats stats;
562 struct mv643xx_mib_counters mib_counters;
563 spinlock_t lock;
564 /* Size of Tx Ring per queue */
565 int tx_ring_size;
566 /* Number of tx descriptors in use */
567 int tx_desc_count;
568 /* Size of Rx Ring per queue */
569 int rx_ring_size;
570 /* Number of rx descriptors in use */
571 int rx_desc_count;
572
573 /*
574 * Used in case RX Ring is empty, which can be caused when
575 * system does not have resources (skb's)
576 */
577 struct timer_list timeout;
578
579 u32 rx_int_coal;
580 u32 tx_int_coal;
581 struct mii_if_info mii;
582};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/* Static function declarations */
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200585static void eth_port_init(struct mv643xx_private *mp);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700586static void eth_port_reset(struct mv643xx_private *mp);
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200587static void eth_port_start(struct net_device *dev);
588
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700589static void ethernet_phy_reset(struct mv643xx_private *mp);
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200590
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700591static void eth_port_write_smi_reg(struct mv643xx_private *mp,
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200592 unsigned int phy_reg, unsigned int value);
593
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700594static void eth_port_read_smi_reg(struct mv643xx_private *mp,
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200595 unsigned int phy_reg, unsigned int *value);
596
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700597static void eth_clear_mib_counters(struct mv643xx_private *mp);
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200598
599static ETH_FUNC_RET_STATUS eth_port_receive(struct mv643xx_private *mp,
600 struct pkt_info *p_pkt_info);
601static ETH_FUNC_RET_STATUS eth_rx_return_buff(struct mv643xx_private *mp,
602 struct pkt_info *p_pkt_info);
603
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700604static void eth_port_uc_addr_get(struct mv643xx_private *mp,
605 unsigned char *p_addr);
606static void eth_port_uc_addr_set(struct mv643xx_private *mp,
607 unsigned char *p_addr);
Dale Farnsworth16e03012006-01-16 16:50:02 -0700608static void eth_port_set_multicast_list(struct net_device *);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700609static void mv643xx_eth_port_enable_tx(struct mv643xx_private *mp,
Dale Farnsworth12a87c62006-03-03 10:00:22 -0700610 unsigned int queues);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700611static void mv643xx_eth_port_enable_rx(struct mv643xx_private *mp,
Dale Farnsworth12a87c62006-03-03 10:00:22 -0700612 unsigned int queues);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700613static unsigned int mv643xx_eth_port_disable_tx(struct mv643xx_private *mp);
614static unsigned int mv643xx_eth_port_disable_rx(struct mv643xx_private *mp);
Dale Farnsworthab4384a2006-01-16 16:59:21 -0700615static int mv643xx_eth_open(struct net_device *);
616static int mv643xx_eth_stop(struct net_device *);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700617static void eth_port_init_mac_tables(struct mv643xx_private *mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618#ifdef MV643XX_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700619static int mv643xx_poll(struct napi_struct *napi, int budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#endif
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700621static int ethernet_phy_get(struct mv643xx_private *mp);
622static void ethernet_phy_set(struct mv643xx_private *mp, int phy_addr);
623static int ethernet_phy_detect(struct mv643xx_private *mp);
James Chapmanc28a4f82006-01-27 01:13:15 -0700624static int mv643xx_mdio_read(struct net_device *dev, int phy_id, int location);
625static void mv643xx_mdio_write(struct net_device *dev, int phy_id, int location, int val);
James Chapmand0412d92006-01-27 01:15:30 -0700626static int mv643xx_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd);
Jeff Garzik7282d492006-09-13 14:30:00 -0400627static const struct ethtool_ops mv643xx_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629static char mv643xx_driver_name[] = "mv643xx_eth";
630static char mv643xx_driver_version[] = "1.0";
631
Lennert Buytenhekec69d652008-03-18 11:38:05 -0700632static inline u32 rdl(struct mv643xx_private *mp, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200634 return readl(mp->shared->eth_base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Lennert Buytenhekec69d652008-03-18 11:38:05 -0700637static inline void wrl(struct mv643xx_private *mp, int offset, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +0200639 writel(data, mp->shared->eth_base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642/*
643 * Changes MTU (maximum transfer unit) of the gigabit ethenret port
644 *
645 * Input : pointer to ethernet interface network device structure
646 * new mtu size
647 * Output : 0 upon success, -EINVAL upon failure
648 */
649static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
650{
Dale Farnsworth8f518702006-01-16 16:56:30 -0700651 if ((new_mtu > 9500) || (new_mtu < 64))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 dev->mtu = new_mtu;
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700655 if (!netif_running(dev))
656 return 0;
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /*
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700659 * Stop and then re-open the interface. This will allocate RX
660 * skbs of the new MTU.
661 * There is a possible danger that the open will not succeed,
662 * due to memory being full, which might fail the open function.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700664 mv643xx_eth_stop(dev);
665 if (mv643xx_eth_open(dev)) {
666 printk(KERN_ERR "%s: Fatal error on opening device\n",
667 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return 0;
671}
672
673/*
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700674 * mv643xx_eth_rx_refill_descs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 *
676 * Fills / refills RX queue on a certain gigabit ethernet port
677 *
678 * Input : pointer to ethernet interface network device structure
679 * Output : N/A
680 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700681static void mv643xx_eth_rx_refill_descs(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 struct mv643xx_private *mp = netdev_priv(dev);
684 struct pkt_info pkt_info;
685 struct sk_buff *skb;
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700686 int unaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700688 while (mp->rx_desc_count < mp->rx_ring_size) {
Ralf Baechle908b6372007-02-26 19:52:06 +0000689 skb = dev_alloc_skb(ETH_RX_SKB_SIZE + dma_get_cache_alignment());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if (!skb)
691 break;
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700692 mp->rx_desc_count++;
Ralf Baechle908b6372007-02-26 19:52:06 +0000693 unaligned = (u32)skb->data & (dma_get_cache_alignment() - 1);
Dale Farnsworthb44cd572006-01-16 16:51:22 -0700694 if (unaligned)
Ralf Baechle908b6372007-02-26 19:52:06 +0000695 skb_reserve(skb, dma_get_cache_alignment() - unaligned);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 pkt_info.cmd_sts = ETH_RX_ENABLE_INTERRUPT;
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700697 pkt_info.byte_cnt = ETH_RX_SKB_SIZE;
698 pkt_info.buf_ptr = dma_map_single(NULL, skb->data,
699 ETH_RX_SKB_SIZE, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 pkt_info.return_info = skb;
701 if (eth_rx_return_buff(mp, &pkt_info) != ETH_OK) {
702 printk(KERN_ERR
703 "%s: Error allocating RX Ring\n", dev->name);
704 break;
705 }
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700706 skb_reserve(skb, ETH_HW_IP_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /*
709 * If RX ring is empty of SKB, set a timer to try allocating
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700710 * again at a later time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700712 if (mp->rx_desc_count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 printk(KERN_INFO "%s: Rx ring is empty\n", dev->name);
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700714 mp->timeout.expires = jiffies + (HZ / 10); /* 100 mSec */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 add_timer(&mp->timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719/*
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700720 * mv643xx_eth_rx_refill_descs_timer_wrapper
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 *
722 * Timer routine to wake up RX queue filling task. This function is
723 * used only in case the RX queue is empty, and all alloc_skb has
724 * failed (due to out of memory event).
725 *
726 * Input : pointer to ethernet interface network device structure
727 * Output : N/A
728 */
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700729static inline void mv643xx_eth_rx_refill_descs_timer_wrapper(unsigned long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700731 mv643xx_eth_rx_refill_descs((struct net_device *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
734/*
735 * mv643xx_eth_update_mac_address
736 *
737 * Update the MAC address of the port in the address table
738 *
739 * Input : pointer to ethernet interface network device structure
740 * Output : N/A
741 */
742static void mv643xx_eth_update_mac_address(struct net_device *dev)
743{
744 struct mv643xx_private *mp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700746 eth_port_init_mac_tables(mp);
747 eth_port_uc_addr_set(mp, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750/*
751 * mv643xx_eth_set_rx_mode
752 *
753 * Change from promiscuos to regular rx mode
754 *
755 * Input : pointer to ethernet interface network device structure
756 * Output : N/A
757 */
758static void mv643xx_eth_set_rx_mode(struct net_device *dev)
759{
760 struct mv643xx_private *mp = netdev_priv(dev);
Dale Farnsworth01999872006-01-27 01:18:01 -0700761 u32 config_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Lennert Buytenhekec69d652008-03-18 11:38:05 -0700763 config_reg = rdl(mp, PORT_CONFIG_REG(mp->port_num));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (dev->flags & IFF_PROMISC)
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +0200765 config_reg |= (u32) UNICAST_PROMISCUOUS_MODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 else
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +0200767 config_reg &= ~(u32) UNICAST_PROMISCUOUS_MODE;
Lennert Buytenhekec69d652008-03-18 11:38:05 -0700768 wrl(mp, PORT_CONFIG_REG(mp->port_num), config_reg);
Dale Farnsworth16e03012006-01-16 16:50:02 -0700769
770 eth_port_set_multicast_list(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771}
772
773/*
774 * mv643xx_eth_set_mac_address
775 *
776 * Change the interface's mac address.
777 * No special hardware thing should be done because interface is always
778 * put in promiscuous mode.
779 *
780 * Input : pointer to ethernet interface network device structure and
781 * a pointer to the designated entry to be added to the cache.
782 * Output : zero upon success, negative upon failure
783 */
784static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
785{
786 int i;
787
788 for (i = 0; i < 6; i++)
789 /* +2 is for the offset of the HW addr type */
790 dev->dev_addr[i] = ((unsigned char *)addr)[i + 2];
791 mv643xx_eth_update_mac_address(dev);
792 return 0;
793}
794
795/*
796 * mv643xx_eth_tx_timeout
797 *
798 * Called upon a timeout on transmitting a packet
799 *
800 * Input : pointer to ethernet interface network device structure.
801 * Output : N/A
802 */
803static void mv643xx_eth_tx_timeout(struct net_device *dev)
804{
805 struct mv643xx_private *mp = netdev_priv(dev);
806
807 printk(KERN_INFO "%s: TX timeout ", dev->name);
808
809 /* Do the reset outside of interrupt context */
810 schedule_work(&mp->tx_timeout_task);
811}
812
813/*
814 * mv643xx_eth_tx_timeout_task
815 *
816 * Actual routine to reset the adapter when a timeout on Tx has occurred
817 */
Al Viro91c7c562006-12-06 19:50:06 +0000818static void mv643xx_eth_tx_timeout_task(struct work_struct *ugly)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Al Viro91c7c562006-12-06 19:50:06 +0000820 struct mv643xx_private *mp = container_of(ugly, struct mv643xx_private,
821 tx_timeout_task);
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700822 struct net_device *dev = mp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Dale Farnsworth94843562006-04-11 18:24:26 -0700824 if (!netif_running(dev))
825 return;
826
827 netif_stop_queue(dev);
828
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -0700829 eth_port_reset(mp);
Dale Farnsworthed9b5d42006-01-27 01:06:38 -0700830 eth_port_start(dev);
Dale Farnsworth94843562006-04-11 18:24:26 -0700831
832 if (mp->tx_ring_size - mp->tx_desc_count >= MAX_DESCS_PER_SKB)
833 netif_wake_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700836/**
837 * mv643xx_eth_free_tx_descs - Free the tx desc data for completed descriptors
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 *
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700839 * If force is non-zero, frees uncompleted descriptors as well
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 */
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700841static int mv643xx_eth_free_tx_descs(struct net_device *dev, int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
843 struct mv643xx_private *mp = netdev_priv(dev);
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700844 struct eth_tx_desc *desc;
845 u32 cmd_sts;
846 struct sk_buff *skb;
847 unsigned long flags;
848 int tx_index;
849 dma_addr_t addr;
850 int count;
851 int released = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700853 while (mp->tx_desc_count > 0) {
854 spin_lock_irqsave(&mp->lock, flags);
Dale Farnsworthd344bff2007-01-23 09:52:25 -0700855
856 /* tx_desc_count might have changed before acquiring the lock */
857 if (mp->tx_desc_count <= 0) {
858 spin_unlock_irqrestore(&mp->lock, flags);
859 return released;
860 }
861
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700862 tx_index = mp->tx_used_desc_q;
863 desc = &mp->p_tx_desc_area[tx_index];
864 cmd_sts = desc->cmd_sts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700866 if (!force && (cmd_sts & ETH_BUFFER_OWNED_BY_DMA)) {
867 spin_unlock_irqrestore(&mp->lock, flags);
868 return released;
869 }
870
871 mp->tx_used_desc_q = (tx_index + 1) % mp->tx_ring_size;
872 mp->tx_desc_count--;
873
874 addr = desc->buf_ptr;
875 count = desc->byte_cnt;
876 skb = mp->tx_skb[tx_index];
877 if (skb)
878 mp->tx_skb[tx_index] = NULL;
879
Dale Farnsworth7303fde2006-03-03 10:03:36 -0700880 if (cmd_sts & ETH_ERROR_SUMMARY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 printk("%s: Error in TX\n", dev->name);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700882 dev->stats.tx_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
Dale Farnsworthd344bff2007-01-23 09:52:25 -0700885 spin_unlock_irqrestore(&mp->lock, flags);
886
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700887 if (cmd_sts & ETH_TX_FIRST_DESC)
888 dma_unmap_single(NULL, addr, count, DMA_TO_DEVICE);
Paolo Galtiericb415d32006-01-16 16:48:02 -0700889 else
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700890 dma_unmap_page(NULL, addr, count, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700892 if (skb)
893 dev_kfree_skb_irq(skb);
894
895 released = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return released;
899}
900
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700901static void mv643xx_eth_free_completed_tx_descs(struct net_device *dev)
902{
903 struct mv643xx_private *mp = netdev_priv(dev);
904
905 if (mv643xx_eth_free_tx_descs(dev, 0) &&
906 mp->tx_ring_size - mp->tx_desc_count >= MAX_DESCS_PER_SKB)
907 netif_wake_queue(dev);
908}
909
910static void mv643xx_eth_free_all_tx_descs(struct net_device *dev)
911{
912 mv643xx_eth_free_tx_descs(dev, 1);
913}
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915/*
916 * mv643xx_eth_receive
917 *
918 * This function is forward packets that are received from the port's
919 * queues toward kernel core or FastRoute them to another interface.
920 *
921 * Input : dev - a pointer to the required interface
922 * max - maximum number to receive (0 means unlimted)
923 *
924 * Output : number of served packets
925 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926static int mv643xx_eth_receive_queue(struct net_device *dev, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 struct mv643xx_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -0700929 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 unsigned int received_packets = 0;
931 struct sk_buff *skb;
932 struct pkt_info pkt_info;
933
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700934 while (budget-- > 0 && eth_port_receive(mp, &pkt_info) == ETH_OK) {
Jeff Garzik54caf442006-09-21 00:08:10 -0400935 dma_unmap_single(NULL, pkt_info.buf_ptr, ETH_RX_SKB_SIZE,
Dale Farnsworth71d28722006-09-13 09:21:08 -0700936 DMA_FROM_DEVICE);
Dale Farnsworthf98e36f12006-01-27 01:09:18 -0700937 mp->rx_desc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 received_packets++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700939
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700940 /*
941 * Update statistics.
942 * Note byte count includes 4 byte CRC count
943 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 stats->rx_packets++;
945 stats->rx_bytes += pkt_info.byte_cnt;
946 skb = pkt_info.return_info;
947 /*
948 * In case received a packet without first / last bits on OR
949 * the error summary bit is on, the packets needs to be dropeed.
950 */
951 if (((pkt_info.cmd_sts
952 & (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) !=
953 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC))
954 || (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)) {
955 stats->rx_dropped++;
956 if ((pkt_info.cmd_sts & (ETH_RX_FIRST_DESC |
957 ETH_RX_LAST_DESC)) !=
958 (ETH_RX_FIRST_DESC | ETH_RX_LAST_DESC)) {
959 if (net_ratelimit())
960 printk(KERN_ERR
961 "%s: Received packet spread "
962 "on multiple descriptors\n",
963 dev->name);
964 }
965 if (pkt_info.cmd_sts & ETH_ERROR_SUMMARY)
966 stats->rx_errors++;
967
968 dev_kfree_skb_irq(skb);
969 } else {
970 /*
971 * The -4 is for the CRC in the trailer of the
972 * received packet
973 */
974 skb_put(skb, pkt_info.byte_cnt - 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
976 if (pkt_info.cmd_sts & ETH_LAYER_4_CHECKSUM_OK) {
977 skb->ip_summed = CHECKSUM_UNNECESSARY;
978 skb->csum = htons(
979 (pkt_info.cmd_sts & 0x0007fff8) >> 3);
980 }
981 skb->protocol = eth_type_trans(skb, dev);
982#ifdef MV643XX_NAPI
983 netif_receive_skb(skb);
984#else
985 netif_rx(skb);
986#endif
987 }
Paolo Galtieri12ad74f2006-01-27 01:03:38 -0700988 dev->last_rx = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
Dale Farnsworthf78fb472006-03-03 10:05:26 -0700990 mv643xx_eth_rx_refill_descs(dev); /* Fill RX ring with skb's */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 return received_packets;
993}
994
James Chapmand0412d92006-01-27 01:15:30 -0700995/* Set the mv643xx port configuration register for the speed/duplex mode. */
996static void mv643xx_eth_update_pscr(struct net_device *dev,
997 struct ethtool_cmd *ecmd)
998{
999 struct mv643xx_private *mp = netdev_priv(dev);
1000 int port_num = mp->port_num;
1001 u32 o_pscr, n_pscr;
Dale Farnsworth12a87c62006-03-03 10:00:22 -07001002 unsigned int queues;
James Chapmand0412d92006-01-27 01:15:30 -07001003
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001004 o_pscr = rdl(mp, PORT_SERIAL_CONTROL_REG(port_num));
James Chapmand0412d92006-01-27 01:15:30 -07001005 n_pscr = o_pscr;
1006
1007 /* clear speed, duplex and rx buffer size fields */
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001008 n_pscr &= ~(SET_MII_SPEED_TO_100 |
1009 SET_GMII_SPEED_TO_1000 |
1010 SET_FULL_DUPLEX_MODE |
1011 MAX_RX_PACKET_MASK);
James Chapmand0412d92006-01-27 01:15:30 -07001012
1013 if (ecmd->duplex == DUPLEX_FULL)
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001014 n_pscr |= SET_FULL_DUPLEX_MODE;
James Chapmand0412d92006-01-27 01:15:30 -07001015
1016 if (ecmd->speed == SPEED_1000)
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001017 n_pscr |= SET_GMII_SPEED_TO_1000 |
1018 MAX_RX_PACKET_9700BYTE;
James Chapmand0412d92006-01-27 01:15:30 -07001019 else {
1020 if (ecmd->speed == SPEED_100)
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001021 n_pscr |= SET_MII_SPEED_TO_100;
1022 n_pscr |= MAX_RX_PACKET_1522BYTE;
James Chapmand0412d92006-01-27 01:15:30 -07001023 }
1024
1025 if (n_pscr != o_pscr) {
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001026 if ((o_pscr & SERIAL_PORT_ENABLE) == 0)
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001027 wrl(mp, PORT_SERIAL_CONTROL_REG(port_num), n_pscr);
James Chapmand0412d92006-01-27 01:15:30 -07001028 else {
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001029 queues = mv643xx_eth_port_disable_tx(mp);
James Chapmand0412d92006-01-27 01:15:30 -07001030
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001031 o_pscr &= ~SERIAL_PORT_ENABLE;
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001032 wrl(mp, PORT_SERIAL_CONTROL_REG(port_num), o_pscr);
1033 wrl(mp, PORT_SERIAL_CONTROL_REG(port_num), n_pscr);
1034 wrl(mp, PORT_SERIAL_CONTROL_REG(port_num), n_pscr);
Dale Farnsworth12a87c62006-03-03 10:00:22 -07001035 if (queues)
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001036 mv643xx_eth_port_enable_tx(mp, queues);
James Chapmand0412d92006-01-27 01:15:30 -07001037 }
1038 }
1039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/*
1042 * mv643xx_eth_int_handler
1043 *
1044 * Main interrupt handler for the gigbit ethernet ports
1045 *
1046 * Input : irq - irq number (not used)
1047 * dev_id - a pointer to the required interface's data structure
1048 * regs - not used
1049 * Output : N/A
1050 */
1051
David Howells7d12e782006-10-05 14:55:46 +01001052static irqreturn_t mv643xx_eth_int_handler(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
1054 struct net_device *dev = (struct net_device *)dev_id;
1055 struct mv643xx_private *mp = netdev_priv(dev);
1056 u32 eth_int_cause, eth_int_cause_ext = 0;
1057 unsigned int port_num = mp->port_num;
1058
1059 /* Read interrupt cause registers */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001060 eth_int_cause = rdl(mp, INTERRUPT_CAUSE_REG(port_num)) &
Dale Farnsworth7303fde2006-03-03 10:03:36 -07001061 ETH_INT_UNMASK_ALL;
Dale Farnsworth468d09f2006-03-03 10:04:39 -07001062 if (eth_int_cause & ETH_INT_CAUSE_EXT) {
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001063 eth_int_cause_ext = rdl(mp,
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001064 INTERRUPT_CAUSE_EXTEND_REG(port_num)) &
Dale Farnsworth7303fde2006-03-03 10:03:36 -07001065 ETH_INT_UNMASK_ALL_EXT;
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001066 wrl(mp, INTERRUPT_CAUSE_EXTEND_REG(port_num),
Dale Farnsworth468d09f2006-03-03 10:04:39 -07001067 ~eth_int_cause_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
Dale Farnsworth7303fde2006-03-03 10:03:36 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /* PHY status changed */
Dale Farnsworth2bcff602007-09-28 06:30:43 -07001071 if (eth_int_cause_ext & (ETH_INT_CAUSE_PHY | ETH_INT_CAUSE_STATE)) {
James Chapmand0412d92006-01-27 01:15:30 -07001072 struct ethtool_cmd cmd;
1073
James Chapmanc28a4f82006-01-27 01:13:15 -07001074 if (mii_link_ok(&mp->mii)) {
James Chapmand0412d92006-01-27 01:15:30 -07001075 mii_ethtool_gset(&mp->mii, &cmd);
1076 mv643xx_eth_update_pscr(dev, &cmd);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001077 mv643xx_eth_port_enable_tx(mp, ETH_TX_QUEUES_ENABLED);
James Chapmanc28a4f82006-01-27 01:13:15 -07001078 if (!netif_carrier_ok(dev)) {
1079 netif_carrier_on(dev);
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001080 if (mp->tx_ring_size - mp->tx_desc_count >=
1081 MAX_DESCS_PER_SKB)
James Chapmand0412d92006-01-27 01:15:30 -07001082 netif_wake_queue(dev);
James Chapmanc28a4f82006-01-27 01:13:15 -07001083 }
1084 } else if (netif_carrier_ok(dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 netif_stop_queue(dev);
James Chapmanc28a4f82006-01-27 01:13:15 -07001086 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088 }
1089
Dale Farnsworth468d09f2006-03-03 10:04:39 -07001090#ifdef MV643XX_NAPI
1091 if (eth_int_cause & ETH_INT_CAUSE_RX) {
1092 /* schedule the NAPI poll routine to maintain port */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001093 wrl(mp, INTERRUPT_MASK_REG(port_num), ETH_INT_MASK_ALL);
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001094
Dale Farnsworth468d09f2006-03-03 10:04:39 -07001095 /* wait for previous write to complete */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001096 rdl(mp, INTERRUPT_MASK_REG(port_num));
Dale Farnsworth468d09f2006-03-03 10:04:39 -07001097
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001098 netif_rx_schedule(dev, &mp->napi);
Dale Farnsworth468d09f2006-03-03 10:04:39 -07001099 }
1100#else
1101 if (eth_int_cause & ETH_INT_CAUSE_RX)
1102 mv643xx_eth_receive_queue(dev, INT_MAX);
Brent Cook5c537402006-04-11 18:23:15 -07001103#endif
Dale Farnsworth468d09f2006-03-03 10:04:39 -07001104 if (eth_int_cause_ext & ETH_INT_CAUSE_TX)
1105 mv643xx_eth_free_completed_tx_descs(dev);
Dale Farnsworth468d09f2006-03-03 10:04:39 -07001106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 /*
1108 * If no real interrupt occured, exit.
1109 * This can happen when using gigE interrupt coalescing mechanism.
1110 */
1111 if ((eth_int_cause == 0x0) && (eth_int_cause_ext == 0x0))
1112 return IRQ_NONE;
1113
1114 return IRQ_HANDLED;
1115}
1116
1117#ifdef MV643XX_COAL
1118
1119/*
1120 * eth_port_set_rx_coal - Sets coalescing interrupt mechanism on RX path
1121 *
1122 * DESCRIPTION:
1123 * This routine sets the RX coalescing interrupt mechanism parameter.
1124 * This parameter is a timeout counter, that counts in 64 t_clk
1125 * chunks ; that when timeout event occurs a maskable interrupt
1126 * occurs.
1127 * The parameter is calculated using the tClk of the MV-643xx chip
1128 * , and the required delay of the interrupt in usec.
1129 *
1130 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001131 * struct mv643xx_private *mp Ethernet port
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 * unsigned int t_clk t_clk of the MV-643xx chip in HZ units
1133 * unsigned int delay Delay in usec
1134 *
1135 * OUTPUT:
1136 * Interrupt coalescing mechanism value is set in MV-643xx chip.
1137 *
1138 * RETURN:
1139 * The interrupt coalescing value set in the gigE port.
1140 *
1141 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001142static unsigned int eth_port_set_rx_coal(struct mv643xx_private *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 unsigned int t_clk, unsigned int delay)
1144{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001145 unsigned int port_num = mp->port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 unsigned int coal = ((t_clk / 1000000) * delay) / 64;
1147
1148 /* Set RX Coalescing mechanism */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001149 wrl(mp, SDMA_CONFIG_REG(port_num),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 ((coal & 0x3fff) << 8) |
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001151 (rdl(mp, SDMA_CONFIG_REG(port_num))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 & 0xffc000ff));
1153
1154 return coal;
1155}
1156#endif
1157
1158/*
1159 * eth_port_set_tx_coal - Sets coalescing interrupt mechanism on TX path
1160 *
1161 * DESCRIPTION:
1162 * This routine sets the TX coalescing interrupt mechanism parameter.
1163 * This parameter is a timeout counter, that counts in 64 t_clk
1164 * chunks ; that when timeout event occurs a maskable interrupt
1165 * occurs.
1166 * The parameter is calculated using the t_cLK frequency of the
1167 * MV-643xx chip and the required delay in the interrupt in uSec
1168 *
1169 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001170 * struct mv643xx_private *mp Ethernet port
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 * unsigned int t_clk t_clk of the MV-643xx chip in HZ units
1172 * unsigned int delay Delay in uSeconds
1173 *
1174 * OUTPUT:
1175 * Interrupt coalescing mechanism value is set in MV-643xx chip.
1176 *
1177 * RETURN:
1178 * The interrupt coalescing value set in the gigE port.
1179 *
1180 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001181static unsigned int eth_port_set_tx_coal(struct mv643xx_private *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 unsigned int t_clk, unsigned int delay)
1183{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001184 unsigned int coal = ((t_clk / 1000000) * delay) / 64;
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* Set TX Coalescing mechanism */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001187 wrl(mp, TX_FIFO_URGENT_THRESHOLD_REG(mp->port_num), coal << 4);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return coal;
1190}
1191
1192/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 * ether_init_rx_desc_ring - Curve a Rx chain desc list and buffer in memory.
1194 *
1195 * DESCRIPTION:
1196 * This function prepares a Rx chained list of descriptors and packet
1197 * buffers in a form of a ring. The routine must be called after port
1198 * initialization routine and before port start routine.
1199 * The Ethernet SDMA engine uses CPU bus addresses to access the various
1200 * devices in the system (i.e. DRAM). This function uses the ethernet
1201 * struct 'virtual to physical' routine (set by the user) to set the ring
1202 * with physical addresses.
1203 *
1204 * INPUT:
1205 * struct mv643xx_private *mp Ethernet Port Control srtuct.
1206 *
1207 * OUTPUT:
1208 * The routine updates the Ethernet port control struct with information
1209 * regarding the Rx descriptors and buffers.
1210 *
1211 * RETURN:
1212 * None.
1213 */
1214static void ether_init_rx_desc_ring(struct mv643xx_private *mp)
1215{
1216 volatile struct eth_rx_desc *p_rx_desc;
1217 int rx_desc_num = mp->rx_ring_size;
1218 int i;
1219
1220 /* initialize the next_desc_ptr links in the Rx descriptors ring */
1221 p_rx_desc = (struct eth_rx_desc *)mp->p_rx_desc_area;
1222 for (i = 0; i < rx_desc_num; i++) {
1223 p_rx_desc[i].next_desc_ptr = mp->rx_desc_dma +
1224 ((i + 1) % rx_desc_num) * sizeof(struct eth_rx_desc);
1225 }
1226
1227 /* Save Rx desc pointer to driver struct. */
1228 mp->rx_curr_desc_q = 0;
1229 mp->rx_used_desc_q = 0;
1230
1231 mp->rx_desc_area_size = rx_desc_num * sizeof(struct eth_rx_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232}
1233
1234/*
1235 * ether_init_tx_desc_ring - Curve a Tx chain desc list and buffer in memory.
1236 *
1237 * DESCRIPTION:
1238 * This function prepares a Tx chained list of descriptors and packet
1239 * buffers in a form of a ring. The routine must be called after port
1240 * initialization routine and before port start routine.
1241 * The Ethernet SDMA engine uses CPU bus addresses to access the various
1242 * devices in the system (i.e. DRAM). This function uses the ethernet
1243 * struct 'virtual to physical' routine (set by the user) to set the ring
1244 * with physical addresses.
1245 *
1246 * INPUT:
1247 * struct mv643xx_private *mp Ethernet Port Control srtuct.
1248 *
1249 * OUTPUT:
1250 * The routine updates the Ethernet port control struct with information
1251 * regarding the Tx descriptors and buffers.
1252 *
1253 * RETURN:
1254 * None.
1255 */
1256static void ether_init_tx_desc_ring(struct mv643xx_private *mp)
1257{
1258 int tx_desc_num = mp->tx_ring_size;
1259 struct eth_tx_desc *p_tx_desc;
1260 int i;
1261
1262 /* Initialize the next_desc_ptr links in the Tx descriptors ring */
1263 p_tx_desc = (struct eth_tx_desc *)mp->p_tx_desc_area;
1264 for (i = 0; i < tx_desc_num; i++) {
1265 p_tx_desc[i].next_desc_ptr = mp->tx_desc_dma +
1266 ((i + 1) % tx_desc_num) * sizeof(struct eth_tx_desc);
1267 }
1268
1269 mp->tx_curr_desc_q = 0;
1270 mp->tx_used_desc_q = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 mp->tx_desc_area_size = tx_desc_num * sizeof(struct eth_tx_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
James Chapmand0412d92006-01-27 01:15:30 -07001275static int mv643xx_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1276{
1277 struct mv643xx_private *mp = netdev_priv(dev);
1278 int err;
1279
1280 spin_lock_irq(&mp->lock);
1281 err = mii_ethtool_sset(&mp->mii, cmd);
1282 spin_unlock_irq(&mp->lock);
1283
1284 return err;
1285}
1286
1287static int mv643xx_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1288{
1289 struct mv643xx_private *mp = netdev_priv(dev);
1290 int err;
1291
1292 spin_lock_irq(&mp->lock);
1293 err = mii_ethtool_gset(&mp->mii, cmd);
1294 spin_unlock_irq(&mp->lock);
1295
1296 /* The PHY may support 1000baseT_Half, but the mv643xx does not */
1297 cmd->supported &= ~SUPPORTED_1000baseT_Half;
1298 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1299
1300 return err;
1301}
1302
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001303/*
1304 * mv643xx_eth_open
1305 *
1306 * This function is called when openning the network device. The function
1307 * should initialize all the hardware, initialize cyclic Rx/Tx
1308 * descriptors chain and buffers and allocate an IRQ to the network
1309 * device.
1310 *
1311 * Input : a pointer to the network device structure
1312 *
1313 * Output : zero of success , nonzero if fails.
1314 */
1315
1316static int mv643xx_eth_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 struct mv643xx_private *mp = netdev_priv(dev);
1319 unsigned int port_num = mp->port_num;
1320 unsigned int size;
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001321 int err;
1322
Dale Farnsworth85cf5722007-03-07 22:21:23 -07001323 /* Clear any pending ethernet port interrupts */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001324 wrl(mp, INTERRUPT_CAUSE_REG(port_num), 0);
1325 wrl(mp, INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
Dale Farnsworth85cf5722007-03-07 22:21:23 -07001326 /* wait for previous write to complete */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001327 rdl(mp, INTERRUPT_CAUSE_EXTEND_REG(port_num));
Dale Farnsworth85cf5722007-03-07 22:21:23 -07001328
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001329 err = request_irq(dev->irq, mv643xx_eth_int_handler,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07001330 IRQF_SHARED | IRQF_SAMPLE_RANDOM, dev->name, dev);
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001331 if (err) {
Lennert Buytenhekc1b35a22008-03-18 11:37:19 -07001332 printk(KERN_ERR "%s: Can not assign IRQ\n", dev->name);
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001333 return -EAGAIN;
1334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 eth_port_init(mp);
1337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 memset(&mp->timeout, 0, sizeof(struct timer_list));
Dale Farnsworthf78fb472006-03-03 10:05:26 -07001339 mp->timeout.function = mv643xx_eth_rx_refill_descs_timer_wrapper;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 mp->timeout.data = (unsigned long)dev;
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /* Allocate RX and TX skb rings */
1343 mp->rx_skb = kmalloc(sizeof(*mp->rx_skb) * mp->rx_ring_size,
1344 GFP_KERNEL);
1345 if (!mp->rx_skb) {
1346 printk(KERN_ERR "%s: Cannot allocate Rx skb ring\n", dev->name);
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001347 err = -ENOMEM;
1348 goto out_free_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 }
1350 mp->tx_skb = kmalloc(sizeof(*mp->tx_skb) * mp->tx_ring_size,
1351 GFP_KERNEL);
1352 if (!mp->tx_skb) {
1353 printk(KERN_ERR "%s: Cannot allocate Tx skb ring\n", dev->name);
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001354 err = -ENOMEM;
1355 goto out_free_rx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 }
1357
1358 /* Allocate TX ring */
Dale Farnsworthf98e36f12006-01-27 01:09:18 -07001359 mp->tx_desc_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 size = mp->tx_ring_size * sizeof(struct eth_tx_desc);
1361 mp->tx_desc_area_size = size;
1362
1363 if (mp->tx_sram_size) {
1364 mp->p_tx_desc_area = ioremap(mp->tx_sram_addr,
1365 mp->tx_sram_size);
1366 mp->tx_desc_dma = mp->tx_sram_addr;
1367 } else
1368 mp->p_tx_desc_area = dma_alloc_coherent(NULL, size,
1369 &mp->tx_desc_dma,
1370 GFP_KERNEL);
1371
1372 if (!mp->p_tx_desc_area) {
1373 printk(KERN_ERR "%s: Cannot allocate Tx Ring (size %d bytes)\n",
1374 dev->name, size);
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001375 err = -ENOMEM;
1376 goto out_free_tx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378 BUG_ON((u32) mp->p_tx_desc_area & 0xf); /* check 16-byte alignment */
1379 memset((void *)mp->p_tx_desc_area, 0, mp->tx_desc_area_size);
1380
1381 ether_init_tx_desc_ring(mp);
1382
1383 /* Allocate RX ring */
Dale Farnsworthf98e36f12006-01-27 01:09:18 -07001384 mp->rx_desc_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 size = mp->rx_ring_size * sizeof(struct eth_rx_desc);
1386 mp->rx_desc_area_size = size;
1387
1388 if (mp->rx_sram_size) {
1389 mp->p_rx_desc_area = ioremap(mp->rx_sram_addr,
1390 mp->rx_sram_size);
1391 mp->rx_desc_dma = mp->rx_sram_addr;
1392 } else
1393 mp->p_rx_desc_area = dma_alloc_coherent(NULL, size,
1394 &mp->rx_desc_dma,
1395 GFP_KERNEL);
1396
1397 if (!mp->p_rx_desc_area) {
1398 printk(KERN_ERR "%s: Cannot allocate Rx ring (size %d bytes)\n",
1399 dev->name, size);
1400 printk(KERN_ERR "%s: Freeing previously allocated TX queues...",
1401 dev->name);
1402 if (mp->rx_sram_size)
Dale Farnsworthdd09b1d2006-01-16 16:53:15 -07001403 iounmap(mp->p_tx_desc_area);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 else
1405 dma_free_coherent(NULL, mp->tx_desc_area_size,
1406 mp->p_tx_desc_area, mp->tx_desc_dma);
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001407 err = -ENOMEM;
1408 goto out_free_tx_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410 memset((void *)mp->p_rx_desc_area, 0, size);
1411
1412 ether_init_rx_desc_ring(mp);
1413
Dale Farnsworthf78fb472006-03-03 10:05:26 -07001414 mv643xx_eth_rx_refill_descs(dev); /* Fill RX ring with skb's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001416#ifdef MV643XX_NAPI
1417 napi_enable(&mp->napi);
1418#endif
1419
Dale Farnsworthed9b5d42006-01-27 01:06:38 -07001420 eth_port_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 /* Interrupt Coalescing */
1423
1424#ifdef MV643XX_COAL
1425 mp->rx_int_coal =
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001426 eth_port_set_rx_coal(mp, 133000000, MV643XX_RX_COAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427#endif
1428
1429 mp->tx_int_coal =
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001430 eth_port_set_tx_coal(mp, 133000000, MV643XX_TX_COAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Dale Farnsworth8f518702006-01-16 16:56:30 -07001432 /* Unmask phy and link status changes interrupts */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001433 wrl(mp, INTERRUPT_EXTEND_MASK_REG(port_num), ETH_INT_UNMASK_ALL_EXT);
Dale Farnsworth8f518702006-01-16 16:56:30 -07001434
1435 /* Unmask RX buffer and TX end interrupt */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001436 wrl(mp, INTERRUPT_MASK_REG(port_num), ETH_INT_UNMASK_ALL);
James Chapmand0412d92006-01-27 01:15:30 -07001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001439
1440out_free_tx_skb:
1441 kfree(mp->tx_skb);
1442out_free_rx_skb:
1443 kfree(mp->rx_skb);
1444out_free_irq:
1445 free_irq(dev->irq, dev);
1446
1447 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
1450static void mv643xx_eth_free_tx_rings(struct net_device *dev)
1451{
1452 struct mv643xx_private *mp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 /* Stop Tx Queues */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001455 mv643xx_eth_port_disable_tx(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001457 /* Free outstanding skb's on TX ring */
1458 mv643xx_eth_free_all_tx_descs(dev);
1459
1460 BUG_ON(mp->tx_used_desc_q != mp->tx_curr_desc_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 /* Free TX ring */
1463 if (mp->tx_sram_size)
1464 iounmap(mp->p_tx_desc_area);
1465 else
1466 dma_free_coherent(NULL, mp->tx_desc_area_size,
1467 mp->p_tx_desc_area, mp->tx_desc_dma);
1468}
1469
1470static void mv643xx_eth_free_rx_rings(struct net_device *dev)
1471{
1472 struct mv643xx_private *mp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 int curr;
1474
1475 /* Stop RX Queues */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001476 mv643xx_eth_port_disable_rx(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 /* Free preallocated skb's on RX rings */
Dale Farnsworthf98e36f12006-01-27 01:09:18 -07001479 for (curr = 0; mp->rx_desc_count && curr < mp->rx_ring_size; curr++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (mp->rx_skb[curr]) {
1481 dev_kfree_skb(mp->rx_skb[curr]);
Dale Farnsworthf98e36f12006-01-27 01:09:18 -07001482 mp->rx_desc_count--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484 }
1485
Dale Farnsworthf98e36f12006-01-27 01:09:18 -07001486 if (mp->rx_desc_count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 printk(KERN_ERR
1488 "%s: Error in freeing Rx Ring. %d skb's still"
1489 " stuck in RX Ring - ignoring them\n", dev->name,
Dale Farnsworthf98e36f12006-01-27 01:09:18 -07001490 mp->rx_desc_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 /* Free RX ring */
1492 if (mp->rx_sram_size)
1493 iounmap(mp->p_rx_desc_area);
1494 else
1495 dma_free_coherent(NULL, mp->rx_desc_area_size,
1496 mp->p_rx_desc_area, mp->rx_desc_dma);
1497}
1498
1499/*
1500 * mv643xx_eth_stop
1501 *
1502 * This function is used when closing the network device.
1503 * It updates the hardware,
1504 * release all memory that holds buffers and descriptors and release the IRQ.
1505 * Input : a pointer to the device structure
1506 * Output : zero if success , nonzero if fails
1507 */
1508
Dale Farnsworthab4384a2006-01-16 16:59:21 -07001509static int mv643xx_eth_stop(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
1511 struct mv643xx_private *mp = netdev_priv(dev);
1512 unsigned int port_num = mp->port_num;
1513
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001514 /* Mask all interrupts on ethernet port */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001515 wrl(mp, INTERRUPT_MASK_REG(port_num), ETH_INT_MASK_ALL);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001516 /* wait for previous write to complete */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001517 rdl(mp, INTERRUPT_MASK_REG(port_num));
Dale Farnsworth8f518702006-01-16 16:56:30 -07001518
1519#ifdef MV643XX_NAPI
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001520 napi_disable(&mp->napi);
Dale Farnsworth8f518702006-01-16 16:56:30 -07001521#endif
1522 netif_carrier_off(dev);
1523 netif_stop_queue(dev);
1524
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001525 eth_port_reset(mp);
Dale Farnsworth8f518702006-01-16 16:56:30 -07001526
1527 mv643xx_eth_free_tx_rings(dev);
1528 mv643xx_eth_free_rx_rings(dev);
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 free_irq(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 return 0;
1533}
1534
1535#ifdef MV643XX_NAPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536/*
1537 * mv643xx_poll
1538 *
1539 * This function is used in case of NAPI
1540 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001541static int mv643xx_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001543 struct mv643xx_private *mp = container_of(napi, struct mv643xx_private, napi);
1544 struct net_device *dev = mp->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 unsigned int port_num = mp->port_num;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001546 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548#ifdef MV643XX_TX_FAST_REFILL
1549 if (++mp->tx_clean_threshold > 5) {
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001550 mv643xx_eth_free_completed_tx_descs(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 mp->tx_clean_threshold = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553#endif
1554
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001555 work_done = 0;
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001556 if ((rdl(mp, RX_CURRENT_QUEUE_DESC_PTR_0(port_num)))
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001557 != (u32) mp->rx_used_desc_q)
1558 work_done = mv643xx_eth_receive_queue(dev, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001560 if (work_done < budget) {
1561 netif_rx_complete(dev, napi);
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001562 wrl(mp, INTERRUPT_CAUSE_REG(port_num), 0);
1563 wrl(mp, INTERRUPT_CAUSE_EXTEND_REG(port_num), 0);
1564 wrl(mp, INTERRUPT_MASK_REG(port_num), ETH_INT_UNMASK_ALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 }
1566
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001567 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569#endif
1570
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001571/**
1572 * has_tiny_unaligned_frags - check if skb has any small, unaligned fragments
1573 *
1574 * Hardware can't handle unaligned fragments smaller than 9 bytes.
Paul Janzenf7ea3332006-01-16 16:52:13 -07001575 * This helper function detects that case.
1576 */
1577
1578static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
1579{
Dale Farnsworthb4de9052006-01-27 01:04:43 -07001580 unsigned int frag;
1581 skb_frag_t *fragp;
Paul Janzenf7ea3332006-01-16 16:52:13 -07001582
Dale Farnsworthb4de9052006-01-27 01:04:43 -07001583 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
1584 fragp = &skb_shinfo(skb)->frags[frag];
1585 if (fragp->size <= 8 && fragp->page_offset & 0x7)
1586 return 1;
1587 }
1588 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -07001589}
1590
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001591/**
1592 * eth_alloc_tx_desc_index - return the index of the next available tx desc
1593 */
1594static int eth_alloc_tx_desc_index(struct mv643xx_private *mp)
1595{
1596 int tx_desc_curr;
Paul Janzenf7ea3332006-01-16 16:52:13 -07001597
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001598 BUG_ON(mp->tx_desc_count >= mp->tx_ring_size);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001599
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001600 tx_desc_curr = mp->tx_curr_desc_q;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001601 mp->tx_curr_desc_q = (tx_desc_curr + 1) % mp->tx_ring_size;
1602
1603 BUG_ON(mp->tx_curr_desc_q == mp->tx_used_desc_q);
1604
1605 return tx_desc_curr;
1606}
1607
1608/**
1609 * eth_tx_fill_frag_descs - fill tx hw descriptors for an skb's fragments.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 *
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001611 * Ensure the data for each fragment to be transmitted is mapped properly,
1612 * then fill in descriptors in the tx hw queue.
1613 */
1614static void eth_tx_fill_frag_descs(struct mv643xx_private *mp,
1615 struct sk_buff *skb)
1616{
1617 int frag;
1618 int tx_index;
1619 struct eth_tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001620
1621 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
1622 skb_frag_t *this_frag = &skb_shinfo(skb)->frags[frag];
1623
1624 tx_index = eth_alloc_tx_desc_index(mp);
1625 desc = &mp->p_tx_desc_area[tx_index];
1626
1627 desc->cmd_sts = ETH_BUFFER_OWNED_BY_DMA;
1628 /* Last Frag enables interrupt and frees the skb */
1629 if (frag == (skb_shinfo(skb)->nr_frags - 1)) {
1630 desc->cmd_sts |= ETH_ZERO_PADDING |
1631 ETH_TX_LAST_DESC |
1632 ETH_TX_ENABLE_INTERRUPT;
1633 mp->tx_skb[tx_index] = skb;
1634 } else
Al Viro05980772006-05-30 23:59:09 -04001635 mp->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001636
1637 desc = &mp->p_tx_desc_area[tx_index];
1638 desc->l4i_chk = 0;
1639 desc->byte_cnt = this_frag->size;
1640 desc->buf_ptr = dma_map_page(NULL, this_frag->page,
1641 this_frag->page_offset,
1642 this_frag->size,
1643 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001644 }
1645}
1646
Byron Bradley324ff2c2008-02-04 23:47:15 -08001647static inline __be16 sum16_as_be(__sum16 sum)
1648{
1649 return (__force __be16)sum;
1650}
1651
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001652/**
1653 * eth_tx_submit_descs_for_skb - submit data from an skb to the tx hw
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 *
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001655 * Ensure the data for an skb to be transmitted is mapped properly,
1656 * then fill in descriptors in the tx hw queue and start the hardware.
1657 */
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001658static void eth_tx_submit_descs_for_skb(struct mv643xx_private *mp,
1659 struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001660{
1661 int tx_index;
1662 struct eth_tx_desc *desc;
1663 u32 cmd_sts;
1664 int length;
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001665 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001666
1667 cmd_sts = ETH_TX_FIRST_DESC | ETH_GEN_CRC | ETH_BUFFER_OWNED_BY_DMA;
1668
1669 tx_index = eth_alloc_tx_desc_index(mp);
1670 desc = &mp->p_tx_desc_area[tx_index];
1671
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001672 if (nr_frags) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001673 eth_tx_fill_frag_descs(mp, skb);
1674
1675 length = skb_headlen(skb);
Al Viro05980772006-05-30 23:59:09 -04001676 mp->tx_skb[tx_index] = NULL;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001677 } else {
1678 cmd_sts |= ETH_ZERO_PADDING |
1679 ETH_TX_LAST_DESC |
1680 ETH_TX_ENABLE_INTERRUPT;
1681 length = skb->len;
1682 mp->tx_skb[tx_index] = skb;
1683 }
1684
1685 desc->byte_cnt = length;
1686 desc->buf_ptr = dma_map_single(NULL, skb->data, length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001687
Patrick McHardy84fa7932006-08-29 16:44:56 -07001688 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Byron Bradley324ff2c2008-02-04 23:47:15 -08001689 BUG_ON(skb->protocol != htons(ETH_P_IP));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001690
1691 cmd_sts |= ETH_GEN_TCP_UDP_CHECKSUM |
1692 ETH_GEN_IP_V_4_CHECKSUM |
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001693 ip_hdr(skb)->ihl << ETH_TX_IHL_SHIFT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001694
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001695 switch (ip_hdr(skb)->protocol) {
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001696 case IPPROTO_UDP:
1697 cmd_sts |= ETH_UDP_FRAME;
Byron Bradley324ff2c2008-02-04 23:47:15 -08001698 desc->l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001699 break;
1700 case IPPROTO_TCP:
Byron Bradley324ff2c2008-02-04 23:47:15 -08001701 desc->l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001702 break;
1703 default:
1704 BUG();
1705 }
1706 } else {
1707 /* Errata BTS #50, IHL must be 5 if no HW checksum */
1708 cmd_sts |= 5 << ETH_TX_IHL_SHIFT;
1709 desc->l4i_chk = 0;
1710 }
1711
1712 /* ensure all other descriptors are written before first cmd_sts */
1713 wmb();
1714 desc->cmd_sts = cmd_sts;
1715
1716 /* ensure all descriptors are written before poking hardware */
1717 wmb();
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001718 mv643xx_eth_port_enable_tx(mp, ETH_TX_QUEUES_ENABLED);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001719
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001720 mp->tx_desc_count += nr_frags + 1;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001721}
1722
1723/**
1724 * mv643xx_eth_start_xmit - queue an skb to the hardware for transmission
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 */
1727static int mv643xx_eth_start_xmit(struct sk_buff *skb, struct net_device *dev)
1728{
1729 struct mv643xx_private *mp = netdev_priv(dev);
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001730 struct net_device_stats *stats = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001733 BUG_ON(netif_queue_stopped(dev));
Dale Farnsworth94843562006-04-11 18:24:26 -07001734
Lennert Buytenhek4d64e712008-03-18 11:32:41 -07001735 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
1736 stats->tx_dropped++;
1737 printk(KERN_DEBUG "%s: failed to linearize tiny "
1738 "unaligned fragment\n", dev->name);
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -07001739 return NETDEV_TX_BUSY;
Dale Farnsworth94843562006-04-11 18:24:26 -07001740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 spin_lock_irqsave(&mp->lock, flags);
1743
Lennert Buytenhek4d64e712008-03-18 11:32:41 -07001744 if (mp->tx_ring_size - mp->tx_desc_count < MAX_DESCS_PER_SKB) {
1745 printk(KERN_ERR "%s: transmit with queue full\n", dev->name);
1746 netif_stop_queue(dev);
1747 spin_unlock_irqrestore(&mp->lock, flags);
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -07001748 return NETDEV_TX_BUSY;
Lennert Buytenhek4d64e712008-03-18 11:32:41 -07001749 }
1750
Dale Farnsworthff561ee2006-03-03 10:02:51 -07001751 eth_tx_submit_descs_for_skb(mp, skb);
Dale Farnsworthe7e381f2007-09-14 11:23:16 -07001752 stats->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 stats->tx_packets++;
1754 dev->trans_start = jiffies;
1755
Dale Farnsworthc8aaea22006-03-03 10:02:05 -07001756 if (mp->tx_ring_size - mp->tx_desc_count < MAX_DESCS_PER_SKB)
1757 netif_stop_queue(dev);
1758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 spin_unlock_irqrestore(&mp->lock, flags);
1760
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -07001761 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001764#ifdef CONFIG_NET_POLL_CONTROLLER
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001765static void mv643xx_netpoll(struct net_device *netdev)
1766{
1767 struct mv643xx_private *mp = netdev_priv(netdev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001768 int port_num = mp->port_num;
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001769
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001770 wrl(mp, INTERRUPT_MASK_REG(port_num), ETH_INT_MASK_ALL);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001771 /* wait for previous write to complete */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001772 rdl(mp, INTERRUPT_MASK_REG(port_num));
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001773
Al Viro9da3b1a2006-10-08 15:00:44 +01001774 mv643xx_eth_int_handler(netdev->irq, netdev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07001775
Lennert Buytenhekec69d652008-03-18 11:38:05 -07001776 wrl(mp, INTERRUPT_MASK_REG(port_num), ETH_INT_UNMASK_ALL);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001777}
1778#endif
1779
James Chapmand0412d92006-01-27 01:15:30 -07001780static void mv643xx_init_ethtool_cmd(struct net_device *dev, int phy_address,
1781 int speed, int duplex,
1782 struct ethtool_cmd *cmd)
1783{
1784 struct mv643xx_private *mp = netdev_priv(dev);
1785
1786 memset(cmd, 0, sizeof(*cmd));
1787
1788 cmd->port = PORT_MII;
1789 cmd->transceiver = XCVR_INTERNAL;
1790 cmd->phy_address = phy_address;
1791
1792 if (speed == 0) {
1793 cmd->autoneg = AUTONEG_ENABLE;
1794 /* mii lib checks, but doesn't use speed on AUTONEG_ENABLE */
1795 cmd->speed = SPEED_100;
1796 cmd->advertising = ADVERTISED_10baseT_Half |
1797 ADVERTISED_10baseT_Full |
1798 ADVERTISED_100baseT_Half |
1799 ADVERTISED_100baseT_Full;
1800 if (mp->mii.supports_gmii)
1801 cmd->advertising |= ADVERTISED_1000baseT_Full;
1802 } else {
1803 cmd->autoneg = AUTONEG_DISABLE;
1804 cmd->speed = speed;
1805 cmd->duplex = duplex;
1806 }
1807}
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809/*/
1810 * mv643xx_eth_probe
1811 *
1812 * First function called after registering the network device.
1813 * It's purpose is to initialize the device as an ethernet device,
1814 * fill the ethernet device structure with pointers * to functions,
1815 * and set the MAC address of the interface
1816 *
1817 * Input : struct device *
1818 * Output : -ENOMEM if failed , 0 if success
1819 */
Russell King3ae5eae2005-11-09 22:32:44 +00001820static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 struct mv643xx_eth_platform_data *pd;
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001823 int port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 struct mv643xx_private *mp;
1825 struct net_device *dev;
1826 u8 *p;
1827 struct resource *res;
1828 int err;
James Chapmand0412d92006-01-27 01:15:30 -07001829 struct ethtool_cmd cmd;
Dale Farnsworth01999872006-01-27 01:18:01 -07001830 int duplex = DUPLEX_HALF;
1831 int speed = 0; /* default to auto-negotiation */
Al Viroc5d64712007-10-13 08:30:26 +01001832 DECLARE_MAC_BUF(mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001834 pd = pdev->dev.platform_data;
1835 if (pd == NULL) {
1836 printk(KERN_ERR "No mv643xx_eth_platform_data\n");
1837 return -ENODEV;
1838 }
1839
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02001840 if (pd->shared == NULL) {
1841 printk(KERN_ERR "No mv643xx_eth_platform_data->shared\n");
1842 return -ENODEV;
1843 }
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 dev = alloc_etherdev(sizeof(struct mv643xx_private));
1846 if (!dev)
1847 return -ENOMEM;
1848
Russell King3ae5eae2005-11-09 22:32:44 +00001849 platform_set_drvdata(pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850
1851 mp = netdev_priv(dev);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001852 mp->dev = dev;
1853#ifdef MV643XX_NAPI
1854 netif_napi_add(dev, &mp->napi, mv643xx_poll, 64);
1855#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1858 BUG_ON(!res);
1859 dev->irq = res->start;
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 dev->open = mv643xx_eth_open;
1862 dev->stop = mv643xx_eth_stop;
1863 dev->hard_start_xmit = mv643xx_eth_start_xmit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 dev->set_mac_address = mv643xx_eth_set_mac_address;
1865 dev->set_multicast_list = mv643xx_eth_set_rx_mode;
1866
1867 /* No need to Tx Timeout */
1868 dev->tx_timeout = mv643xx_eth_tx_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Dale Farnsworth63c9e542005-09-02 13:49:10 -07001870#ifdef CONFIG_NET_POLL_CONTROLLER
1871 dev->poll_controller = mv643xx_netpoll;
1872#endif
1873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 dev->base_addr = 0;
1876 dev->change_mtu = mv643xx_eth_change_mtu;
James Chapmand0412d92006-01-27 01:15:30 -07001877 dev->do_ioctl = mv643xx_eth_do_ioctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 SET_ETHTOOL_OPS(dev, &mv643xx_ethtool_ops);
1879
1880#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1881#ifdef MAX_SKB_FRAGS
1882 /*
1883 * Zero copy can only work if we use Discovery II memory. Else, we will
1884 * have to map the buffers to ISA memory which is only 16 MB
1885 */
Wolfram Joost63890572006-01-16 16:57:41 -07001886 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887#endif
1888#endif
1889
1890 /* Configure the timeout task */
Al Viro91c7c562006-12-06 19:50:06 +00001891 INIT_WORK(&mp->tx_timeout_task, mv643xx_eth_tx_timeout_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 spin_lock_init(&mp->lock);
1894
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02001895 mp->shared = platform_get_drvdata(pd->shared);
Gabriel Paubertfadac402007-03-23 12:03:52 -07001896 port_num = mp->port_num = pd->port_number;
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001897
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +02001898 if (mp->shared->win_protect)
1899 wrl(mp, WINDOW_PROTECT(port_num), mp->shared->win_protect);
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 /* set default config values */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001902 eth_port_uc_addr_get(mp, dev->dev_addr);
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02001903 mp->rx_ring_size = PORT_DEFAULT_RECEIVE_QUEUE_SIZE;
1904 mp->tx_ring_size = PORT_DEFAULT_TRANSMIT_QUEUE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001906 if (is_valid_ether_addr(pd->mac_addr))
1907 memcpy(dev->dev_addr, pd->mac_addr, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001909 if (pd->phy_addr || pd->force_phy_addr)
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001910 ethernet_phy_set(mp, pd->phy_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001912 if (pd->rx_queue_size)
1913 mp->rx_ring_size = pd->rx_queue_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001915 if (pd->tx_queue_size)
1916 mp->tx_ring_size = pd->tx_queue_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001918 if (pd->tx_sram_size) {
1919 mp->tx_sram_size = pd->tx_sram_size;
1920 mp->tx_sram_addr = pd->tx_sram_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
1922
Dale Farnsworth84dd6192007-03-03 06:40:28 -07001923 if (pd->rx_sram_size) {
1924 mp->rx_sram_size = pd->rx_sram_size;
1925 mp->rx_sram_addr = pd->rx_sram_addr;
1926 }
1927
1928 duplex = pd->duplex;
1929 speed = pd->speed;
1930
James Chapmanc28a4f82006-01-27 01:13:15 -07001931 /* Hook up MII support for ethtool */
1932 mp->mii.dev = dev;
1933 mp->mii.mdio_read = mv643xx_mdio_read;
1934 mp->mii.mdio_write = mv643xx_mdio_write;
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001935 mp->mii.phy_id = ethernet_phy_get(mp);
James Chapmanc28a4f82006-01-27 01:13:15 -07001936 mp->mii.phy_id_mask = 0x3f;
1937 mp->mii.reg_num_mask = 0x1f;
1938
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001939 err = ethernet_phy_detect(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (err) {
Lennert Buytenhekc1b35a22008-03-18 11:37:19 -07001941 pr_debug("%s: No PHY detected at addr %d\n",
1942 dev->name, ethernet_phy_get(mp));
James Chapmand0412d92006-01-27 01:15:30 -07001943 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
1945
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07001946 ethernet_phy_reset(mp);
James Chapmanc28a4f82006-01-27 01:13:15 -07001947 mp->mii.supports_gmii = mii_check_gmii_support(&mp->mii);
James Chapmand0412d92006-01-27 01:15:30 -07001948 mv643xx_init_ethtool_cmd(dev, mp->mii.phy_id, speed, duplex, &cmd);
1949 mv643xx_eth_update_pscr(dev, &cmd);
1950 mv643xx_set_settings(dev, &cmd);
James Chapmanc28a4f82006-01-27 01:13:15 -07001951
Olaf Heringb0b8dab2006-04-27 18:23:49 -07001952 SET_NETDEV_DEV(dev, &pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 err = register_netdev(dev);
1954 if (err)
1955 goto out;
1956
1957 p = dev->dev_addr;
1958 printk(KERN_NOTICE
Joe Perches0795af52007-10-03 17:59:30 -07001959 "%s: port %d with MAC address %s\n",
1960 dev->name, port_num, print_mac(mac, p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962 if (dev->features & NETIF_F_SG)
1963 printk(KERN_NOTICE "%s: Scatter Gather Enabled\n", dev->name);
1964
1965 if (dev->features & NETIF_F_IP_CSUM)
1966 printk(KERN_NOTICE "%s: TX TCP/IP Checksumming Supported\n",
1967 dev->name);
1968
1969#ifdef MV643XX_CHECKSUM_OFFLOAD_TX
1970 printk(KERN_NOTICE "%s: RX TCP/UDP Checksum Offload ON \n", dev->name);
1971#endif
1972
1973#ifdef MV643XX_COAL
1974 printk(KERN_NOTICE "%s: TX and RX Interrupt Coalescing ON \n",
1975 dev->name);
1976#endif
1977
1978#ifdef MV643XX_NAPI
1979 printk(KERN_NOTICE "%s: RX NAPI Enabled \n", dev->name);
1980#endif
1981
Nicolas DETb1529872005-10-28 17:46:30 -07001982 if (mp->tx_sram_size > 0)
1983 printk(KERN_NOTICE "%s: Using SRAM\n", dev->name);
1984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 return 0;
1986
1987out:
1988 free_netdev(dev);
1989
1990 return err;
1991}
1992
Russell King3ae5eae2005-11-09 22:32:44 +00001993static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994{
Russell King3ae5eae2005-11-09 22:32:44 +00001995 struct net_device *dev = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997 unregister_netdev(dev);
1998 flush_scheduled_work();
1999
2000 free_netdev(dev);
Russell King3ae5eae2005-11-09 22:32:44 +00002001 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return 0;
2003}
2004
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +02002005static void mv643xx_eth_conf_mbus_windows(struct mv643xx_shared_private *msp,
2006 struct mbus_dram_target_info *dram)
2007{
2008 void __iomem *base = msp->eth_base;
2009 u32 win_enable;
2010 u32 win_protect;
2011 int i;
2012
2013 for (i = 0; i < 6; i++) {
2014 writel(0, base + WINDOW_BASE(i));
2015 writel(0, base + WINDOW_SIZE(i));
2016 if (i < 4)
2017 writel(0, base + WINDOW_REMAP_HIGH(i));
2018 }
2019
2020 win_enable = 0x3f;
2021 win_protect = 0;
2022
2023 for (i = 0; i < dram->num_cs; i++) {
2024 struct mbus_dram_window *cs = dram->cs + i;
2025
2026 writel((cs->base & 0xffff0000) |
2027 (cs->mbus_attr << 8) |
2028 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
2029 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
2030
2031 win_enable &= ~(1 << i);
2032 win_protect |= 3 << (2 * i);
2033 }
2034
2035 writel(win_enable, base + WINDOW_BAR_ENABLE);
2036 msp->win_protect = win_protect;
2037}
2038
Russell King3ae5eae2005-11-09 22:32:44 +00002039static int mv643xx_eth_shared_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Lennert Buytenheke519abb2008-03-18 11:39:14 -07002041 static int mv643xx_version_printed = 0;
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +02002042 struct mv643xx_eth_shared_platform_data *pd = pdev->dev.platform_data;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002043 struct mv643xx_shared_private *msp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 struct resource *res;
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002045 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Lennert Buytenheke519abb2008-03-18 11:39:14 -07002047 if (!mv643xx_version_printed++)
2048 printk(KERN_NOTICE "MV-643xx 10/100/1000 Ethernet Driver\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002050 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2052 if (res == NULL)
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002053 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002055 ret = -ENOMEM;
2056 msp = kmalloc(sizeof(*msp), GFP_KERNEL);
2057 if (msp == NULL)
2058 goto out;
2059 memset(msp, 0, sizeof(*msp));
2060
2061 msp->eth_base = ioremap(res->start, res->end - res->start + 1);
2062 if (msp->eth_base == NULL)
2063 goto out_free;
2064
2065 spin_lock_init(&msp->phy_lock);
2066
2067 platform_set_drvdata(pdev, msp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Lennert Buytenhekf2ce8252008-04-24 01:27:17 +02002069 /*
2070 * (Re-)program MBUS remapping windows if we are asked to.
2071 */
2072 if (pd != NULL && pd->dram != NULL)
2073 mv643xx_eth_conf_mbus_windows(msp, pd->dram);
2074
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return 0;
2076
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002077out_free:
2078 kfree(msp);
2079out:
2080 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082
Russell King3ae5eae2005-11-09 22:32:44 +00002083static int mv643xx_eth_shared_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002085 struct mv643xx_shared_private *msp = platform_get_drvdata(pdev);
2086
2087 iounmap(msp->eth_base);
2088 kfree(msp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 return 0;
2091}
2092
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002093static void mv643xx_eth_shutdown(struct platform_device *pdev)
2094{
2095 struct net_device *dev = platform_get_drvdata(pdev);
2096 struct mv643xx_private *mp = netdev_priv(dev);
2097 unsigned int port_num = mp->port_num;
2098
2099 /* Mask all interrupts on ethernet port */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002100 wrl(mp, INTERRUPT_MASK_REG(port_num), 0);
2101 rdl(mp, INTERRUPT_MASK_REG(port_num));
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002102
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002103 eth_port_reset(mp);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002104}
2105
Russell King3ae5eae2005-11-09 22:32:44 +00002106static struct platform_driver mv643xx_eth_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 .probe = mv643xx_eth_probe,
2108 .remove = mv643xx_eth_remove,
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002109 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00002110 .driver = {
2111 .name = MV643XX_ETH_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07002112 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002113 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114};
2115
Russell King3ae5eae2005-11-09 22:32:44 +00002116static struct platform_driver mv643xx_eth_shared_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 .probe = mv643xx_eth_shared_probe,
2118 .remove = mv643xx_eth_shared_remove,
Russell King3ae5eae2005-11-09 22:32:44 +00002119 .driver = {
2120 .name = MV643XX_ETH_SHARED_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07002121 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00002122 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123};
2124
2125/*
2126 * mv643xx_init_module
2127 *
2128 * Registers the network drivers into the Linux kernel
2129 *
2130 * Input : N/A
2131 *
2132 * Output : N/A
2133 */
2134static int __init mv643xx_init_module(void)
2135{
2136 int rc;
2137
Russell King3ae5eae2005-11-09 22:32:44 +00002138 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00002140 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00002142 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
2144 return rc;
2145}
2146
2147/*
2148 * mv643xx_cleanup_module
2149 *
2150 * Registers the network drivers into the Linux kernel
2151 *
2152 * Input : N/A
2153 *
2154 * Output : N/A
2155 */
2156static void __exit mv643xx_cleanup_module(void)
2157{
Russell King3ae5eae2005-11-09 22:32:44 +00002158 platform_driver_unregister(&mv643xx_eth_driver);
2159 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
2162module_init(mv643xx_init_module);
2163module_exit(mv643xx_cleanup_module);
2164
2165MODULE_LICENSE("GPL");
2166MODULE_AUTHOR( "Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, Manish Lachwani"
2167 " and Dale Farnsworth");
2168MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
Kay Sievers72abb462008-04-18 13:50:44 -07002169MODULE_ALIAS("platform:" MV643XX_ETH_NAME);
2170MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
2172/*
2173 * The second part is the low level driver of the gigE ethernet ports.
2174 */
2175
2176/*
2177 * Marvell's Gigabit Ethernet controller low level driver
2178 *
2179 * DESCRIPTION:
2180 * This file introduce low level API to Marvell's Gigabit Ethernet
2181 * controller. This Gigabit Ethernet Controller driver API controls
2182 * 1) Operations (i.e. port init, start, reset etc').
2183 * 2) Data flow (i.e. port send, receive etc').
2184 * Each Gigabit Ethernet port is controlled via
2185 * struct mv643xx_private.
2186 * This struct includes user configuration information as well as
2187 * driver internal data needed for its operations.
2188 *
2189 * Supported Features:
2190 * - This low level driver is OS independent. Allocating memory for
2191 * the descriptor rings and buffers are not within the scope of
2192 * this driver.
2193 * - The user is free from Rx/Tx queue managing.
2194 * - This low level driver introduce functionality API that enable
2195 * the to operate Marvell's Gigabit Ethernet Controller in a
2196 * convenient way.
2197 * - Simple Gigabit Ethernet port operation API.
2198 * - Simple Gigabit Ethernet port data flow API.
2199 * - Data flow and operation API support per queue functionality.
2200 * - Support cached descriptors for better performance.
2201 * - Enable access to all four DRAM banks and internal SRAM memory
2202 * spaces.
2203 * - PHY access and control API.
2204 * - Port control register configuration API.
2205 * - Full control over Unicast and Multicast MAC configurations.
2206 *
2207 * Operation flow:
2208 *
2209 * Initialization phase
2210 * This phase complete the initialization of the the
2211 * mv643xx_private struct.
2212 * User information regarding port configuration has to be set
2213 * prior to calling the port initialization routine.
2214 *
2215 * In this phase any port Tx/Rx activity is halted, MIB counters
2216 * are cleared, PHY address is set according to user parameter and
2217 * access to DRAM and internal SRAM memory spaces.
2218 *
2219 * Driver ring initialization
2220 * Allocating memory for the descriptor rings and buffers is not
2221 * within the scope of this driver. Thus, the user is required to
2222 * allocate memory for the descriptors ring and buffers. Those
2223 * memory parameters are used by the Rx and Tx ring initialization
2224 * routines in order to curve the descriptor linked list in a form
2225 * of a ring.
2226 * Note: Pay special attention to alignment issues when using
2227 * cached descriptors/buffers. In this phase the driver store
2228 * information in the mv643xx_private struct regarding each queue
2229 * ring.
2230 *
2231 * Driver start
2232 * This phase prepares the Ethernet port for Rx and Tx activity.
2233 * It uses the information stored in the mv643xx_private struct to
2234 * initialize the various port registers.
2235 *
2236 * Data flow:
2237 * All packet references to/from the driver are done using
2238 * struct pkt_info.
2239 * This struct is a unified struct used with Rx and Tx operations.
2240 * This way the user is not required to be familiar with neither
2241 * Tx nor Rx descriptors structures.
2242 * The driver's descriptors rings are management by indexes.
2243 * Those indexes controls the ring resources and used to indicate
2244 * a SW resource error:
2245 * 'current'
2246 * This index points to the current available resource for use. For
2247 * example in Rx process this index will point to the descriptor
2248 * that will be passed to the user upon calling the receive
2249 * routine. In Tx process, this index will point to the descriptor
2250 * that will be assigned with the user packet info and transmitted.
2251 * 'used'
2252 * This index points to the descriptor that need to restore its
2253 * resources. For example in Rx process, using the Rx buffer return
2254 * API will attach the buffer returned in packet info to the
2255 * descriptor pointed by 'used'. In Tx process, using the Tx
2256 * descriptor return will merely return the user packet info with
2257 * the command status of the transmitted buffer pointed by the
2258 * 'used' index. Nevertheless, it is essential to use this routine
2259 * to update the 'used' index.
2260 * 'first'
2261 * This index supports Tx Scatter-Gather. It points to the first
2262 * descriptor of a packet assembled of multiple buffers. For
2263 * example when in middle of Such packet we have a Tx resource
2264 * error the 'curr' index get the value of 'first' to indicate
2265 * that the ring returned to its state before trying to transmit
2266 * this packet.
2267 *
2268 * Receive operation:
2269 * The eth_port_receive API set the packet information struct,
2270 * passed by the caller, with received information from the
2271 * 'current' SDMA descriptor.
2272 * It is the user responsibility to return this resource back
2273 * to the Rx descriptor ring to enable the reuse of this source.
2274 * Return Rx resource is done using the eth_rx_return_buff API.
2275 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 * Prior to calling the initialization routine eth_port_init() the user
2277 * must set the following fields under mv643xx_private struct:
2278 * port_num User Ethernet port number.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 * port_config User port configuration value.
2280 * port_config_extend User port config extend value.
2281 * port_sdma_config User port SDMA config value.
2282 * port_serial_control User port serial control value.
2283 *
2284 * This driver data flow is done using the struct pkt_info which
2285 * is a unified struct for Rx and Tx operations:
2286 *
2287 * byte_cnt Tx/Rx descriptor buffer byte count.
2288 * l4i_chk CPU provided TCP Checksum. For Tx operation
2289 * only.
2290 * cmd_sts Tx/Rx descriptor command status.
2291 * buf_ptr Tx/Rx descriptor buffer pointer.
2292 * return_info Tx/Rx user resource return information.
2293 */
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295/* Ethernet Port routines */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002296static void eth_port_set_filter_table_entry(struct mv643xx_private *mp,
2297 int table, unsigned char entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299/*
2300 * eth_port_init - Initialize the Ethernet port driver
2301 *
2302 * DESCRIPTION:
2303 * This function prepares the ethernet port to start its activity:
2304 * 1) Completes the ethernet port driver struct initialization toward port
2305 * start routine.
2306 * 2) Resets the device to a quiescent state in case of warm reboot.
2307 * 3) Enable SDMA access to all four DRAM banks as well as internal SRAM.
2308 * 4) Clean MAC tables. The reset status of those tables is unknown.
2309 * 5) Set PHY address.
2310 * Note: Call this routine prior to eth_port_start routine and after
2311 * setting user values in the user fields of Ethernet port control
2312 * struct.
2313 *
2314 * INPUT:
2315 * struct mv643xx_private *mp Ethernet port control struct
2316 *
2317 * OUTPUT:
2318 * See description.
2319 *
2320 * RETURN:
2321 * None.
2322 */
2323static void eth_port_init(struct mv643xx_private *mp)
2324{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 mp->rx_resource_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002327 eth_port_reset(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002329 eth_port_init_mac_tables(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330}
2331
2332/*
2333 * eth_port_start - Start the Ethernet port activity.
2334 *
2335 * DESCRIPTION:
2336 * This routine prepares the Ethernet port for Rx and Tx activity:
2337 * 1. Initialize Tx and Rx Current Descriptor Pointer for each queue that
2338 * has been initialized a descriptor's ring (using
2339 * ether_init_tx_desc_ring for Tx and ether_init_rx_desc_ring for Rx)
2340 * 2. Initialize and enable the Ethernet configuration port by writing to
2341 * the port's configuration and command registers.
2342 * 3. Initialize and enable the SDMA by writing to the SDMA's
2343 * configuration and command registers. After completing these steps,
2344 * the ethernet port SDMA can starts to perform Rx and Tx activities.
2345 *
2346 * Note: Each Rx and Tx queue descriptor's list must be initialized prior
2347 * to calling this function (use ether_init_tx_desc_ring for Tx queues
2348 * and ether_init_rx_desc_ring for Rx queues).
2349 *
2350 * INPUT:
Dale Farnsworthed9b5d42006-01-27 01:06:38 -07002351 * dev - a pointer to the required interface
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 *
2353 * OUTPUT:
2354 * Ethernet port is ready to receive and transmit.
2355 *
2356 * RETURN:
2357 * None.
2358 */
Dale Farnsworthed9b5d42006-01-27 01:06:38 -07002359static void eth_port_start(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
Dale Farnsworthed9b5d42006-01-27 01:06:38 -07002361 struct mv643xx_private *mp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 unsigned int port_num = mp->port_num;
2363 int tx_curr_desc, rx_curr_desc;
James Chapmand0412d92006-01-27 01:15:30 -07002364 u32 pscr;
2365 struct ethtool_cmd ethtool_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 /* Assignment of Tx CTRP of given queue */
2368 tx_curr_desc = mp->tx_curr_desc_q;
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002369 wrl(mp, TX_CURRENT_QUEUE_DESC_PTR_0(port_num),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 (u32)((struct eth_tx_desc *)mp->tx_desc_dma + tx_curr_desc));
2371
2372 /* Assignment of Rx CRDP of given queue */
2373 rx_curr_desc = mp->rx_curr_desc_q;
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002374 wrl(mp, RX_CURRENT_QUEUE_DESC_PTR_0(port_num),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 (u32)((struct eth_rx_desc *)mp->rx_desc_dma + rx_curr_desc));
2376
2377 /* Add the assigned Ethernet address to the port's address table */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002378 eth_port_uc_addr_set(mp, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380 /* Assign port configuration and command. */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002381 wrl(mp, PORT_CONFIG_REG(port_num),
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02002382 PORT_CONFIG_DEFAULT_VALUE);
Dale Farnsworth01999872006-01-27 01:18:01 -07002383
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002384 wrl(mp, PORT_CONFIG_EXTEND_REG(port_num),
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02002385 PORT_CONFIG_EXTEND_DEFAULT_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002387 pscr = rdl(mp, PORT_SERIAL_CONTROL_REG(port_num));
Dale Farnsworth01999872006-01-27 01:18:01 -07002388
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02002389 pscr &= ~(SERIAL_PORT_ENABLE | FORCE_LINK_PASS);
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002390 wrl(mp, PORT_SERIAL_CONTROL_REG(port_num), pscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02002392 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL |
2393 DISABLE_AUTO_NEG_SPEED_GMII |
2394 DISABLE_AUTO_NEG_FOR_DUPLX |
2395 DO_NOT_FORCE_LINK_FAIL |
2396 SERIAL_PORT_CONTROL_RESERVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002398 wrl(mp, PORT_SERIAL_CONTROL_REG(port_num), pscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02002400 pscr |= SERIAL_PORT_ENABLE;
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002401 wrl(mp, PORT_SERIAL_CONTROL_REG(port_num), pscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 /* Assign port SDMA configuration */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002404 wrl(mp, SDMA_CONFIG_REG(port_num),
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02002405 PORT_SDMA_CONFIG_DEFAULT_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
2407 /* Enable port Rx. */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002408 mv643xx_eth_port_enable_rx(mp, ETH_RX_QUEUES_ENABLED);
Dale Farnsworth8f543712005-09-02 12:34:35 -07002409
2410 /* Disable port bandwidth limits by clearing MTU register */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002411 wrl(mp, MAXIMUM_TRANSMIT_UNIT(port_num), 0);
James Chapmand0412d92006-01-27 01:15:30 -07002412
2413 /* save phy settings across reset */
2414 mv643xx_get_settings(dev, &ethtool_cmd);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002415 ethernet_phy_reset(mp);
James Chapmand0412d92006-01-27 01:15:30 -07002416 mv643xx_set_settings(dev, &ethtool_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417}
2418
2419/*
Gabriel Paubert144213d2007-03-23 12:07:26 -07002420 * eth_port_uc_addr_set - Write a MAC address into the port's hw registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002422static void eth_port_uc_addr_set(struct mv643xx_private *mp,
2423 unsigned char *p_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002425 unsigned int port_num = mp->port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 unsigned int mac_h;
2427 unsigned int mac_l;
Dale Farnsworthcf4086c2006-01-27 01:07:48 -07002428 int table;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 mac_l = (p_addr[4] << 8) | (p_addr[5]);
2431 mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) |
2432 (p_addr[3] << 0);
2433
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002434 wrl(mp, MAC_ADDR_LOW(port_num), mac_l);
2435 wrl(mp, MAC_ADDR_HIGH(port_num), mac_h);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
Gabriel Paubert144213d2007-03-23 12:07:26 -07002437 /* Accept frames with this address */
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02002438 table = DA_FILTER_UNICAST_TABLE_BASE(port_num);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002439 eth_port_set_filter_table_entry(mp, table, p_addr[5] & 0x0f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440}
2441
2442/*
Gabriel Paubert144213d2007-03-23 12:07:26 -07002443 * eth_port_uc_addr_get - Read the MAC address from the port's hw registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002445static void eth_port_uc_addr_get(struct mv643xx_private *mp,
2446 unsigned char *p_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002448 unsigned int port_num = mp->port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 unsigned int mac_h;
2450 unsigned int mac_l;
2451
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002452 mac_h = rdl(mp, MAC_ADDR_HIGH(port_num));
2453 mac_l = rdl(mp, MAC_ADDR_LOW(port_num));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
2455 p_addr[0] = (mac_h >> 24) & 0xff;
2456 p_addr[1] = (mac_h >> 16) & 0xff;
2457 p_addr[2] = (mac_h >> 8) & 0xff;
2458 p_addr[3] = mac_h & 0xff;
2459 p_addr[4] = (mac_l >> 8) & 0xff;
2460 p_addr[5] = mac_l & 0xff;
2461}
2462
2463/*
Dale Farnsworth16e03012006-01-16 16:50:02 -07002464 * The entries in each table are indexed by a hash of a packet's MAC
2465 * address. One bit in each entry determines whether the packet is
2466 * accepted. There are 4 entries (each 8 bits wide) in each register
2467 * of the table. The bits in each entry are defined as follows:
2468 * 0 Accept=1, Drop=0
2469 * 3-1 Queue (ETH_Q0=0)
2470 * 7-4 Reserved = 0;
2471 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002472static void eth_port_set_filter_table_entry(struct mv643xx_private *mp,
2473 int table, unsigned char entry)
Dale Farnsworth16e03012006-01-16 16:50:02 -07002474{
2475 unsigned int table_reg;
2476 unsigned int tbl_offset;
2477 unsigned int reg_offset;
2478
2479 tbl_offset = (entry / 4) * 4; /* Register offset of DA table entry */
2480 reg_offset = entry % 4; /* Entry offset within the register */
2481
2482 /* Set "accepts frame bit" at specified table entry */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002483 table_reg = rdl(mp, table + tbl_offset);
Dale Farnsworth16e03012006-01-16 16:50:02 -07002484 table_reg |= 0x01 << (8 * reg_offset);
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002485 wrl(mp, table + tbl_offset, table_reg);
Dale Farnsworth16e03012006-01-16 16:50:02 -07002486}
2487
2488/*
2489 * eth_port_mc_addr - Multicast address settings.
2490 *
2491 * The MV device supports multicast using two tables:
2492 * 1) Special Multicast Table for MAC addresses of the form
2493 * 0x01-00-5E-00-00-XX (where XX is between 0x00 and 0x_FF).
2494 * The MAC DA[7:0] bits are used as a pointer to the Special Multicast
2495 * Table entries in the DA-Filter table.
2496 * 2) Other Multicast Table for multicast of another type. A CRC-8bit
2497 * is used as an index to the Other Multicast Table entries in the
2498 * DA-Filter table. This function calculates the CRC-8bit value.
2499 * In either case, eth_port_set_filter_table_entry() is then called
2500 * to set to set the actual table entry.
2501 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002502static void eth_port_mc_addr(struct mv643xx_private *mp, unsigned char *p_addr)
Dale Farnsworth16e03012006-01-16 16:50:02 -07002503{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002504 unsigned int port_num = mp->port_num;
Dale Farnsworth16e03012006-01-16 16:50:02 -07002505 unsigned int mac_h;
2506 unsigned int mac_l;
2507 unsigned char crc_result = 0;
2508 int table;
2509 int mac_array[48];
2510 int crc[8];
2511 int i;
2512
2513 if ((p_addr[0] == 0x01) && (p_addr[1] == 0x00) &&
2514 (p_addr[2] == 0x5E) && (p_addr[3] == 0x00) && (p_addr[4] == 0x00)) {
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002515 table = DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE(port_num);
2516 eth_port_set_filter_table_entry(mp, table, p_addr[5]);
Dale Farnsworth16e03012006-01-16 16:50:02 -07002517 return;
2518 }
2519
2520 /* Calculate CRC-8 out of the given address */
2521 mac_h = (p_addr[0] << 8) | (p_addr[1]);
2522 mac_l = (p_addr[2] << 24) | (p_addr[3] << 16) |
2523 (p_addr[4] << 8) | (p_addr[5] << 0);
2524
2525 for (i = 0; i < 32; i++)
2526 mac_array[i] = (mac_l >> i) & 0x1;
2527 for (i = 32; i < 48; i++)
2528 mac_array[i] = (mac_h >> (i - 32)) & 0x1;
2529
2530 crc[0] = mac_array[45] ^ mac_array[43] ^ mac_array[40] ^ mac_array[39] ^
2531 mac_array[35] ^ mac_array[34] ^ mac_array[31] ^ mac_array[30] ^
2532 mac_array[28] ^ mac_array[23] ^ mac_array[21] ^ mac_array[19] ^
2533 mac_array[18] ^ mac_array[16] ^ mac_array[14] ^ mac_array[12] ^
2534 mac_array[8] ^ mac_array[7] ^ mac_array[6] ^ mac_array[0];
2535
2536 crc[1] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
2537 mac_array[41] ^ mac_array[39] ^ mac_array[36] ^ mac_array[34] ^
2538 mac_array[32] ^ mac_array[30] ^ mac_array[29] ^ mac_array[28] ^
2539 mac_array[24] ^ mac_array[23] ^ mac_array[22] ^ mac_array[21] ^
2540 mac_array[20] ^ mac_array[18] ^ mac_array[17] ^ mac_array[16] ^
2541 mac_array[15] ^ mac_array[14] ^ mac_array[13] ^ mac_array[12] ^
2542 mac_array[9] ^ mac_array[6] ^ mac_array[1] ^ mac_array[0];
2543
2544 crc[2] = mac_array[47] ^ mac_array[46] ^ mac_array[44] ^ mac_array[43] ^
2545 mac_array[42] ^ mac_array[39] ^ mac_array[37] ^ mac_array[34] ^
2546 mac_array[33] ^ mac_array[29] ^ mac_array[28] ^ mac_array[25] ^
2547 mac_array[24] ^ mac_array[22] ^ mac_array[17] ^ mac_array[15] ^
2548 mac_array[13] ^ mac_array[12] ^ mac_array[10] ^ mac_array[8] ^
2549 mac_array[6] ^ mac_array[2] ^ mac_array[1] ^ mac_array[0];
2550
2551 crc[3] = mac_array[47] ^ mac_array[45] ^ mac_array[44] ^ mac_array[43] ^
2552 mac_array[40] ^ mac_array[38] ^ mac_array[35] ^ mac_array[34] ^
2553 mac_array[30] ^ mac_array[29] ^ mac_array[26] ^ mac_array[25] ^
2554 mac_array[23] ^ mac_array[18] ^ mac_array[16] ^ mac_array[14] ^
2555 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[7] ^
2556 mac_array[3] ^ mac_array[2] ^ mac_array[1];
2557
2558 crc[4] = mac_array[46] ^ mac_array[45] ^ mac_array[44] ^ mac_array[41] ^
2559 mac_array[39] ^ mac_array[36] ^ mac_array[35] ^ mac_array[31] ^
2560 mac_array[30] ^ mac_array[27] ^ mac_array[26] ^ mac_array[24] ^
2561 mac_array[19] ^ mac_array[17] ^ mac_array[15] ^ mac_array[14] ^
2562 mac_array[12] ^ mac_array[10] ^ mac_array[8] ^ mac_array[4] ^
2563 mac_array[3] ^ mac_array[2];
2564
2565 crc[5] = mac_array[47] ^ mac_array[46] ^ mac_array[45] ^ mac_array[42] ^
2566 mac_array[40] ^ mac_array[37] ^ mac_array[36] ^ mac_array[32] ^
2567 mac_array[31] ^ mac_array[28] ^ mac_array[27] ^ mac_array[25] ^
2568 mac_array[20] ^ mac_array[18] ^ mac_array[16] ^ mac_array[15] ^
2569 mac_array[13] ^ mac_array[11] ^ mac_array[9] ^ mac_array[5] ^
2570 mac_array[4] ^ mac_array[3];
2571
2572 crc[6] = mac_array[47] ^ mac_array[46] ^ mac_array[43] ^ mac_array[41] ^
2573 mac_array[38] ^ mac_array[37] ^ mac_array[33] ^ mac_array[32] ^
2574 mac_array[29] ^ mac_array[28] ^ mac_array[26] ^ mac_array[21] ^
2575 mac_array[19] ^ mac_array[17] ^ mac_array[16] ^ mac_array[14] ^
2576 mac_array[12] ^ mac_array[10] ^ mac_array[6] ^ mac_array[5] ^
2577 mac_array[4];
2578
2579 crc[7] = mac_array[47] ^ mac_array[44] ^ mac_array[42] ^ mac_array[39] ^
2580 mac_array[38] ^ mac_array[34] ^ mac_array[33] ^ mac_array[30] ^
2581 mac_array[29] ^ mac_array[27] ^ mac_array[22] ^ mac_array[20] ^
2582 mac_array[18] ^ mac_array[17] ^ mac_array[15] ^ mac_array[13] ^
2583 mac_array[11] ^ mac_array[7] ^ mac_array[6] ^ mac_array[5];
2584
2585 for (i = 0; i < 8; i++)
2586 crc_result = crc_result | (crc[i] << i);
2587
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002588 table = DA_FILTER_OTHER_MULTICAST_TABLE_BASE(port_num);
2589 eth_port_set_filter_table_entry(mp, table, crc_result);
Dale Farnsworth16e03012006-01-16 16:50:02 -07002590}
2591
2592/*
2593 * Set the entire multicast list based on dev->mc_list.
2594 */
2595static void eth_port_set_multicast_list(struct net_device *dev)
2596{
2597
2598 struct dev_mc_list *mc_list;
2599 int i;
2600 int table_index;
2601 struct mv643xx_private *mp = netdev_priv(dev);
2602 unsigned int eth_port_num = mp->port_num;
2603
2604 /* If the device is in promiscuous mode or in all multicast mode,
2605 * we will fully populate both multicast tables with accept.
2606 * This is guaranteed to yield a match on all multicast addresses...
2607 */
2608 if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI)) {
2609 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002610 /* Set all entries in DA filter special multicast
2611 * table (Ex_dFSMT)
2612 * Set for ETH_Q0 for now
2613 * Bits
2614 * 0 Accept=1, Drop=0
2615 * 3-1 Queue ETH_Q0=0
2616 * 7-4 Reserved = 0;
2617 */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002618 wrl(mp, DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101);
Dale Farnsworth16e03012006-01-16 16:50:02 -07002619
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002620 /* Set all entries in DA filter other multicast
2621 * table (Ex_dFOMT)
2622 * Set for ETH_Q0 for now
2623 * Bits
2624 * 0 Accept=1, Drop=0
2625 * 3-1 Queue ETH_Q0=0
2626 * 7-4 Reserved = 0;
2627 */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002628 wrl(mp, DA_FILTER_OTHER_MULTICAST_TABLE_BASE(eth_port_num) + table_index, 0x01010101);
Dale Farnsworthb4de9052006-01-27 01:04:43 -07002629 }
Dale Farnsworth16e03012006-01-16 16:50:02 -07002630 return;
2631 }
2632
2633 /* We will clear out multicast tables every time we get the list.
2634 * Then add the entire new list...
2635 */
2636 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2637 /* Clear DA filter special multicast table (Ex_dFSMT) */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002638 wrl(mp, DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE
Dale Farnsworth16e03012006-01-16 16:50:02 -07002639 (eth_port_num) + table_index, 0);
2640
2641 /* Clear DA filter other multicast table (Ex_dFOMT) */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002642 wrl(mp, DA_FILTER_OTHER_MULTICAST_TABLE_BASE
Dale Farnsworth16e03012006-01-16 16:50:02 -07002643 (eth_port_num) + table_index, 0);
2644 }
2645
2646 /* Get pointer to net_device multicast list and add each one... */
2647 for (i = 0, mc_list = dev->mc_list;
2648 (i < 256) && (mc_list != NULL) && (i < dev->mc_count);
2649 i++, mc_list = mc_list->next)
2650 if (mc_list->dmi_addrlen == 6)
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002651 eth_port_mc_addr(mp, mc_list->dmi_addr);
Dale Farnsworth16e03012006-01-16 16:50:02 -07002652}
2653
2654/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 * eth_port_init_mac_tables - Clear all entrance in the UC, SMC and OMC tables
2656 *
2657 * DESCRIPTION:
2658 * Go through all the DA filter tables (Unicast, Special Multicast &
2659 * Other Multicast) and set each entry to 0.
2660 *
2661 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002662 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 *
2664 * OUTPUT:
2665 * Multicast and Unicast packets are rejected.
2666 *
2667 * RETURN:
2668 * None.
2669 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002670static void eth_port_init_mac_tables(struct mv643xx_private *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002672 unsigned int port_num = mp->port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 int table_index;
2674
2675 /* Clear DA filter unicast table (Ex_dFUT) */
2676 for (table_index = 0; table_index <= 0xC; table_index += 4)
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002677 wrl(mp, DA_FILTER_UNICAST_TABLE_BASE(port_num) +
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002678 table_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
2680 for (table_index = 0; table_index <= 0xFC; table_index += 4) {
2681 /* Clear DA filter special multicast table (Ex_dFSMT) */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002682 wrl(mp, DA_FILTER_SPECIAL_MULTICAST_TABLE_BASE(port_num) +
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002683 table_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 /* Clear DA filter other multicast table (Ex_dFOMT) */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002685 wrl(mp, DA_FILTER_OTHER_MULTICAST_TABLE_BASE(port_num) +
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002686 table_index, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
2688}
2689
2690/*
2691 * eth_clear_mib_counters - Clear all MIB counters
2692 *
2693 * DESCRIPTION:
2694 * This function clears all MIB counters of a specific ethernet port.
2695 * A read from the MIB counter will reset the counter.
2696 *
2697 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002698 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 *
2700 * OUTPUT:
2701 * After reading all MIB counters, the counters resets.
2702 *
2703 * RETURN:
2704 * MIB counter value.
2705 *
2706 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002707static void eth_clear_mib_counters(struct mv643xx_private *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002709 unsigned int port_num = mp->port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 int i;
2711
2712 /* Perform dummy reads from MIB counters */
2713 for (i = ETH_MIB_GOOD_OCTETS_RECEIVED_LOW; i < ETH_MIB_LATE_COLLISION;
2714 i += 4)
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002715 rdl(mp, MIB_COUNTERS_BASE(port_num) + i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716}
2717
2718static inline u32 read_mib(struct mv643xx_private *mp, int offset)
2719{
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002720 return rdl(mp, MIB_COUNTERS_BASE(mp->port_num) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721}
2722
2723static void eth_update_mib_counters(struct mv643xx_private *mp)
2724{
2725 struct mv643xx_mib_counters *p = &mp->mib_counters;
2726 int offset;
2727
2728 p->good_octets_received +=
2729 read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_LOW);
2730 p->good_octets_received +=
2731 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_RECEIVED_HIGH) << 32;
2732
2733 for (offset = ETH_MIB_BAD_OCTETS_RECEIVED;
2734 offset <= ETH_MIB_FRAMES_1024_TO_MAX_OCTETS;
2735 offset += 4)
Maxime Bizon70fbf322006-10-03 10:27:10 -07002736 *(u32 *)((char *)p + offset) += read_mib(mp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738 p->good_octets_sent += read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_LOW);
2739 p->good_octets_sent +=
2740 (u64)read_mib(mp, ETH_MIB_GOOD_OCTETS_SENT_HIGH) << 32;
2741
2742 for (offset = ETH_MIB_GOOD_FRAMES_SENT;
2743 offset <= ETH_MIB_LATE_COLLISION;
2744 offset += 4)
Maxime Bizon70fbf322006-10-03 10:27:10 -07002745 *(u32 *)((char *)p + offset) += read_mib(mp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746}
2747
2748/*
2749 * ethernet_phy_detect - Detect whether a phy is present
2750 *
2751 * DESCRIPTION:
2752 * This function tests whether there is a PHY present on
2753 * the specified port.
2754 *
2755 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002756 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 *
2758 * OUTPUT:
2759 * None
2760 *
2761 * RETURN:
2762 * 0 on success
2763 * -ENODEV on failure
2764 *
2765 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002766static int ethernet_phy_detect(struct mv643xx_private *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767{
2768 unsigned int phy_reg_data0;
2769 int auto_neg;
2770
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002771 eth_port_read_smi_reg(mp, 0, &phy_reg_data0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 auto_neg = phy_reg_data0 & 0x1000;
2773 phy_reg_data0 ^= 0x1000; /* invert auto_neg */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002774 eth_port_write_smi_reg(mp, 0, phy_reg_data0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002776 eth_port_read_smi_reg(mp, 0, &phy_reg_data0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if ((phy_reg_data0 & 0x1000) == auto_neg)
2778 return -ENODEV; /* change didn't take */
2779
2780 phy_reg_data0 ^= 0x1000;
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002781 eth_port_write_smi_reg(mp, 0, phy_reg_data0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 return 0;
2783}
2784
2785/*
2786 * ethernet_phy_get - Get the ethernet port PHY address.
2787 *
2788 * DESCRIPTION:
2789 * This routine returns the given ethernet port PHY address.
2790 *
2791 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002792 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 *
2794 * OUTPUT:
2795 * None.
2796 *
2797 * RETURN:
2798 * PHY address.
2799 *
2800 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002801static int ethernet_phy_get(struct mv643xx_private *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802{
2803 unsigned int reg_data;
2804
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002805 reg_data = rdl(mp, PHY_ADDR_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002807 return ((reg_data >> (5 * mp->port_num)) & 0x1f);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808}
2809
2810/*
2811 * ethernet_phy_set - Set the ethernet port PHY address.
2812 *
2813 * DESCRIPTION:
2814 * This routine sets the given ethernet port PHY address.
2815 *
2816 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002817 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 * int phy_addr PHY address.
2819 *
2820 * OUTPUT:
2821 * None.
2822 *
2823 * RETURN:
2824 * None.
2825 *
2826 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002827static void ethernet_phy_set(struct mv643xx_private *mp, int phy_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828{
2829 u32 reg_data;
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002830 int addr_shift = 5 * mp->port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002832 reg_data = rdl(mp, PHY_ADDR_REG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 reg_data &= ~(0x1f << addr_shift);
2834 reg_data |= (phy_addr & 0x1f) << addr_shift;
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002835 wrl(mp, PHY_ADDR_REG, reg_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836}
2837
2838/*
2839 * ethernet_phy_reset - Reset Ethernet port PHY.
2840 *
2841 * DESCRIPTION:
2842 * This routine utilizes the SMI interface to reset the ethernet port PHY.
2843 *
2844 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002845 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 *
2847 * OUTPUT:
2848 * The PHY is reset.
2849 *
2850 * RETURN:
2851 * None.
2852 *
2853 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002854static void ethernet_phy_reset(struct mv643xx_private *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855{
2856 unsigned int phy_reg_data;
2857
2858 /* Reset the PHY */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002859 eth_port_read_smi_reg(mp, 0, &phy_reg_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 phy_reg_data |= 0x8000; /* Set bit 15 to reset the PHY */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002861 eth_port_write_smi_reg(mp, 0, phy_reg_data);
James Chapmand0412d92006-01-27 01:15:30 -07002862
2863 /* wait for PHY to come out of reset */
2864 do {
2865 udelay(1);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002866 eth_port_read_smi_reg(mp, 0, &phy_reg_data);
James Chapmand0412d92006-01-27 01:15:30 -07002867 } while (phy_reg_data & 0x8000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868}
2869
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002870static void mv643xx_eth_port_enable_tx(struct mv643xx_private *mp,
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002871 unsigned int queues)
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002872{
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002873 wrl(mp, TRANSMIT_QUEUE_COMMAND_REG(mp->port_num), queues);
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002874}
2875
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002876static void mv643xx_eth_port_enable_rx(struct mv643xx_private *mp,
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002877 unsigned int queues)
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002878{
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002879 wrl(mp, RECEIVE_QUEUE_COMMAND_REG(mp->port_num), queues);
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002880}
2881
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002882static unsigned int mv643xx_eth_port_disable_tx(struct mv643xx_private *mp)
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002883{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002884 unsigned int port_num = mp->port_num;
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002885 u32 queues;
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002886
2887 /* Stop Tx port activity. Check port Tx activity. */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002888 queues = rdl(mp, TRANSMIT_QUEUE_COMMAND_REG(port_num)) & 0xFF;
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002889 if (queues) {
2890 /* Issue stop command for active queues only */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002891 wrl(mp, TRANSMIT_QUEUE_COMMAND_REG(port_num), (queues << 8));
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002892
2893 /* Wait for all Tx activity to terminate. */
2894 /* Check port cause register that all Tx queues are stopped */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002895 while (rdl(mp, TRANSMIT_QUEUE_COMMAND_REG(port_num)) & 0xFF)
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002896 udelay(PHY_WAIT_MICRO_SECONDS);
2897
2898 /* Wait for Tx FIFO to empty */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002899 while (rdl(mp, PORT_STATUS_REG(port_num)) &
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002900 ETH_PORT_TX_FIFO_EMPTY)
2901 udelay(PHY_WAIT_MICRO_SECONDS);
2902 }
2903
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002904 return queues;
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002905}
2906
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002907static unsigned int mv643xx_eth_port_disable_rx(struct mv643xx_private *mp)
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002908{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002909 unsigned int port_num = mp->port_num;
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002910 u32 queues;
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002911
2912 /* Stop Rx port activity. Check port Rx activity. */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002913 queues = rdl(mp, RECEIVE_QUEUE_COMMAND_REG(port_num)) & 0xFF;
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002914 if (queues) {
2915 /* Issue stop command for active queues only */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002916 wrl(mp, RECEIVE_QUEUE_COMMAND_REG(port_num), (queues << 8));
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002917
2918 /* Wait for all Rx activity to terminate. */
2919 /* Check port cause register that all Rx queues are stopped */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002920 while (rdl(mp, RECEIVE_QUEUE_COMMAND_REG(port_num)) & 0xFF)
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002921 udelay(PHY_WAIT_MICRO_SECONDS);
2922 }
2923
Dale Farnsworth12a87c62006-03-03 10:00:22 -07002924 return queues;
Dale Farnsworth9f8dd312006-01-27 01:10:47 -07002925}
2926
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927/*
2928 * eth_port_reset - Reset Ethernet port
2929 *
2930 * DESCRIPTION:
2931 * This routine resets the chip by aborting any SDMA engine activity and
2932 * clearing the MIB counters. The Receiver and the Transmit unit are in
2933 * idle state after this command is performed and the port is disabled.
2934 *
2935 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002936 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 *
2938 * OUTPUT:
2939 * Channel activity is halted.
2940 *
2941 * RETURN:
2942 * None.
2943 *
2944 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002945static void eth_port_reset(struct mv643xx_private *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002947 unsigned int port_num = mp->port_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 unsigned int reg_data;
2949
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002950 mv643xx_eth_port_disable_tx(mp);
2951 mv643xx_eth_port_disable_rx(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 /* Clear all MIB counters */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002954 eth_clear_mib_counters(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
2956 /* Reset the Enable bit in the Configuration Register */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002957 reg_data = rdl(mp, PORT_SERIAL_CONTROL_REG(port_num));
Lennert Buytenheke4d00fa2007-10-19 04:11:28 +02002958 reg_data &= ~(SERIAL_PORT_ENABLE |
2959 DO_NOT_FORCE_LINK_FAIL |
2960 FORCE_LINK_PASS);
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002961 wrl(mp, PORT_SERIAL_CONTROL_REG(port_num), reg_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962}
2963
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 * eth_port_read_smi_reg - Read PHY registers
2967 *
2968 * DESCRIPTION:
2969 * This routine utilize the SMI interface to interact with the PHY in
2970 * order to perform PHY register read.
2971 *
2972 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002973 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 * unsigned int phy_reg PHY register address offset.
2975 * unsigned int *value Register value buffer.
2976 *
2977 * OUTPUT:
2978 * Write the value of a specified PHY register into given buffer.
2979 *
2980 * RETURN:
2981 * false if the PHY is busy or read data is not in valid state.
2982 * true otherwise.
2983 *
2984 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002985static void eth_port_read_smi_reg(struct mv643xx_private *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 unsigned int phy_reg, unsigned int *value)
2987{
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07002988 int phy_addr = ethernet_phy_get(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 unsigned long flags;
2990 int i;
2991
2992 /* the SMI register is a shared resource */
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002993 spin_lock_irqsave(&mp->shared->phy_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
2995 /* wait for the SMI register to become available */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07002996 for (i = 0; rdl(mp, SMI_REG) & ETH_SMI_BUSY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 if (i == PHY_WAIT_ITERATIONS) {
Lennert Buytenhekc1b35a22008-03-18 11:37:19 -07002998 printk("%s: PHY busy timeout\n", mp->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 goto out;
3000 }
3001 udelay(PHY_WAIT_MICRO_SECONDS);
3002 }
3003
Lennert Buytenhekec69d652008-03-18 11:38:05 -07003004 wrl(mp, SMI_REG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 (phy_addr << 16) | (phy_reg << 21) | ETH_SMI_OPCODE_READ);
3006
3007 /* now wait for the data to be valid */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07003008 for (i = 0; !(rdl(mp, SMI_REG) & ETH_SMI_READ_VALID); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 if (i == PHY_WAIT_ITERATIONS) {
Lennert Buytenhekc1b35a22008-03-18 11:37:19 -07003010 printk("%s: PHY read timeout\n", mp->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 goto out;
3012 }
3013 udelay(PHY_WAIT_MICRO_SECONDS);
3014 }
3015
Lennert Buytenhekec69d652008-03-18 11:38:05 -07003016 *value = rdl(mp, SMI_REG) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017out:
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02003018 spin_unlock_irqrestore(&mp->shared->phy_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019}
3020
3021/*
3022 * eth_port_write_smi_reg - Write to PHY registers
3023 *
3024 * DESCRIPTION:
3025 * This routine utilize the SMI interface to interact with the PHY in
3026 * order to perform writes to PHY registers.
3027 *
3028 * INPUT:
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003029 * struct mv643xx_private *mp Ethernet Port.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 * unsigned int phy_reg PHY register address offset.
3031 * unsigned int value Register value.
3032 *
3033 * OUTPUT:
3034 * Write the given value to the specified PHY register.
3035 *
3036 * RETURN:
3037 * false if the PHY is busy.
3038 * true otherwise.
3039 *
3040 */
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003041static void eth_port_write_smi_reg(struct mv643xx_private *mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 unsigned int phy_reg, unsigned int value)
3043{
3044 int phy_addr;
3045 int i;
3046 unsigned long flags;
3047
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003048 phy_addr = ethernet_phy_get(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050 /* the SMI register is a shared resource */
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02003051 spin_lock_irqsave(&mp->shared->phy_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
3053 /* wait for the SMI register to become available */
Lennert Buytenhekec69d652008-03-18 11:38:05 -07003054 for (i = 0; rdl(mp, SMI_REG) & ETH_SMI_BUSY; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 if (i == PHY_WAIT_ITERATIONS) {
Lennert Buytenhekc1b35a22008-03-18 11:37:19 -07003056 printk("%s: PHY busy timeout\n", mp->dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 goto out;
3058 }
3059 udelay(PHY_WAIT_MICRO_SECONDS);
3060 }
3061
Lennert Buytenhekec69d652008-03-18 11:38:05 -07003062 wrl(mp, SMI_REG, (phy_addr << 16) | (phy_reg << 21) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 ETH_SMI_OPCODE_WRITE | (value & 0xffff));
3064out:
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02003065 spin_unlock_irqrestore(&mp->shared->phy_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066}
3067
3068/*
James Chapmanc28a4f82006-01-27 01:13:15 -07003069 * Wrappers for MII support library.
3070 */
3071static int mv643xx_mdio_read(struct net_device *dev, int phy_id, int location)
3072{
James Chapmanc28a4f82006-01-27 01:13:15 -07003073 struct mv643xx_private *mp = netdev_priv(dev);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003074 int val;
James Chapmanc28a4f82006-01-27 01:13:15 -07003075
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003076 eth_port_read_smi_reg(mp, location, &val);
James Chapmanc28a4f82006-01-27 01:13:15 -07003077 return val;
3078}
3079
3080static void mv643xx_mdio_write(struct net_device *dev, int phy_id, int location, int val)
3081{
3082 struct mv643xx_private *mp = netdev_priv(dev);
Lennert Buytenhekafdb57a2008-03-18 11:36:08 -07003083 eth_port_write_smi_reg(mp, location, val);
James Chapmanc28a4f82006-01-27 01:13:15 -07003084}
3085
3086/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 * eth_port_receive - Get received information from Rx ring.
3088 *
3089 * DESCRIPTION:
3090 * This routine returns the received data to the caller. There is no
3091 * data copying during routine operation. All information is returned
3092 * using pointer to packet information struct passed from the caller.
3093 * If the routine exhausts Rx ring resources then the resource error flag
3094 * is set.
3095 *
3096 * INPUT:
3097 * struct mv643xx_private *mp Ethernet Port Control srtuct.
3098 * struct pkt_info *p_pkt_info User packet buffer.
3099 *
3100 * OUTPUT:
3101 * Rx ring current and used indexes are updated.
3102 *
3103 * RETURN:
3104 * ETH_ERROR in case the routine can not access Rx desc ring.
3105 * ETH_QUEUE_FULL if Rx ring resources are exhausted.
3106 * ETH_END_OF_JOB if there is no received data.
3107 * ETH_OK otherwise.
3108 */
3109static ETH_FUNC_RET_STATUS eth_port_receive(struct mv643xx_private *mp,
3110 struct pkt_info *p_pkt_info)
3111{
3112 int rx_next_curr_desc, rx_curr_desc, rx_used_desc;
3113 volatile struct eth_rx_desc *p_rx_desc;
3114 unsigned int command_status;
Dale Farnsworth8f518702006-01-16 16:56:30 -07003115 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116
3117 /* Do not process Rx ring in case of Rx ring resource error */
3118 if (mp->rx_resource_err)
3119 return ETH_QUEUE_FULL;
3120
Dale Farnsworth8f518702006-01-16 16:56:30 -07003121 spin_lock_irqsave(&mp->lock, flags);
3122
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 /* Get the Rx Desc ring 'curr and 'used' indexes */
3124 rx_curr_desc = mp->rx_curr_desc_q;
3125 rx_used_desc = mp->rx_used_desc_q;
3126
3127 p_rx_desc = &mp->p_rx_desc_area[rx_curr_desc];
3128
3129 /* The following parameters are used to save readings from memory */
3130 command_status = p_rx_desc->cmd_sts;
3131 rmb();
3132
3133 /* Nothing to receive... */
Dale Farnsworth8f518702006-01-16 16:56:30 -07003134 if (command_status & (ETH_BUFFER_OWNED_BY_DMA)) {
3135 spin_unlock_irqrestore(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 return ETH_END_OF_JOB;
Dale Farnsworth8f518702006-01-16 16:56:30 -07003137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138
3139 p_pkt_info->byte_cnt = (p_rx_desc->byte_cnt) - RX_BUF_OFFSET;
3140 p_pkt_info->cmd_sts = command_status;
3141 p_pkt_info->buf_ptr = (p_rx_desc->buf_ptr) + RX_BUF_OFFSET;
3142 p_pkt_info->return_info = mp->rx_skb[rx_curr_desc];
3143 p_pkt_info->l4i_chk = p_rx_desc->buf_size;
3144
Dale Farnsworthb4de9052006-01-27 01:04:43 -07003145 /*
3146 * Clean the return info field to indicate that the
3147 * packet has been moved to the upper layers
3148 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 mp->rx_skb[rx_curr_desc] = NULL;
3150
3151 /* Update current index in data structure */
3152 rx_next_curr_desc = (rx_curr_desc + 1) % mp->rx_ring_size;
3153 mp->rx_curr_desc_q = rx_next_curr_desc;
3154
3155 /* Rx descriptors exhausted. Set the Rx ring resource error flag */
3156 if (rx_next_curr_desc == rx_used_desc)
3157 mp->rx_resource_err = 1;
3158
Dale Farnsworth8f518702006-01-16 16:56:30 -07003159 spin_unlock_irqrestore(&mp->lock, flags);
3160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 return ETH_OK;
3162}
3163
3164/*
3165 * eth_rx_return_buff - Returns a Rx buffer back to the Rx ring.
3166 *
3167 * DESCRIPTION:
3168 * This routine returns a Rx buffer back to the Rx ring. It retrieves the
3169 * next 'used' descriptor and attached the returned buffer to it.
3170 * In case the Rx ring was in "resource error" condition, where there are
3171 * no available Rx resources, the function resets the resource error flag.
3172 *
3173 * INPUT:
3174 * struct mv643xx_private *mp Ethernet Port Control srtuct.
3175 * struct pkt_info *p_pkt_info Information on returned buffer.
3176 *
3177 * OUTPUT:
3178 * New available Rx resource in Rx descriptor ring.
3179 *
3180 * RETURN:
3181 * ETH_ERROR in case the routine can not access Rx desc ring.
3182 * ETH_OK otherwise.
3183 */
3184static ETH_FUNC_RET_STATUS eth_rx_return_buff(struct mv643xx_private *mp,
3185 struct pkt_info *p_pkt_info)
3186{
3187 int used_rx_desc; /* Where to return Rx resource */
3188 volatile struct eth_rx_desc *p_used_rx_desc;
Dale Farnsworth8f518702006-01-16 16:56:30 -07003189 unsigned long flags;
3190
3191 spin_lock_irqsave(&mp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
3193 /* Get 'used' Rx descriptor */
3194 used_rx_desc = mp->rx_used_desc_q;
3195 p_used_rx_desc = &mp->p_rx_desc_area[used_rx_desc];
3196
3197 p_used_rx_desc->buf_ptr = p_pkt_info->buf_ptr;
3198 p_used_rx_desc->buf_size = p_pkt_info->byte_cnt;
3199 mp->rx_skb[used_rx_desc] = p_pkt_info->return_info;
3200
3201 /* Flush the write pipe */
3202
3203 /* Return the descriptor to DMA ownership */
3204 wmb();
3205 p_used_rx_desc->cmd_sts =
3206 ETH_BUFFER_OWNED_BY_DMA | ETH_RX_ENABLE_INTERRUPT;
3207 wmb();
3208
3209 /* Move the used descriptor pointer to the next descriptor */
3210 mp->rx_used_desc_q = (used_rx_desc + 1) % mp->rx_ring_size;
3211
3212 /* Any Rx return cancels the Rx resource error status */
3213 mp->rx_resource_err = 0;
3214
Dale Farnsworth8f518702006-01-16 16:56:30 -07003215 spin_unlock_irqrestore(&mp->lock, flags);
3216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 return ETH_OK;
3218}
3219
3220/************* Begin ethtool support *************************/
3221
3222struct mv643xx_stats {
3223 char stat_string[ETH_GSTRING_LEN];
3224 int sizeof_stat;
3225 int stat_offset;
3226};
3227
Julia Lawall7a6d84c2008-03-04 15:19:19 -08003228#define MV643XX_STAT(m) FIELD_SIZEOF(struct mv643xx_private, m), \
Dale Farnsworthb4de9052006-01-27 01:04:43 -07003229 offsetof(struct mv643xx_private, m)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230
3231static const struct mv643xx_stats mv643xx_gstrings_stats[] = {
3232 { "rx_packets", MV643XX_STAT(stats.rx_packets) },
3233 { "tx_packets", MV643XX_STAT(stats.tx_packets) },
3234 { "rx_bytes", MV643XX_STAT(stats.rx_bytes) },
3235 { "tx_bytes", MV643XX_STAT(stats.tx_bytes) },
3236 { "rx_errors", MV643XX_STAT(stats.rx_errors) },
3237 { "tx_errors", MV643XX_STAT(stats.tx_errors) },
3238 { "rx_dropped", MV643XX_STAT(stats.rx_dropped) },
3239 { "tx_dropped", MV643XX_STAT(stats.tx_dropped) },
3240 { "good_octets_received", MV643XX_STAT(mib_counters.good_octets_received) },
3241 { "bad_octets_received", MV643XX_STAT(mib_counters.bad_octets_received) },
3242 { "internal_mac_transmit_err", MV643XX_STAT(mib_counters.internal_mac_transmit_err) },
3243 { "good_frames_received", MV643XX_STAT(mib_counters.good_frames_received) },
3244 { "bad_frames_received", MV643XX_STAT(mib_counters.bad_frames_received) },
3245 { "broadcast_frames_received", MV643XX_STAT(mib_counters.broadcast_frames_received) },
3246 { "multicast_frames_received", MV643XX_STAT(mib_counters.multicast_frames_received) },
3247 { "frames_64_octets", MV643XX_STAT(mib_counters.frames_64_octets) },
3248 { "frames_65_to_127_octets", MV643XX_STAT(mib_counters.frames_65_to_127_octets) },
3249 { "frames_128_to_255_octets", MV643XX_STAT(mib_counters.frames_128_to_255_octets) },
3250 { "frames_256_to_511_octets", MV643XX_STAT(mib_counters.frames_256_to_511_octets) },
3251 { "frames_512_to_1023_octets", MV643XX_STAT(mib_counters.frames_512_to_1023_octets) },
3252 { "frames_1024_to_max_octets", MV643XX_STAT(mib_counters.frames_1024_to_max_octets) },
3253 { "good_octets_sent", MV643XX_STAT(mib_counters.good_octets_sent) },
3254 { "good_frames_sent", MV643XX_STAT(mib_counters.good_frames_sent) },
3255 { "excessive_collision", MV643XX_STAT(mib_counters.excessive_collision) },
3256 { "multicast_frames_sent", MV643XX_STAT(mib_counters.multicast_frames_sent) },
3257 { "broadcast_frames_sent", MV643XX_STAT(mib_counters.broadcast_frames_sent) },
3258 { "unrec_mac_control_received", MV643XX_STAT(mib_counters.unrec_mac_control_received) },
3259 { "fc_sent", MV643XX_STAT(mib_counters.fc_sent) },
3260 { "good_fc_received", MV643XX_STAT(mib_counters.good_fc_received) },
3261 { "bad_fc_received", MV643XX_STAT(mib_counters.bad_fc_received) },
3262 { "undersize_received", MV643XX_STAT(mib_counters.undersize_received) },
3263 { "fragments_received", MV643XX_STAT(mib_counters.fragments_received) },
3264 { "oversize_received", MV643XX_STAT(mib_counters.oversize_received) },
3265 { "jabber_received", MV643XX_STAT(mib_counters.jabber_received) },
3266 { "mac_receive_error", MV643XX_STAT(mib_counters.mac_receive_error) },
3267 { "bad_crc_event", MV643XX_STAT(mib_counters.bad_crc_event) },
3268 { "collision", MV643XX_STAT(mib_counters.collision) },
3269 { "late_collision", MV643XX_STAT(mib_counters.late_collision) },
3270};
3271
Denis Chengff8ac602007-09-02 18:30:18 +08003272#define MV643XX_STATS_LEN ARRAY_SIZE(mv643xx_gstrings_stats)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273
Dale Farnsworthb4de9052006-01-27 01:04:43 -07003274static void mv643xx_get_drvinfo(struct net_device *netdev,
3275 struct ethtool_drvinfo *drvinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276{
3277 strncpy(drvinfo->driver, mv643xx_driver_name, 32);
3278 strncpy(drvinfo->version, mv643xx_driver_version, 32);
3279 strncpy(drvinfo->fw_version, "N/A", 32);
3280 strncpy(drvinfo->bus_info, "mv643xx", 32);
3281 drvinfo->n_stats = MV643XX_STATS_LEN;
3282}
3283
Jeff Garzikb9f2c042007-10-03 18:07:32 -07003284static int mv643xx_get_sset_count(struct net_device *netdev, int sset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07003286 switch (sset) {
3287 case ETH_SS_STATS:
3288 return MV643XX_STATS_LEN;
3289 default:
3290 return -EOPNOTSUPP;
3291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292}
3293
Dale Farnsworthb4de9052006-01-27 01:04:43 -07003294static void mv643xx_get_ethtool_stats(struct net_device *netdev,
3295 struct ethtool_stats *stats, uint64_t *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296{
3297 struct mv643xx_private *mp = netdev->priv;
3298 int i;
3299
3300 eth_update_mib_counters(mp);
3301
Dale Farnsworthb4de9052006-01-27 01:04:43 -07003302 for (i = 0; i < MV643XX_STATS_LEN; i++) {
Jeff Garzik6aa20a22006-09-13 13:24:59 -04003303 char *p = (char *)mp+mv643xx_gstrings_stats[i].stat_offset;
Dale Farnsworthb4de9052006-01-27 01:04:43 -07003304 data[i] = (mv643xx_gstrings_stats[i].sizeof_stat ==
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 sizeof(uint64_t)) ? *(uint64_t *)p : *(uint32_t *)p;
3306 }
3307}
3308
Dale Farnsworthb4de9052006-01-27 01:04:43 -07003309static void mv643xx_get_strings(struct net_device *netdev, uint32_t stringset,
3310 uint8_t *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311{
3312 int i;
3313
3314 switch(stringset) {
3315 case ETH_SS_STATS:
3316 for (i=0; i < MV643XX_STATS_LEN; i++) {
Dale Farnsworthb4de9052006-01-27 01:04:43 -07003317 memcpy(data + i * ETH_GSTRING_LEN,
3318 mv643xx_gstrings_stats[i].stat_string,
3319 ETH_GSTRING_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 }
3321 break;
3322 }
3323}
3324
James Chapmand0412d92006-01-27 01:15:30 -07003325static u32 mv643xx_eth_get_link(struct net_device *dev)
3326{
3327 struct mv643xx_private *mp = netdev_priv(dev);
3328
3329 return mii_link_ok(&mp->mii);
3330}
3331
3332static int mv643xx_eth_nway_restart(struct net_device *dev)
3333{
3334 struct mv643xx_private *mp = netdev_priv(dev);
3335
3336 return mii_nway_restart(&mp->mii);
3337}
3338
3339static int mv643xx_eth_do_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
3340{
3341 struct mv643xx_private *mp = netdev_priv(dev);
3342
3343 return generic_mii_ioctl(&mp->mii, if_mii(ifr), cmd, NULL);
3344}
3345
Jeff Garzik7282d492006-09-13 14:30:00 -04003346static const struct ethtool_ops mv643xx_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 .get_settings = mv643xx_get_settings,
James Chapmand0412d92006-01-27 01:15:30 -07003348 .set_settings = mv643xx_set_settings,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 .get_drvinfo = mv643xx_get_drvinfo,
James Chapmand0412d92006-01-27 01:15:30 -07003350 .get_link = mv643xx_eth_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 .set_sg = ethtool_op_set_sg,
Dale Farnsworth194b2d02007-10-20 12:16:27 -07003352 .get_sset_count = mv643xx_get_sset_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 .get_ethtool_stats = mv643xx_get_ethtool_stats,
James Chapmand0412d92006-01-27 01:15:30 -07003354 .get_strings = mv643xx_get_strings,
James Chapmand0412d92006-01-27 01:15:30 -07003355 .nway_reset = mv643xx_eth_nway_restart,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356};
3357
3358/************* End ethtool support *************************/