blob: c35db735958f76c024123f6401d09984a03755dc [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 Hering3bb8a18a2006-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 *
Michael Stapelberg3871c382013-03-11 13:56:45 +000023 * Copyright (C) 2013 Michael Stapelberg <michael@stapelberg.de>
24 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * This program is free software; you can redistribute it and/or
26 * modify it under the terms of the GNU General Public License
27 * as published by the Free Software Foundation; either version 2
28 * of the License, or (at your option) any later version.
29 *
30 * This program is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU General Public License for more details.
34 *
35 * You should have received a copy of the GNU General Public License
36 * along with this program; if not, write to the Free Software
37 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
38 */
Lennert Buytenheka779d382008-06-01 00:54:05 +020039
Joe Perches7542db82011-03-02 17:50:35 +000040#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/init.h>
43#include <linux/dma-mapping.h>
Al Virob6298c22006-01-18 19:35:54 -050044#include <linux/in.h>
Lennert Buytenhekc3efab82008-10-02 00:52:39 +000045#include <linux/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/tcp.h>
47#include <linux/udp.h>
48#include <linux/etherdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <linux/delay.h>
50#include <linux/ethtool.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010051#include <linux/platform_device.h>
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020052#include <linux/module.h>
53#include <linux/kernel.h>
54#include <linux/spinlock.h>
55#include <linux/workqueue.h>
Lennert Buytenheked944932008-08-26 13:34:19 +020056#include <linux/phy.h>
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020057#include <linux/mv643xx_eth.h>
Lennert Buytenhek10a99482008-11-20 03:57:16 -080058#include <linux/io.h>
Sebastian Hesselbarth3619eb82013-04-11 23:20:00 +000059#include <linux/interrupt.h>
Lennert Buytenhek10a99482008-11-20 03:57:16 -080060#include <linux/types.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090061#include <linux/slab.h>
Andrew Lunn452503e2011-12-24 01:24:24 +010062#include <linux/clk.h>
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +000063#include <linux/of.h>
64#include <linux/of_irq.h>
65#include <linux/of_net.h>
Sebastian Hesselbarthcc9d4592013-05-29 09:32:46 +000066#include <linux/of_mdio.h>
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020067
Lennert Buytenheke5371492008-06-01 02:18:13 +020068static char mv643xx_eth_driver_name[] = "mv643xx_eth";
Lennert Buytenhek042af532008-08-24 09:01:57 +020069static char mv643xx_eth_driver_version[] = "1.4";
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +020070
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020071
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020072/*
73 * Registers shared between all ports.
74 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020075#define PHY_ADDR 0x0000
Lennert Buytenhek3cb46672008-06-01 01:03:23 +020076#define WINDOW_BASE(w) (0x0200 + ((w) << 3))
77#define WINDOW_SIZE(w) (0x0204 + ((w) << 3))
78#define WINDOW_REMAP_HIGH(w) (0x0280 + ((w) << 2))
79#define WINDOW_BAR_ENABLE 0x0290
80#define WINDOW_PROTECT(w) (0x0294 + ((w) << 4))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020081
82/*
Lennert Buytenhek37a60842008-11-20 03:57:36 -080083 * Main per-port registers. These live at offset 0x0400 for
84 * port #0, 0x0800 for port #1, and 0x0c00 for port #2.
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +020085 */
Lennert Buytenhek37a60842008-11-20 03:57:36 -080086#define PORT_CONFIG 0x0000
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +020087#define UNICAST_PROMISCUOUS_MODE 0x00000001
Lennert Buytenhek37a60842008-11-20 03:57:36 -080088#define PORT_CONFIG_EXT 0x0004
89#define MAC_ADDR_LOW 0x0014
90#define MAC_ADDR_HIGH 0x0018
91#define SDMA_CONFIG 0x001c
Lennert Buytenhekbecfad92009-05-06 03:01:17 +000092#define TX_BURST_SIZE_16_64BIT 0x01000000
93#define TX_BURST_SIZE_4_64BIT 0x00800000
94#define BLM_TX_NO_SWAP 0x00000020
95#define BLM_RX_NO_SWAP 0x00000010
96#define RX_BURST_SIZE_16_64BIT 0x00000008
97#define RX_BURST_SIZE_4_64BIT 0x00000004
Lennert Buytenhek37a60842008-11-20 03:57:36 -080098#define PORT_SERIAL_CONTROL 0x003c
Lennert Buytenhekbecfad92009-05-06 03:01:17 +000099#define SET_MII_SPEED_TO_100 0x01000000
100#define SET_GMII_SPEED_TO_1000 0x00800000
101#define SET_FULL_DUPLEX_MODE 0x00200000
102#define MAX_RX_PACKET_9700BYTE 0x000a0000
103#define DISABLE_AUTO_NEG_SPEED_GMII 0x00002000
104#define DO_NOT_FORCE_LINK_FAIL 0x00000400
105#define SERIAL_PORT_CONTROL_RESERVED 0x00000200
106#define DISABLE_AUTO_NEG_FOR_FLOW_CTRL 0x00000008
107#define DISABLE_AUTO_NEG_FOR_DUPLEX 0x00000004
108#define FORCE_LINK_PASS 0x00000002
109#define SERIAL_PORT_ENABLE 0x00000001
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800110#define PORT_STATUS 0x0044
Lennert Buytenheka2a41682008-06-01 01:30:42 +0200111#define TX_FIFO_EMPTY 0x00000400
Lennert Buytenhekae9ae062008-07-15 02:15:24 +0200112#define TX_IN_PROGRESS 0x00000080
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +0200113#define PORT_SPEED_MASK 0x00000030
114#define PORT_SPEED_1000 0x00000010
115#define PORT_SPEED_100 0x00000020
116#define PORT_SPEED_10 0x00000000
117#define FLOW_CONTROL_ENABLED 0x00000008
118#define FULL_DUPLEX 0x00000004
Lennert Buytenhek81600eea92008-07-14 14:29:40 +0200119#define LINK_UP 0x00000002
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800120#define TXQ_COMMAND 0x0048
121#define TXQ_FIX_PRIO_CONF 0x004c
Sebastian Hesselbarthcb852152013-05-29 09:32:47 +0000122#define PORT_SERIAL_CONTROL1 0x004c
123#define CLK125_BYPASS_EN 0x00000010
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800124#define TX_BW_RATE 0x0050
125#define TX_BW_MTU 0x0058
126#define TX_BW_BURST 0x005c
127#define INT_CAUSE 0x0060
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +0200128#define INT_TX_END 0x07f80000
Saeed Bisharae0ca8412009-05-06 03:02:01 +0000129#define INT_TX_END_0 0x00080000
Lennert Buytenhekbefefe22008-08-28 06:10:04 +0200130#define INT_RX 0x000003fc
Saeed Bisharae0ca8412009-05-06 03:02:01 +0000131#define INT_RX_0 0x00000004
Lennert Buytenhek073a3452008-06-01 02:00:31 +0200132#define INT_EXT 0x00000002
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800133#define INT_CAUSE_EXT 0x0064
Lennert Buytenhekbefefe22008-08-28 06:10:04 +0200134#define INT_EXT_LINK_PHY 0x00110000
135#define INT_EXT_TX 0x000000ff
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800136#define INT_MASK 0x0068
137#define INT_MASK_EXT 0x006c
138#define TX_FIFO_URGENT_THRESHOLD 0x0074
Paulius Zaleckas302476c2012-01-23 01:16:35 +0000139#define RX_DISCARD_FRAME_CNT 0x0084
140#define RX_OVERRUN_FRAME_CNT 0x0088
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800141#define TXQ_FIX_PRIO_CONF_MOVED 0x00dc
142#define TX_BW_RATE_MOVED 0x00e0
143#define TX_BW_MTU_MOVED 0x00e8
144#define TX_BW_BURST_MOVED 0x00ec
145#define RXQ_CURRENT_DESC_PTR(q) (0x020c + ((q) << 4))
146#define RXQ_COMMAND 0x0280
147#define TXQ_CURRENT_DESC_PTR(q) (0x02c0 + ((q) << 2))
148#define TXQ_BW_TOKENS(q) (0x0300 + ((q) << 4))
149#define TXQ_BW_CONF(q) (0x0304 + ((q) << 4))
150#define TXQ_BW_WRR_CONF(q) (0x0308 + ((q) << 4))
151
152/*
153 * Misc per-port registers.
154 */
Lennert Buytenhek3cb46672008-06-01 01:03:23 +0200155#define MIB_COUNTERS(p) (0x1000 + ((p) << 7))
156#define SPECIAL_MCAST_TABLE(p) (0x1400 + ((p) << 10))
157#define OTHER_MCAST_TABLE(p) (0x1500 + ((p) << 10))
158#define UNICAST_TABLE(p) (0x1600 + ((p) << 10))
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200159
Lennert Buytenhek2679a552008-06-01 01:18:58 +0200160
161/*
Lennert Buytenhekbecfad92009-05-06 03:01:17 +0000162 * SDMA configuration register default value.
Lennert Buytenhek2679a552008-06-01 01:18:58 +0200163 */
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200164#if defined(__BIG_ENDIAN)
165#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
Lennert Buytenheke0c6ef92009-01-19 17:16:00 -0800166 (RX_BURST_SIZE_4_64BIT | \
167 TX_BURST_SIZE_4_64BIT)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200168#elif defined(__LITTLE_ENDIAN)
169#define PORT_SDMA_CONFIG_DEFAULT_VALUE \
Lennert Buytenheke0c6ef92009-01-19 17:16:00 -0800170 (RX_BURST_SIZE_4_64BIT | \
171 BLM_RX_NO_SWAP | \
172 BLM_TX_NO_SWAP | \
173 TX_BURST_SIZE_4_64BIT)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200174#else
175#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
176#endif
177
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200178
179/*
Lennert Buytenhekbecfad92009-05-06 03:01:17 +0000180 * Misc definitions.
Lennert Buytenhek2beff772008-06-01 01:22:37 +0200181 */
Lennert Buytenhekbecfad92009-05-06 03:01:17 +0000182#define DEFAULT_RX_QUEUE_SIZE 128
183#define DEFAULT_TX_QUEUE_SIZE 256
Lennert Buytenhek7fd96ce2009-05-06 03:01:22 +0000184#define SKB_DMA_REALIGN ((PAGE_SIZE - NET_SKB_PAD) % SMP_CACHE_BYTES)
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200185
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200186
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200187/*
188 * RX/TX descriptors.
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200189 */
190#if defined(__BIG_ENDIAN)
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200191struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200192 u16 byte_cnt; /* Descriptor buffer byte count */
193 u16 buf_size; /* Buffer size */
194 u32 cmd_sts; /* Descriptor command status */
195 u32 next_desc_ptr; /* Next descriptor pointer */
196 u32 buf_ptr; /* Descriptor buffer pointer */
197};
198
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200199struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200200 u16 byte_cnt; /* buffer byte count */
201 u16 l4i_chk; /* CPU provided TCP checksum */
202 u32 cmd_sts; /* Command/status field */
203 u32 next_desc_ptr; /* Pointer to next descriptor */
204 u32 buf_ptr; /* pointer to buffer for this descriptor*/
205};
206#elif defined(__LITTLE_ENDIAN)
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200207struct rx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200208 u32 cmd_sts; /* Descriptor command status */
209 u16 buf_size; /* Buffer size */
210 u16 byte_cnt; /* Descriptor buffer byte count */
211 u32 buf_ptr; /* Descriptor buffer pointer */
212 u32 next_desc_ptr; /* Next descriptor pointer */
213};
214
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200215struct tx_desc {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200216 u32 cmd_sts; /* Command/status field */
217 u16 l4i_chk; /* CPU provided TCP checksum */
218 u16 byte_cnt; /* buffer byte count */
219 u32 buf_ptr; /* pointer to buffer for this descriptor*/
220 u32 next_desc_ptr; /* Pointer to next descriptor */
221};
222#else
223#error One of __BIG_ENDIAN or __LITTLE_ENDIAN must be defined
224#endif
225
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200226/* RX & TX descriptor command */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200227#define BUFFER_OWNED_BY_DMA 0x80000000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200228
229/* RX & TX descriptor status */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200230#define ERROR_SUMMARY 0x00000001
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200231
232/* RX descriptor status */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200233#define LAYER_4_CHECKSUM_OK 0x40000000
234#define RX_ENABLE_INTERRUPT 0x20000000
235#define RX_FIRST_DESC 0x08000000
236#define RX_LAST_DESC 0x04000000
Lennert Buytenhekeaf5d592009-02-12 14:08:39 +0000237#define RX_IP_HDR_OK 0x02000000
238#define RX_PKT_IS_IPV4 0x01000000
239#define RX_PKT_IS_ETHERNETV2 0x00800000
240#define RX_PKT_LAYER4_TYPE_MASK 0x00600000
241#define RX_PKT_LAYER4_TYPE_TCP_IPV4 0x00000000
242#define RX_PKT_IS_VLAN_TAGGED 0x00080000
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200243
244/* TX descriptor command */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200245#define TX_ENABLE_INTERRUPT 0x00800000
246#define GEN_CRC 0x00400000
247#define TX_FIRST_DESC 0x00200000
248#define TX_LAST_DESC 0x00100000
249#define ZERO_PADDING 0x00080000
250#define GEN_IP_V4_CHECKSUM 0x00040000
251#define GEN_TCP_UDP_CHECKSUM 0x00020000
252#define UDP_FRAME 0x00010000
Lennert Buytenheke32b6612008-07-24 06:22:59 +0200253#define MAC_HDR_EXTRA_4_BYTES 0x00008000
254#define MAC_HDR_EXTRA_8_BYTES 0x00000200
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200255
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200256#define TX_IHL_SHIFT 11
Lennert Buytenhek7ca72a32008-06-01 01:41:29 +0200257
258
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200259/* global *******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200260struct mv643xx_eth_shared_private {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200261 /*
262 * Ethernet controller base address.
263 */
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200264 void __iomem *base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200265
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200266 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200267 * Per-port MBUS window access register value.
268 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200269 u32 win_protect;
270
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200271 /*
272 * Hardware-specific parameters.
273 */
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +0200274 int extended_rx_coal_limit;
Lennert Buytenhek457b1d52008-09-04 12:22:34 +0200275 int tx_bw_control;
Saeed Bishara9b2c2ff2010-06-27 00:26:43 +0000276 int tx_csum_limit;
Sebastian Hesselbarth20922482013-04-10 23:29:33 +0000277 struct clk *clk;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200278};
279
Lennert Buytenhek457b1d52008-09-04 12:22:34 +0200280#define TX_BW_CONTROL_ABSENT 0
281#define TX_BW_CONTROL_OLD_LAYOUT 1
282#define TX_BW_CONTROL_NEW_LAYOUT 2
283
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +0000284static int mv643xx_eth_open(struct net_device *dev);
285static int mv643xx_eth_stop(struct net_device *dev);
286
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200287
288/* per-port *****************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200289struct mib_counters {
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200290 u64 good_octets_received;
291 u32 bad_octets_received;
292 u32 internal_mac_transmit_err;
293 u32 good_frames_received;
294 u32 bad_frames_received;
295 u32 broadcast_frames_received;
296 u32 multicast_frames_received;
297 u32 frames_64_octets;
298 u32 frames_65_to_127_octets;
299 u32 frames_128_to_255_octets;
300 u32 frames_256_to_511_octets;
301 u32 frames_512_to_1023_octets;
302 u32 frames_1024_to_max_octets;
303 u64 good_octets_sent;
304 u32 good_frames_sent;
305 u32 excessive_collision;
306 u32 multicast_frames_sent;
307 u32 broadcast_frames_sent;
308 u32 unrec_mac_control_received;
309 u32 fc_sent;
310 u32 good_fc_received;
311 u32 bad_fc_received;
312 u32 undersize_received;
313 u32 fragments_received;
314 u32 oversize_received;
315 u32 jabber_received;
316 u32 mac_receive_error;
317 u32 bad_crc_event;
318 u32 collision;
319 u32 late_collision;
Paulius Zaleckas302476c2012-01-23 01:16:35 +0000320 /* Non MIB hardware counters */
321 u32 rx_discard;
322 u32 rx_overrun;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200323};
324
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200325struct rx_queue {
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200326 int index;
327
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200328 int rx_ring_size;
329
330 int rx_desc_count;
331 int rx_curr_desc;
332 int rx_used_desc;
333
334 struct rx_desc *rx_desc_area;
335 dma_addr_t rx_desc_dma;
336 int rx_desc_area_size;
337 struct sk_buff **rx_skb;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200338};
339
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200340struct tx_queue {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200341 int index;
342
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200343 int tx_ring_size;
344
345 int tx_desc_count;
346 int tx_curr_desc;
347 int tx_used_desc;
348
349 struct tx_desc *tx_desc_area;
350 dma_addr_t tx_desc_dma;
351 int tx_desc_area_size;
Lennert Buytenhek99ab08e2008-08-28 05:53:18 +0200352
353 struct sk_buff_head tx_skb;
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200354
355 unsigned long tx_packets;
356 unsigned long tx_bytes;
357 unsigned long tx_dropped;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200358};
359
Lennert Buytenheke5371492008-06-01 02:18:13 +0200360struct mv643xx_eth_private {
361 struct mv643xx_eth_shared_private *shared;
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800362 void __iomem *base;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200363 int port_num;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200364
365 struct net_device *dev;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200366
Lennert Buytenheked944932008-08-26 13:34:19 +0200367 struct phy_device *phy;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200368
Lennert Buytenhek4ff34952008-09-19 05:04:57 +0200369 struct timer_list mib_counters_timer;
370 spinlock_t mib_counters_lock;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200371 struct mib_counters mib_counters;
Lennert Buytenhek4ff34952008-09-19 05:04:57 +0200372
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200373 struct work_struct tx_timeout_task;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200374
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200375 struct napi_struct napi;
Saeed Bisharae0ca8412009-05-06 03:02:01 +0000376 u32 int_mask;
Lennert Buytenhek1319eba2009-04-29 11:57:34 +0000377 u8 oom;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200378 u8 work_link;
379 u8 work_tx;
380 u8 work_tx_end;
381 u8 work_rx;
382 u8 work_rx_refill;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200383
Lennert Buytenhek2bcb4b02008-10-01 02:33:57 -0700384 int skb_size;
Lennert Buytenhek2bcb4b02008-10-01 02:33:57 -0700385
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200386 /*
387 * RX state.
388 */
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +0000389 int rx_ring_size;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200390 unsigned long rx_desc_sram_addr;
391 int rx_desc_sram_size;
Lennert Buytenhekf7981c12008-08-26 10:23:22 +0200392 int rxq_count;
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200393 struct timer_list rx_oom;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200394 struct rx_queue rxq[8];
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200395
396 /*
397 * TX state.
398 */
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +0000399 int tx_ring_size;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200400 unsigned long tx_desc_sram_addr;
401 int tx_desc_sram_size;
Lennert Buytenhekf7981c12008-08-26 10:23:22 +0200402 int txq_count;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200403 struct tx_queue txq[8];
Andrew Lunn452503e2011-12-24 01:24:24 +0100404
405 /*
406 * Hardware-specific parameters.
407 */
408 struct clk *clk;
409 unsigned int t_clk;
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200410};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Lennert Buytenhekfbd6a752007-10-19 16:03:46 +0200412
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200413/* port register accessors **************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +0200414static inline u32 rdl(struct mv643xx_eth_private *mp, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200416 return readl(mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800419static inline u32 rdlp(struct mv643xx_eth_private *mp, int offset)
420{
421 return readl(mp->base + offset);
422}
423
Lennert Buytenheke5371492008-06-01 02:18:13 +0200424static inline void wrl(struct mv643xx_eth_private *mp, int offset, u32 data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200426 writel(data, mp->shared->base + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800429static inline void wrlp(struct mv643xx_eth_private *mp, int offset, u32 data)
430{
431 writel(data, mp->base + offset);
432}
433
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200434
435/* rxq/txq helper functions *************************************************/
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200436static struct mv643xx_eth_private *rxq_to_mp(struct rx_queue *rxq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200438 return container_of(rxq, struct mv643xx_eth_private, rxq[rxq->index]);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200439}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200441static struct mv643xx_eth_private *txq_to_mp(struct tx_queue *txq)
442{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200443 return container_of(txq, struct mv643xx_eth_private, txq[txq->index]);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200444}
445
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200446static void rxq_enable(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200447{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200448 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800449 wrlp(mp, RXQ_COMMAND, 1 << rxq->index);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200450}
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700451
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200452static void rxq_disable(struct rx_queue *rxq)
453{
454 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +0200455 u8 mask = 1 << rxq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200456
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800457 wrlp(mp, RXQ_COMMAND, mask << 8);
458 while (rdlp(mp, RXQ_COMMAND) & mask)
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200459 udelay(10);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200460}
461
Lennert Buytenhek6b368f62008-07-11 19:38:34 +0200462static void txq_reset_hw_ptr(struct tx_queue *txq)
463{
464 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek6b368f62008-07-11 19:38:34 +0200465 u32 addr;
466
467 addr = (u32)txq->tx_desc_dma;
468 addr += txq->tx_curr_desc * sizeof(struct tx_desc);
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800469 wrlp(mp, TXQ_CURRENT_DESC_PTR(txq->index), addr);
Lennert Buytenhek6b368f62008-07-11 19:38:34 +0200470}
471
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200472static void txq_enable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200473{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200474 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800475 wrlp(mp, TXQ_COMMAND, 1 << txq->index);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200476}
477
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200478static void txq_disable(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200479{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200480 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200481 u8 mask = 1 << txq->index;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200482
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800483 wrlp(mp, TXQ_COMMAND, mask << 8);
484 while (rdlp(mp, TXQ_COMMAND) & mask)
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200485 udelay(10);
486}
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200487
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200488static void txq_maybe_wake(struct tx_queue *txq)
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200489{
490 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenheke5ef1de2008-08-28 06:26:23 +0200491 struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200492
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200493 if (netif_tx_queue_stopped(nq)) {
494 __netif_tx_lock(nq, smp_processor_id());
495 if (txq->tx_ring_size - txq->tx_desc_count >= MAX_SKB_FRAGS + 1)
496 netif_tx_wake_queue(nq);
497 __netif_tx_unlock(nq);
498 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200499}
500
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200501static int rxq_process(struct rx_queue *rxq, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200503 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
504 struct net_device_stats *stats = &mp->dev->stats;
505 int rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200507 rx = 0;
Lennert Buytenhek9e1f3772008-08-24 02:33:47 +0200508 while (rx < budget && rxq->rx_desc_count) {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200509 struct rx_desc *rx_desc;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200510 unsigned int cmd_sts;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200511 struct sk_buff *skb;
Lennert Buytenhek6b8f90c2008-09-14 15:50:32 +0200512 u16 byte_cnt;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200513
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200514 rx_desc = &rxq->rx_desc_area[rxq->rx_curr_desc];
Lennert Buytenhek96587662008-06-01 10:31:56 +0200515
516 cmd_sts = rx_desc->cmd_sts;
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200517 if (cmd_sts & BUFFER_OWNED_BY_DMA)
Lennert Buytenhek96587662008-06-01 10:31:56 +0200518 break;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200519 rmb();
520
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200521 skb = rxq->rx_skb[rxq->rx_curr_desc];
522 rxq->rx_skb[rxq->rx_curr_desc] = NULL;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200523
Lennert Buytenhek9da78742008-08-23 23:45:28 +0200524 rxq->rx_curr_desc++;
525 if (rxq->rx_curr_desc == rxq->rx_ring_size)
526 rxq->rx_curr_desc = 0;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200527
Gabriel Pauberteb0519b2009-05-17 21:16:47 -0700528 dma_unmap_single(mp->dev->dev.parent, rx_desc->buf_ptr,
Lennert Buytenhekabe78712008-08-24 03:00:20 +0200529 rx_desc->buf_size, DMA_FROM_DEVICE);
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200530 rxq->rx_desc_count--;
531 rx++;
Dale Farnsworthb1dd9ca2005-09-01 09:59:23 -0700532
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200533 mp->work_rx_refill |= 1 << rxq->index;
534
Lennert Buytenhek6b8f90c2008-09-14 15:50:32 +0200535 byte_cnt = rx_desc->byte_cnt;
536
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700537 /*
538 * Update statistics.
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200539 *
540 * Note that the descriptor byte count includes 2 dummy
541 * bytes automatically inserted by the hardware at the
542 * start of the packet (which we don't count), and a 4
543 * byte CRC at the end of the packet (which we do count).
Dale Farnsworth468d09f2006-03-03 10:04:39 -0700544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 stats->rx_packets++;
Lennert Buytenhek6b8f90c2008-09-14 15:50:32 +0200546 stats->rx_bytes += byte_cnt - 2;
Lennert Buytenhek96587662008-06-01 10:31:56 +0200547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /*
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200549 * In case we received a packet without first / last bits
550 * on, or the error summary bit is set, the packet needs
551 * to be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 */
Lennert Buytenhekf61e5542008-11-20 03:58:46 -0800553 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC | ERROR_SUMMARY))
554 != (RX_FIRST_DESC | RX_LAST_DESC))
555 goto err;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200556
Lennert Buytenhekf61e5542008-11-20 03:58:46 -0800557 /*
558 * The -4 is for the CRC in the trailer of the
559 * received packet
560 */
561 skb_put(skb, byte_cnt - 2 - 4);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200562
Lennert Buytenhekf61e5542008-11-20 03:58:46 -0800563 if (cmd_sts & LAYER_4_CHECKSUM_OK)
564 skb->ip_summed = CHECKSUM_UNNECESSARY;
565 skb->protocol = eth_type_trans(skb, mp->dev);
Lennert Buytenhekeaf5d592009-02-12 14:08:39 +0000566
Sebastian Hesselbarth3619eb82013-04-11 23:20:00 +0000567 napi_gro_receive(&mp->napi, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Lennert Buytenhekf61e5542008-11-20 03:58:46 -0800569 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Lennert Buytenhekf61e5542008-11-20 03:58:46 -0800571err:
572 stats->rx_dropped++;
573
574 if ((cmd_sts & (RX_FIRST_DESC | RX_LAST_DESC)) !=
575 (RX_FIRST_DESC | RX_LAST_DESC)) {
576 if (net_ratelimit())
Joe Perches7542db82011-03-02 17:50:35 +0000577 netdev_err(mp->dev,
578 "received packet spanning multiple descriptors\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
Lennert Buytenhekf61e5542008-11-20 03:58:46 -0800580
581 if (cmd_sts & ERROR_SUMMARY)
582 stats->rx_errors++;
583
584 dev_kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +0200586
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200587 if (rx < budget)
588 mp->work_rx &= ~(1 << rxq->index);
589
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200590 return rx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200593static int rxq_refill(struct rx_queue *rxq, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200595 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200596 int refilled;
Lennert Buytenhek8a578112008-06-01 18:09:35 +0200597
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200598 refilled = 0;
599 while (refilled < budget && rxq->rx_desc_count < rxq->rx_ring_size) {
600 struct sk_buff *skb;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200601 int rx;
Lennert Buytenhek53771522008-11-20 03:59:04 -0800602 struct rx_desc *rx_desc;
Saeed Bishara530e5572010-01-05 09:15:32 +0000603 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Eric Dumazetacb600d2012-10-05 06:23:55 +0000605 skb = netdev_alloc_skb(mp->dev, mp->skb_size);
Lennert Buytenhek2bcb4b02008-10-01 02:33:57 -0700606
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200607 if (skb == NULL) {
Lennert Buytenhek1319eba2009-04-29 11:57:34 +0000608 mp->oom = 1;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200609 goto oom;
610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Lennert Buytenhek7fd96ce2009-05-06 03:01:22 +0000612 if (SKB_DMA_REALIGN)
613 skb_reserve(skb, SKB_DMA_REALIGN);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200614
615 refilled++;
616 rxq->rx_desc_count++;
617
618 rx = rxq->rx_used_desc++;
619 if (rxq->rx_used_desc == rxq->rx_ring_size)
620 rxq->rx_used_desc = 0;
621
Lennert Buytenhek53771522008-11-20 03:59:04 -0800622 rx_desc = rxq->rx_desc_area + rx;
623
Isaku Yamahata18f1d052013-06-14 17:58:33 +0900624 size = skb_end_pointer(skb) - skb->data;
Gabriel Pauberteb0519b2009-05-17 21:16:47 -0700625 rx_desc->buf_ptr = dma_map_single(mp->dev->dev.parent,
Saeed Bishara530e5572010-01-05 09:15:32 +0000626 skb->data, size,
Gabriel Pauberteb0519b2009-05-17 21:16:47 -0700627 DMA_FROM_DEVICE);
Saeed Bishara530e5572010-01-05 09:15:32 +0000628 rx_desc->buf_size = size;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200629 rxq->rx_skb[rx] = skb;
630 wmb();
Lennert Buytenhek53771522008-11-20 03:59:04 -0800631 rx_desc->cmd_sts = BUFFER_OWNED_BY_DMA | RX_ENABLE_INTERRUPT;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200632 wmb();
633
634 /*
635 * The hardware automatically prepends 2 bytes of
636 * dummy data to each received packet, so that the
637 * IP header ends up 16-byte aligned.
638 */
639 skb_reserve(skb, 2);
Lennert Buytenhek2257e052008-08-24 04:33:36 +0200640 }
641
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200642 if (refilled < budget)
643 mp->work_rx_refill &= ~(1 << rxq->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200645oom:
646 return refilled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200649
650/* tx ***********************************************************************/
Paul Janzenf7ea3332006-01-16 16:52:13 -0700651static inline unsigned int has_tiny_unaligned_frags(struct sk_buff *skb)
652{
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200653 int frag;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700654
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700655 for (frag = 0; frag < skb_shinfo(skb)->nr_frags; frag++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000656 const skb_frag_t *fragp = &skb_shinfo(skb)->frags[frag];
657
658 if (skb_frag_size(fragp) <= 8 && fragp->page_offset & 7)
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700659 return 1;
660 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200661
Dale Farnsworthb4de9052006-01-27 01:04:43 -0700662 return 0;
Paul Janzenf7ea3332006-01-16 16:52:13 -0700663}
664
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200665static void txq_submit_frag_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700666{
Gabriel Pauberteb0519b2009-05-17 21:16:47 -0700667 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200668 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700669 int frag;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700670
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200671 for (frag = 0; frag < nr_frags; frag++) {
672 skb_frag_t *this_frag;
673 int tx_index;
674 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700675
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200676 this_frag = &skb_shinfo(skb)->frags[frag];
Lennert Buytenhek66823b92008-11-20 03:58:09 -0800677 tx_index = txq->tx_curr_desc++;
678 if (txq->tx_curr_desc == txq->tx_ring_size)
679 txq->tx_curr_desc = 0;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200680 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700681
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200682 /*
683 * The last fragment will generate an interrupt
684 * which will free the skb on TX completion.
685 */
686 if (frag == nr_frags - 1) {
687 desc->cmd_sts = BUFFER_OWNED_BY_DMA |
688 ZERO_PADDING | TX_LAST_DESC |
689 TX_ENABLE_INTERRUPT;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200690 } else {
691 desc->cmd_sts = BUFFER_OWNED_BY_DMA;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200692 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700693
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700694 desc->l4i_chk = 0;
Eric Dumazet9e903e02011-10-18 21:00:24 +0000695 desc->byte_cnt = skb_frag_size(this_frag);
Ian Campbellf1063582011-08-31 00:46:57 +0000696 desc->buf_ptr = skb_frag_dma_map(mp->dev->dev.parent,
697 this_frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +0000698 skb_frag_size(this_frag),
Ian Campbellf1063582011-08-31 00:46:57 +0000699 DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700700 }
701}
702
Byron Bradley324ff2c2008-02-04 23:47:15 -0800703static inline __be16 sum16_as_be(__sum16 sum)
704{
705 return (__force __be16)sum;
706}
707
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200708static int txq_submit_skb(struct tx_queue *txq, struct sk_buff *skb)
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700709{
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200710 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200711 int nr_frags = skb_shinfo(skb)->nr_frags;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700712 int tx_index;
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200713 struct tx_desc *desc;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700714 u32 cmd_sts;
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200715 u16 l4i_chk;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700716 int length;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700717
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200718 cmd_sts = TX_FIRST_DESC | GEN_CRC | BUFFER_OWNED_BY_DMA;
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200719 l4i_chk = 0;
720
721 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Saeed Bishara9b2c2ff2010-06-27 00:26:43 +0000722 int hdr_len;
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200723 int tag_bytes;
724
725 BUG_ON(skb->protocol != htons(ETH_P_IP) &&
726 skb->protocol != htons(ETH_P_8021Q));
727
Saeed Bishara9b2c2ff2010-06-27 00:26:43 +0000728 hdr_len = (void *)ip_hdr(skb) - (void *)skb->data;
729 tag_bytes = hdr_len - ETH_HLEN;
730 if (skb->len - hdr_len > mp->shared->tx_csum_limit ||
731 unlikely(tag_bytes & ~12)) {
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200732 if (skb_checksum_help(skb) == 0)
733 goto no_csum;
734 kfree_skb(skb);
735 return 1;
736 }
737
738 if (tag_bytes & 4)
739 cmd_sts |= MAC_HDR_EXTRA_4_BYTES;
740 if (tag_bytes & 8)
741 cmd_sts |= MAC_HDR_EXTRA_8_BYTES;
742
743 cmd_sts |= GEN_TCP_UDP_CHECKSUM |
744 GEN_IP_V4_CHECKSUM |
745 ip_hdr(skb)->ihl << TX_IHL_SHIFT;
746
747 switch (ip_hdr(skb)->protocol) {
748 case IPPROTO_UDP:
749 cmd_sts |= UDP_FRAME;
750 l4i_chk = ntohs(sum16_as_be(udp_hdr(skb)->check));
751 break;
752 case IPPROTO_TCP:
753 l4i_chk = ntohs(sum16_as_be(tcp_hdr(skb)->check));
754 break;
755 default:
756 BUG();
757 }
758 } else {
759no_csum:
760 /* Errata BTS #50, IHL must be 5 if no HW checksum */
761 cmd_sts |= 5 << TX_IHL_SHIFT;
762 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700763
Lennert Buytenhek66823b92008-11-20 03:58:09 -0800764 tx_index = txq->tx_curr_desc++;
765 if (txq->tx_curr_desc == txq->tx_ring_size)
766 txq->tx_curr_desc = 0;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200767 desc = &txq->tx_desc_area[tx_index];
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700768
Dale Farnsworthff561ee2006-03-03 10:02:51 -0700769 if (nr_frags) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200770 txq_submit_frag_skb(txq, skb);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700771 length = skb_headlen(skb);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700772 } else {
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +0200773 cmd_sts |= ZERO_PADDING | TX_LAST_DESC | TX_ENABLE_INTERRUPT;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700774 length = skb->len;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700775 }
776
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200777 desc->l4i_chk = l4i_chk;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700778 desc->byte_cnt = length;
Gabriel Pauberteb0519b2009-05-17 21:16:47 -0700779 desc->buf_ptr = dma_map_single(mp->dev->dev.parent, skb->data,
780 length, DMA_TO_DEVICE);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700781
Lennert Buytenhek99ab08e2008-08-28 05:53:18 +0200782 __skb_queue_tail(&txq->tx_skb, skb);
783
Richard Cochran3b182d72011-06-21 16:01:11 -0700784 skb_tx_timestamp(skb);
785
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700786 /* ensure all other descriptors are written before first cmd_sts */
787 wmb();
788 desc->cmd_sts = cmd_sts;
789
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200790 /* clear TX_END status */
791 mp->work_tx_end &= ~(1 << txq->index);
Lennert Buytenhek8fa89bf2008-07-14 22:56:55 +0200792
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700793 /* ensure all descriptors are written before poking hardware */
794 wmb();
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200795 txq_enable(txq);
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700796
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200797 txq->tx_desc_count += nr_frags + 1;
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200798
799 return 0;
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700800}
801
Denis Kirjanov0ccfe642009-11-29 17:04:31 -0800802static netdev_tx_t mv643xx_eth_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Lennert Buytenheke5371492008-06-01 02:18:13 +0200804 struct mv643xx_eth_private *mp = netdev_priv(dev);
Richard Cochran73151ce2011-06-21 16:00:24 -0700805 int length, queue;
Lennert Buytenhek13d64282008-06-01 20:51:22 +0200806 struct tx_queue *txq;
Lennert Buytenheke5ef1de2008-08-28 06:26:23 +0200807 struct netdev_queue *nq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200809 queue = skb_get_queue_mapping(skb);
810 txq = mp->txq + queue;
811 nq = netdev_get_tx_queue(dev, queue);
812
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700813 if (has_tiny_unaligned_frags(skb) && __skb_linearize(skb)) {
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200814 txq->tx_dropped++;
Joe Perches7542db82011-03-02 17:50:35 +0000815 netdev_printk(KERN_DEBUG, dev,
816 "failed to linearize skb with tiny unaligned fragment\n");
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700817 return NETDEV_TX_BUSY;
Dale Farnsworth94843562006-04-11 18:24:26 -0700818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Lennert Buytenhek17cd0a52008-08-24 05:33:55 +0200820 if (txq->tx_ring_size - txq->tx_desc_count < MAX_SKB_FRAGS + 1) {
Lennert Buytenheke5ef1de2008-08-28 06:26:23 +0200821 if (net_ratelimit())
Joe Perches7542db82011-03-02 17:50:35 +0000822 netdev_err(dev, "tx queue full?!\n");
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +0200823 kfree_skb(skb);
824 return NETDEV_TX_OK;
Lennert Buytenhek4d64e712008-03-18 11:32:41 -0700825 }
826
Richard Cochran73151ce2011-06-21 16:00:24 -0700827 length = skb->len;
828
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200829 if (!txq_submit_skb(txq, skb)) {
830 int entries_left;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Richard Cochran73151ce2011-06-21 16:00:24 -0700832 txq->tx_bytes += length;
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200833 txq->tx_packets++;
Lennert Buytenhek4df89bd2008-09-19 04:05:00 +0200834
835 entries_left = txq->tx_ring_size - txq->tx_desc_count;
836 if (entries_left < MAX_SKB_FRAGS + 1)
837 netif_tx_stop_queue(nq);
838 }
Dale Farnsworthc8aaea22006-03-03 10:02:05 -0700839
Lennert Buytenhekc0d0f2c2008-03-18 11:34:34 -0700840 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +0200843
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200844/* tx napi ******************************************************************/
845static void txq_kick(struct tx_queue *txq)
846{
847 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200848 struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200849 u32 hw_desc_ptr;
850 u32 expected_ptr;
851
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200852 __netif_tx_lock(nq, smp_processor_id());
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200853
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800854 if (rdlp(mp, TXQ_COMMAND) & (1 << txq->index))
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200855 goto out;
856
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800857 hw_desc_ptr = rdlp(mp, TXQ_CURRENT_DESC_PTR(txq->index));
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200858 expected_ptr = (u32)txq->tx_desc_dma +
859 txq->tx_curr_desc * sizeof(struct tx_desc);
860
861 if (hw_desc_ptr != expected_ptr)
862 txq_enable(txq);
863
864out:
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200865 __netif_tx_unlock(nq);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200866
867 mp->work_tx_end &= ~(1 << txq->index);
868}
869
870static int txq_reclaim(struct tx_queue *txq, int budget, int force)
871{
872 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200873 struct netdev_queue *nq = netdev_get_tx_queue(mp->dev, txq->index);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200874 int reclaimed;
875
Russell King3aefe2b2013-05-16 06:31:42 +0000876 __netif_tx_lock_bh(nq);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200877
878 reclaimed = 0;
879 while (reclaimed < budget && txq->tx_desc_count > 0) {
880 int tx_index;
881 struct tx_desc *desc;
882 u32 cmd_sts;
883 struct sk_buff *skb;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200884
885 tx_index = txq->tx_used_desc;
886 desc = &txq->tx_desc_area[tx_index];
887 cmd_sts = desc->cmd_sts;
888
889 if (cmd_sts & BUFFER_OWNED_BY_DMA) {
890 if (!force)
891 break;
892 desc->cmd_sts = cmd_sts & ~BUFFER_OWNED_BY_DMA;
893 }
894
895 txq->tx_used_desc = tx_index + 1;
896 if (txq->tx_used_desc == txq->tx_ring_size)
897 txq->tx_used_desc = 0;
898
899 reclaimed++;
900 txq->tx_desc_count--;
901
Lennert Buytenhek99ab08e2008-08-28 05:53:18 +0200902 skb = NULL;
903 if (cmd_sts & TX_LAST_DESC)
904 skb = __skb_dequeue(&txq->tx_skb);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200905
906 if (cmd_sts & ERROR_SUMMARY) {
Joe Perches7542db82011-03-02 17:50:35 +0000907 netdev_info(mp->dev, "tx error\n");
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200908 mp->dev->stats.tx_errors++;
909 }
910
Lennert Buytenheka4189502008-09-13 04:16:15 +0200911 if (cmd_sts & TX_FIRST_DESC) {
Gabriel Pauberteb0519b2009-05-17 21:16:47 -0700912 dma_unmap_single(mp->dev->dev.parent, desc->buf_ptr,
Lennert Buytenheka4189502008-09-13 04:16:15 +0200913 desc->byte_cnt, DMA_TO_DEVICE);
914 } else {
Gabriel Pauberteb0519b2009-05-17 21:16:47 -0700915 dma_unmap_page(mp->dev->dev.parent, desc->buf_ptr,
Lennert Buytenheka4189502008-09-13 04:16:15 +0200916 desc->byte_cnt, DMA_TO_DEVICE);
917 }
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200918
Eric Dumazetacb600d2012-10-05 06:23:55 +0000919 dev_kfree_skb(skb);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200920 }
921
Russell King3aefe2b2013-05-16 06:31:42 +0000922 __netif_tx_unlock_bh(nq);
Lennert Buytenhek8fd89212008-08-28 08:26:28 +0200923
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200924 if (reclaimed < budget)
925 mp->work_tx &= ~(1 << txq->index);
926
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +0200927 return reclaimed;
928}
929
930
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200931/* tx rate control **********************************************************/
932/*
933 * Set total maximum TX rate (shared by all TX queues for this port)
934 * to 'rate' bits per second, with a maximum burst of 'burst' bytes.
935 */
936static void tx_set_rate(struct mv643xx_eth_private *mp, int rate, int burst)
937{
938 int token_rate;
939 int mtu;
940 int bucket_size;
941
Andrew Lunn452503e2011-12-24 01:24:24 +0100942 token_rate = ((rate / 1000) * 64) / (mp->t_clk / 1000);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200943 if (token_rate > 1023)
944 token_rate = 1023;
945
946 mtu = (mp->dev->mtu + 255) >> 8;
947 if (mtu > 63)
948 mtu = 63;
949
950 bucket_size = (burst + 255) >> 8;
951 if (bucket_size > 65535)
952 bucket_size = 65535;
953
Lennert Buytenhek457b1d52008-09-04 12:22:34 +0200954 switch (mp->shared->tx_bw_control) {
955 case TX_BW_CONTROL_OLD_LAYOUT:
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800956 wrlp(mp, TX_BW_RATE, token_rate);
957 wrlp(mp, TX_BW_MTU, mtu);
958 wrlp(mp, TX_BW_BURST, bucket_size);
Lennert Buytenhek457b1d52008-09-04 12:22:34 +0200959 break;
960 case TX_BW_CONTROL_NEW_LAYOUT:
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800961 wrlp(mp, TX_BW_RATE_MOVED, token_rate);
962 wrlp(mp, TX_BW_MTU_MOVED, mtu);
963 wrlp(mp, TX_BW_BURST_MOVED, bucket_size);
Lennert Buytenhek457b1d52008-09-04 12:22:34 +0200964 break;
Lennert Buytenhek1e881592008-06-02 01:57:36 +0200965 }
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200966}
967
968static void txq_set_rate(struct tx_queue *txq, int rate, int burst)
969{
970 struct mv643xx_eth_private *mp = txq_to_mp(txq);
971 int token_rate;
972 int bucket_size;
973
Andrew Lunn452503e2011-12-24 01:24:24 +0100974 token_rate = ((rate / 1000) * 64) / (mp->t_clk / 1000);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200975 if (token_rate > 1023)
976 token_rate = 1023;
977
978 bucket_size = (burst + 255) >> 8;
979 if (bucket_size > 65535)
980 bucket_size = 65535;
981
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800982 wrlp(mp, TXQ_BW_TOKENS(txq->index), token_rate << 14);
983 wrlp(mp, TXQ_BW_CONF(txq->index), (bucket_size << 10) | token_rate);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +0200984}
985
986static void txq_set_fixed_prio_mode(struct tx_queue *txq)
987{
988 struct mv643xx_eth_private *mp = txq_to_mp(txq);
989 int off;
990 u32 val;
991
992 /*
993 * Turn on fixed priority mode.
994 */
Lennert Buytenhek457b1d52008-09-04 12:22:34 +0200995 off = 0;
996 switch (mp->shared->tx_bw_control) {
997 case TX_BW_CONTROL_OLD_LAYOUT:
Lennert Buytenhek37a60842008-11-20 03:57:36 -0800998 off = TXQ_FIX_PRIO_CONF;
Lennert Buytenhek457b1d52008-09-04 12:22:34 +0200999 break;
1000 case TX_BW_CONTROL_NEW_LAYOUT:
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001001 off = TXQ_FIX_PRIO_CONF_MOVED;
Lennert Buytenhek457b1d52008-09-04 12:22:34 +02001002 break;
1003 }
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001004
Lennert Buytenhek457b1d52008-09-04 12:22:34 +02001005 if (off) {
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001006 val = rdlp(mp, off);
Lennert Buytenhek457b1d52008-09-04 12:22:34 +02001007 val |= 1 << txq->index;
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001008 wrlp(mp, off, val);
Lennert Buytenhek457b1d52008-09-04 12:22:34 +02001009 }
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001010}
1011
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02001012
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001013/* mii management interface *************************************************/
Phil Sutter260055b2013-03-06 07:49:02 +00001014static void mv643xx_adjust_pscr(struct mv643xx_eth_private *mp)
1015{
1016 u32 pscr = rdlp(mp, PORT_SERIAL_CONTROL);
1017 u32 autoneg_disable = FORCE_LINK_PASS |
1018 DISABLE_AUTO_NEG_SPEED_GMII |
1019 DISABLE_AUTO_NEG_FOR_FLOW_CTRL |
1020 DISABLE_AUTO_NEG_FOR_DUPLEX;
1021
1022 if (mp->phy->autoneg == AUTONEG_ENABLE) {
1023 /* enable auto negotiation */
1024 pscr &= ~autoneg_disable;
1025 goto out_write;
1026 }
1027
1028 pscr |= autoneg_disable;
1029
1030 if (mp->phy->speed == SPEED_1000) {
1031 /* force gigabit, half duplex not supported */
1032 pscr |= SET_GMII_SPEED_TO_1000;
1033 pscr |= SET_FULL_DUPLEX_MODE;
1034 goto out_write;
1035 }
1036
1037 pscr &= ~SET_GMII_SPEED_TO_1000;
1038
1039 if (mp->phy->speed == SPEED_100)
1040 pscr |= SET_MII_SPEED_TO_100;
1041 else
1042 pscr &= ~SET_MII_SPEED_TO_100;
1043
1044 if (mp->phy->duplex == DUPLEX_FULL)
1045 pscr |= SET_FULL_DUPLEX_MODE;
1046 else
1047 pscr &= ~SET_FULL_DUPLEX_MODE;
1048
1049out_write:
1050 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
1051}
1052
Lennert Buytenhek8fd89212008-08-28 08:26:28 +02001053/* statistics ***************************************************************/
1054static struct net_device_stats *mv643xx_eth_get_stats(struct net_device *dev)
1055{
1056 struct mv643xx_eth_private *mp = netdev_priv(dev);
1057 struct net_device_stats *stats = &dev->stats;
1058 unsigned long tx_packets = 0;
1059 unsigned long tx_bytes = 0;
1060 unsigned long tx_dropped = 0;
1061 int i;
1062
1063 for (i = 0; i < mp->txq_count; i++) {
1064 struct tx_queue *txq = mp->txq + i;
1065
1066 tx_packets += txq->tx_packets;
1067 tx_bytes += txq->tx_bytes;
1068 tx_dropped += txq->tx_dropped;
1069 }
1070
1071 stats->tx_packets = tx_packets;
1072 stats->tx_bytes = tx_bytes;
1073 stats->tx_dropped = tx_dropped;
1074
1075 return stats;
1076}
1077
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001078static inline u32 mib_read(struct mv643xx_eth_private *mp, int offset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001079{
Lennert Buytenhek3cb46672008-06-01 01:03:23 +02001080 return rdl(mp, MIB_COUNTERS(mp->port_num) + offset);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001081}
1082
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001083static void mib_counters_clear(struct mv643xx_eth_private *mp)
1084{
1085 int i;
1086
1087 for (i = 0; i < 0x80; i += 4)
1088 mib_read(mp, i);
Paulius Zaleckas302476c2012-01-23 01:16:35 +00001089
1090 /* Clear non MIB hw counters also */
1091 rdlp(mp, RX_DISCARD_FRAME_CNT);
1092 rdlp(mp, RX_OVERRUN_FRAME_CNT);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001093}
1094
1095static void mib_counters_update(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001096{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001097 struct mib_counters *p = &mp->mib_counters;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001098
Sebastian Siewior57e8f262009-02-16 11:28:15 +00001099 spin_lock_bh(&mp->mib_counters_lock);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001100 p->good_octets_received += mib_read(mp, 0x00);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001101 p->bad_octets_received += mib_read(mp, 0x08);
1102 p->internal_mac_transmit_err += mib_read(mp, 0x0c);
1103 p->good_frames_received += mib_read(mp, 0x10);
1104 p->bad_frames_received += mib_read(mp, 0x14);
1105 p->broadcast_frames_received += mib_read(mp, 0x18);
1106 p->multicast_frames_received += mib_read(mp, 0x1c);
1107 p->frames_64_octets += mib_read(mp, 0x20);
1108 p->frames_65_to_127_octets += mib_read(mp, 0x24);
1109 p->frames_128_to_255_octets += mib_read(mp, 0x28);
1110 p->frames_256_to_511_octets += mib_read(mp, 0x2c);
1111 p->frames_512_to_1023_octets += mib_read(mp, 0x30);
1112 p->frames_1024_to_max_octets += mib_read(mp, 0x34);
1113 p->good_octets_sent += mib_read(mp, 0x38);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001114 p->good_frames_sent += mib_read(mp, 0x40);
1115 p->excessive_collision += mib_read(mp, 0x44);
1116 p->multicast_frames_sent += mib_read(mp, 0x48);
1117 p->broadcast_frames_sent += mib_read(mp, 0x4c);
1118 p->unrec_mac_control_received += mib_read(mp, 0x50);
1119 p->fc_sent += mib_read(mp, 0x54);
1120 p->good_fc_received += mib_read(mp, 0x58);
1121 p->bad_fc_received += mib_read(mp, 0x5c);
1122 p->undersize_received += mib_read(mp, 0x60);
1123 p->fragments_received += mib_read(mp, 0x64);
1124 p->oversize_received += mib_read(mp, 0x68);
1125 p->jabber_received += mib_read(mp, 0x6c);
1126 p->mac_receive_error += mib_read(mp, 0x70);
1127 p->bad_crc_event += mib_read(mp, 0x74);
1128 p->collision += mib_read(mp, 0x78);
1129 p->late_collision += mib_read(mp, 0x7c);
Paulius Zaleckas302476c2012-01-23 01:16:35 +00001130 /* Non MIB hardware counters */
1131 p->rx_discard += rdlp(mp, RX_DISCARD_FRAME_CNT);
1132 p->rx_overrun += rdlp(mp, RX_OVERRUN_FRAME_CNT);
Sebastian Siewior57e8f262009-02-16 11:28:15 +00001133 spin_unlock_bh(&mp->mib_counters_lock);
Lennert Buytenhek4ff34952008-09-19 05:04:57 +02001134
1135 mod_timer(&mp->mib_counters_timer, jiffies + 30 * HZ);
1136}
1137
1138static void mib_counters_timer_wrapper(unsigned long _mp)
1139{
1140 struct mv643xx_eth_private *mp = (void *)_mp;
1141
1142 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001143}
1144
1145
Lennert Buytenhek3e508032009-02-12 14:07:09 +00001146/* interrupt coalescing *****************************************************/
1147/*
1148 * Hardware coalescing parameters are set in units of 64 t_clk
1149 * cycles. I.e.:
1150 *
1151 * coal_delay_in_usec = 64000000 * register_value / t_clk_rate
1152 *
1153 * register_value = coal_delay_in_usec * t_clk_rate / 64000000
1154 *
1155 * In the ->set*() methods, we round the computed register value
1156 * to the nearest integer.
1157 */
1158static unsigned int get_rx_coal(struct mv643xx_eth_private *mp)
1159{
1160 u32 val = rdlp(mp, SDMA_CONFIG);
1161 u64 temp;
1162
1163 if (mp->shared->extended_rx_coal_limit)
1164 temp = ((val & 0x02000000) >> 10) | ((val & 0x003fff80) >> 7);
1165 else
1166 temp = (val & 0x003fff00) >> 8;
1167
1168 temp *= 64000000;
Andrew Lunn452503e2011-12-24 01:24:24 +01001169 do_div(temp, mp->t_clk);
Lennert Buytenhek3e508032009-02-12 14:07:09 +00001170
1171 return (unsigned int)temp;
1172}
1173
1174static void set_rx_coal(struct mv643xx_eth_private *mp, unsigned int usec)
1175{
1176 u64 temp;
1177 u32 val;
1178
Andrew Lunn452503e2011-12-24 01:24:24 +01001179 temp = (u64)usec * mp->t_clk;
Lennert Buytenhek3e508032009-02-12 14:07:09 +00001180 temp += 31999999;
1181 do_div(temp, 64000000);
1182
1183 val = rdlp(mp, SDMA_CONFIG);
1184 if (mp->shared->extended_rx_coal_limit) {
1185 if (temp > 0xffff)
1186 temp = 0xffff;
1187 val &= ~0x023fff80;
1188 val |= (temp & 0x8000) << 10;
1189 val |= (temp & 0x7fff) << 7;
1190 } else {
1191 if (temp > 0x3fff)
1192 temp = 0x3fff;
1193 val &= ~0x003fff00;
1194 val |= (temp & 0x3fff) << 8;
1195 }
1196 wrlp(mp, SDMA_CONFIG, val);
1197}
1198
1199static unsigned int get_tx_coal(struct mv643xx_eth_private *mp)
1200{
1201 u64 temp;
1202
1203 temp = (rdlp(mp, TX_FIFO_URGENT_THRESHOLD) & 0x3fff0) >> 4;
1204 temp *= 64000000;
Andrew Lunn452503e2011-12-24 01:24:24 +01001205 do_div(temp, mp->t_clk);
Lennert Buytenhek3e508032009-02-12 14:07:09 +00001206
1207 return (unsigned int)temp;
1208}
1209
1210static void set_tx_coal(struct mv643xx_eth_private *mp, unsigned int usec)
1211{
1212 u64 temp;
1213
Andrew Lunn452503e2011-12-24 01:24:24 +01001214 temp = (u64)usec * mp->t_clk;
Lennert Buytenhek3e508032009-02-12 14:07:09 +00001215 temp += 31999999;
1216 do_div(temp, 64000000);
1217
1218 if (temp > 0x3fff)
1219 temp = 0x3fff;
1220
1221 wrlp(mp, TX_FIFO_URGENT_THRESHOLD, temp << 4);
1222}
1223
1224
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001225/* ethtool ******************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02001226struct mv643xx_eth_stats {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001227 char stat_string[ETH_GSTRING_LEN];
1228 int sizeof_stat;
Lennert Buytenhek16820052008-06-01 11:40:29 +02001229 int netdev_off;
1230 int mp_off;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001231};
1232
Lennert Buytenhek16820052008-06-01 11:40:29 +02001233#define SSTAT(m) \
1234 { #m, FIELD_SIZEOF(struct net_device_stats, m), \
1235 offsetof(struct net_device, stats.m), -1 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001236
Lennert Buytenhek16820052008-06-01 11:40:29 +02001237#define MIBSTAT(m) \
1238 { #m, FIELD_SIZEOF(struct mib_counters, m), \
1239 -1, offsetof(struct mv643xx_eth_private, mib_counters.m) }
1240
1241static const struct mv643xx_eth_stats mv643xx_eth_stats[] = {
1242 SSTAT(rx_packets),
1243 SSTAT(tx_packets),
1244 SSTAT(rx_bytes),
1245 SSTAT(tx_bytes),
1246 SSTAT(rx_errors),
1247 SSTAT(tx_errors),
1248 SSTAT(rx_dropped),
1249 SSTAT(tx_dropped),
1250 MIBSTAT(good_octets_received),
1251 MIBSTAT(bad_octets_received),
1252 MIBSTAT(internal_mac_transmit_err),
1253 MIBSTAT(good_frames_received),
1254 MIBSTAT(bad_frames_received),
1255 MIBSTAT(broadcast_frames_received),
1256 MIBSTAT(multicast_frames_received),
1257 MIBSTAT(frames_64_octets),
1258 MIBSTAT(frames_65_to_127_octets),
1259 MIBSTAT(frames_128_to_255_octets),
1260 MIBSTAT(frames_256_to_511_octets),
1261 MIBSTAT(frames_512_to_1023_octets),
1262 MIBSTAT(frames_1024_to_max_octets),
1263 MIBSTAT(good_octets_sent),
1264 MIBSTAT(good_frames_sent),
1265 MIBSTAT(excessive_collision),
1266 MIBSTAT(multicast_frames_sent),
1267 MIBSTAT(broadcast_frames_sent),
1268 MIBSTAT(unrec_mac_control_received),
1269 MIBSTAT(fc_sent),
1270 MIBSTAT(good_fc_received),
1271 MIBSTAT(bad_fc_received),
1272 MIBSTAT(undersize_received),
1273 MIBSTAT(fragments_received),
1274 MIBSTAT(oversize_received),
1275 MIBSTAT(jabber_received),
1276 MIBSTAT(mac_receive_error),
1277 MIBSTAT(bad_crc_event),
1278 MIBSTAT(collision),
1279 MIBSTAT(late_collision),
Paulius Zaleckas302476c2012-01-23 01:16:35 +00001280 MIBSTAT(rx_discard),
1281 MIBSTAT(rx_overrun),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001282};
1283
Lennert Buytenhek10a99482008-11-20 03:57:16 -08001284static int
Lennert Buytenhek6bdf5762009-02-12 14:06:46 +00001285mv643xx_eth_get_settings_phy(struct mv643xx_eth_private *mp,
1286 struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001287{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001288 int err;
1289
Lennert Buytenheked944932008-08-26 13:34:19 +02001290 err = phy_read_status(mp->phy);
1291 if (err == 0)
1292 err = phy_ethtool_gset(mp->phy, cmd);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001293
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001294 /*
1295 * The MAC does not support 1000baseT_Half.
1296 */
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001297 cmd->supported &= ~SUPPORTED_1000baseT_Half;
1298 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1299
1300 return err;
1301}
1302
Lennert Buytenhek10a99482008-11-20 03:57:16 -08001303static int
Lennert Buytenhek6bdf5762009-02-12 14:06:46 +00001304mv643xx_eth_get_settings_phyless(struct mv643xx_eth_private *mp,
Lennert Buytenhek10a99482008-11-20 03:57:16 -08001305 struct ethtool_cmd *cmd)
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001306{
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001307 u32 port_status;
1308
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001309 port_status = rdlp(mp, PORT_STATUS);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001310
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001311 cmd->supported = SUPPORTED_MII;
1312 cmd->advertising = ADVERTISED_MII;
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001313 switch (port_status & PORT_SPEED_MASK) {
1314 case PORT_SPEED_10:
David Decotigny70739492011-04-27 18:32:40 +00001315 ethtool_cmd_speed_set(cmd, SPEED_10);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001316 break;
1317 case PORT_SPEED_100:
David Decotigny70739492011-04-27 18:32:40 +00001318 ethtool_cmd_speed_set(cmd, SPEED_100);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001319 break;
1320 case PORT_SPEED_1000:
David Decotigny70739492011-04-27 18:32:40 +00001321 ethtool_cmd_speed_set(cmd, SPEED_1000);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02001322 break;
1323 default:
1324 cmd->speed = -1;
1325 break;
1326 }
1327 cmd->duplex = (port_status & FULL_DUPLEX) ? DUPLEX_FULL : DUPLEX_HALF;
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001328 cmd->port = PORT_MII;
1329 cmd->phy_address = 0;
1330 cmd->transceiver = XCVR_INTERNAL;
1331 cmd->autoneg = AUTONEG_DISABLE;
1332 cmd->maxtxpkt = 1;
1333 cmd->maxrxpkt = 1;
1334
1335 return 0;
1336}
1337
Michael Stapelberg3871c382013-03-11 13:56:45 +00001338static void
1339mv643xx_eth_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1340{
1341 struct mv643xx_eth_private *mp = netdev_priv(dev);
1342 wol->supported = 0;
1343 wol->wolopts = 0;
1344 if (mp->phy)
1345 phy_ethtool_get_wol(mp->phy, wol);
1346}
1347
1348static int
1349mv643xx_eth_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
1350{
1351 struct mv643xx_eth_private *mp = netdev_priv(dev);
1352 int err;
1353
1354 if (mp->phy == NULL)
1355 return -EOPNOTSUPP;
1356
1357 err = phy_ethtool_set_wol(mp->phy, wol);
1358 /* Given that mv643xx_eth works without the marvell-specific PHY driver,
1359 * this debugging hint is useful to have.
1360 */
1361 if (err == -EOPNOTSUPP)
1362 netdev_info(dev, "The PHY does not support set_wol, was CONFIG_MARVELL_PHY enabled?\n");
1363 return err;
1364}
1365
Lennert Buytenhek10a99482008-11-20 03:57:16 -08001366static int
Lennert Buytenhek6bdf5762009-02-12 14:06:46 +00001367mv643xx_eth_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1368{
1369 struct mv643xx_eth_private *mp = netdev_priv(dev);
1370
1371 if (mp->phy != NULL)
1372 return mv643xx_eth_get_settings_phy(mp, cmd);
1373 else
1374 return mv643xx_eth_get_settings_phyless(mp, cmd);
1375}
1376
1377static int
Lennert Buytenhek10a99482008-11-20 03:57:16 -08001378mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001379{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001380 struct mv643xx_eth_private *mp = netdev_priv(dev);
Phil Sutter260055b2013-03-06 07:49:02 +00001381 int ret;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001382
Lennert Buytenhek6bdf5762009-02-12 14:06:46 +00001383 if (mp->phy == NULL)
1384 return -EINVAL;
1385
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001386 /*
1387 * The MAC does not support 1000baseT_Half.
1388 */
1389 cmd->advertising &= ~ADVERTISED_1000baseT_Half;
1390
Phil Sutter260055b2013-03-06 07:49:02 +00001391 ret = phy_ethtool_sset(mp->phy, cmd);
1392 if (!ret)
1393 mv643xx_adjust_pscr(mp);
1394 return ret;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001395}
1396
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001397static void mv643xx_eth_get_drvinfo(struct net_device *dev,
1398 struct ethtool_drvinfo *drvinfo)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001399{
Axel Lin6f39da22011-11-24 00:41:55 -05001400 strlcpy(drvinfo->driver, mv643xx_eth_driver_name,
1401 sizeof(drvinfo->driver));
Rick Jones68aad782011-11-07 13:29:27 +00001402 strlcpy(drvinfo->version, mv643xx_eth_driver_version,
Axel Lin6f39da22011-11-24 00:41:55 -05001403 sizeof(drvinfo->version));
1404 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
1405 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
Lennert Buytenhek16820052008-06-01 11:40:29 +02001406 drvinfo->n_stats = ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001407}
1408
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001409static int mv643xx_eth_nway_reset(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001410{
Lennert Buytenheke5371492008-06-01 02:18:13 +02001411 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001412
Lennert Buytenhek6bdf5762009-02-12 14:06:46 +00001413 if (mp->phy == NULL)
1414 return -EINVAL;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001415
Lennert Buytenhek6bdf5762009-02-12 14:06:46 +00001416 return genphy_restart_aneg(mp->phy);
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02001417}
1418
Lennert Buytenhek3e508032009-02-12 14:07:09 +00001419static int
1420mv643xx_eth_get_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
1421{
1422 struct mv643xx_eth_private *mp = netdev_priv(dev);
1423
1424 ec->rx_coalesce_usecs = get_rx_coal(mp);
1425 ec->tx_coalesce_usecs = get_tx_coal(mp);
1426
1427 return 0;
1428}
1429
1430static int
1431mv643xx_eth_set_coalesce(struct net_device *dev, struct ethtool_coalesce *ec)
1432{
1433 struct mv643xx_eth_private *mp = netdev_priv(dev);
1434
1435 set_rx_coal(mp, ec->rx_coalesce_usecs);
1436 set_tx_coal(mp, ec->tx_coalesce_usecs);
1437
1438 return 0;
1439}
1440
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00001441static void
1442mv643xx_eth_get_ringparam(struct net_device *dev, struct ethtool_ringparam *er)
1443{
1444 struct mv643xx_eth_private *mp = netdev_priv(dev);
1445
1446 er->rx_max_pending = 4096;
1447 er->tx_max_pending = 4096;
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00001448
1449 er->rx_pending = mp->rx_ring_size;
1450 er->tx_pending = mp->tx_ring_size;
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00001451}
1452
1453static int
1454mv643xx_eth_set_ringparam(struct net_device *dev, struct ethtool_ringparam *er)
1455{
1456 struct mv643xx_eth_private *mp = netdev_priv(dev);
1457
1458 if (er->rx_mini_pending || er->rx_jumbo_pending)
1459 return -EINVAL;
1460
1461 mp->rx_ring_size = er->rx_pending < 4096 ? er->rx_pending : 4096;
1462 mp->tx_ring_size = er->tx_pending < 4096 ? er->tx_pending : 4096;
1463
1464 if (netif_running(dev)) {
1465 mv643xx_eth_stop(dev);
1466 if (mv643xx_eth_open(dev)) {
Joe Perches7542db82011-03-02 17:50:35 +00001467 netdev_err(dev,
1468 "fatal error on re-opening device after ring param change\n");
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00001469 return -ENOMEM;
1470 }
1471 }
1472
1473 return 0;
1474}
1475
Lennert Buytenhekd888b372009-02-12 14:07:56 +00001476
1477static int
Michał Mirosławc8f44af2011-11-15 15:29:55 +00001478mv643xx_eth_set_features(struct net_device *dev, netdev_features_t features)
Lennert Buytenhekd888b372009-02-12 14:07:56 +00001479{
1480 struct mv643xx_eth_private *mp = netdev_priv(dev);
Michał Mirosław3ad9b352011-11-16 14:05:33 +00001481 bool rx_csum = features & NETIF_F_RXCSUM;
Lennert Buytenhekd888b372009-02-12 14:07:56 +00001482
1483 wrlp(mp, PORT_CONFIG, rx_csum ? 0x02000000 : 0x00000000);
1484
1485 return 0;
1486}
1487
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001488static void mv643xx_eth_get_strings(struct net_device *dev,
1489 uint32_t stringset, uint8_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001490{
1491 int i;
1492
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001493 if (stringset == ETH_SS_STATS) {
1494 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001495 memcpy(data + i * ETH_GSTRING_LEN,
Lennert Buytenhek16820052008-06-01 11:40:29 +02001496 mv643xx_eth_stats[i].stat_string,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001497 ETH_GSTRING_LEN);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001498 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001499 }
1500}
1501
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001502static void mv643xx_eth_get_ethtool_stats(struct net_device *dev,
1503 struct ethtool_stats *stats,
1504 uint64_t *data)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001505{
Lennert Buytenhekb9873842008-08-24 05:59:16 +02001506 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001507 int i;
1508
Lennert Buytenhek8fd89212008-08-28 08:26:28 +02001509 mv643xx_eth_get_stats(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001510 mib_counters_update(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001511
Lennert Buytenhek16820052008-06-01 11:40:29 +02001512 for (i = 0; i < ARRAY_SIZE(mv643xx_eth_stats); i++) {
1513 const struct mv643xx_eth_stats *stat;
1514 void *p;
1515
1516 stat = mv643xx_eth_stats + i;
1517
1518 if (stat->netdev_off >= 0)
1519 p = ((void *)mp->dev) + stat->netdev_off;
1520 else
1521 p = ((void *)mp) + stat->mp_off;
1522
1523 data[i] = (stat->sizeof_stat == 8) ?
1524 *(uint64_t *)p : *(uint32_t *)p;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001525 }
1526}
1527
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001528static int mv643xx_eth_get_sset_count(struct net_device *dev, int sset)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001529{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001530 if (sset == ETH_SS_STATS)
Lennert Buytenhek16820052008-06-01 11:40:29 +02001531 return ARRAY_SIZE(mv643xx_eth_stats);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001532
1533 return -EOPNOTSUPP;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001534}
1535
Lennert Buytenheke5371492008-06-01 02:18:13 +02001536static const struct ethtool_ops mv643xx_eth_ethtool_ops = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001537 .get_settings = mv643xx_eth_get_settings,
1538 .set_settings = mv643xx_eth_set_settings,
1539 .get_drvinfo = mv643xx_eth_get_drvinfo,
1540 .nway_reset = mv643xx_eth_nway_reset,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +00001541 .get_link = ethtool_op_get_link,
Lennert Buytenhek3e508032009-02-12 14:07:09 +00001542 .get_coalesce = mv643xx_eth_get_coalesce,
1543 .set_coalesce = mv643xx_eth_set_coalesce,
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00001544 .get_ringparam = mv643xx_eth_get_ringparam,
1545 .set_ringparam = mv643xx_eth_set_ringparam,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001546 .get_strings = mv643xx_eth_get_strings,
1547 .get_ethtool_stats = mv643xx_eth_get_ethtool_stats,
Lennert Buytenheke5371492008-06-01 02:18:13 +02001548 .get_sset_count = mv643xx_eth_get_sset_count,
Richard Cochranebad0a82012-04-03 22:59:32 +00001549 .get_ts_info = ethtool_op_get_ts_info,
Michael Stapelberg3871c382013-03-11 13:56:45 +00001550 .get_wol = mv643xx_eth_get_wol,
1551 .set_wol = mv643xx_eth_set_wol,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001552};
1553
1554
1555/* address handling *********************************************************/
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001556static void uc_addr_get(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001557{
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001558 unsigned int mac_h = rdlp(mp, MAC_ADDR_HIGH);
1559 unsigned int mac_l = rdlp(mp, MAC_ADDR_LOW);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001560
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001561 addr[0] = (mac_h >> 24) & 0xff;
1562 addr[1] = (mac_h >> 16) & 0xff;
1563 addr[2] = (mac_h >> 8) & 0xff;
1564 addr[3] = mac_h & 0xff;
1565 addr[4] = (mac_l >> 8) & 0xff;
1566 addr[5] = mac_l & 0xff;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001567}
1568
Lennert Buytenhek5daffe92008-06-01 02:52:41 +02001569static void uc_addr_set(struct mv643xx_eth_private *mp, unsigned char *addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001570{
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001571 wrlp(mp, MAC_ADDR_HIGH,
1572 (addr[0] << 24) | (addr[1] << 16) | (addr[2] << 8) | addr[3]);
1573 wrlp(mp, MAC_ADDR_LOW, (addr[4] << 8) | addr[5]);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001574}
1575
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001576static u32 uc_addr_filter_mask(struct net_device *dev)
1577{
Jiri Pirkoccffad252009-05-22 23:22:17 +00001578 struct netdev_hw_addr *ha;
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001579 u32 nibbles;
1580
1581 if (dev->flags & IFF_PROMISC)
1582 return 0;
1583
1584 nibbles = 1 << (dev->dev_addr[5] & 0x0f);
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001585 netdev_for_each_uc_addr(ha, dev) {
Jiri Pirkoccffad252009-05-22 23:22:17 +00001586 if (memcmp(dev->dev_addr, ha->addr, 5))
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001587 return 0;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001588 if ((dev->dev_addr[5] ^ ha->addr[5]) & 0xf0)
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001589 return 0;
1590
Jiri Pirkoccffad252009-05-22 23:22:17 +00001591 nibbles |= 1 << (ha->addr[5] & 0x0f);
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001592 }
1593
1594 return nibbles;
1595}
1596
1597static void mv643xx_eth_program_unicast_filter(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001598{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001599 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001600 u32 port_config;
1601 u32 nibbles;
1602 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001603
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001604 uc_addr_set(mp, dev->dev_addr);
1605
Prabhanjan Sarnaik6877f542009-06-18 11:35:02 +00001606 port_config = rdlp(mp, PORT_CONFIG) & ~UNICAST_PROMISCUOUS_MODE;
1607
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001608 nibbles = uc_addr_filter_mask(dev);
1609 if (!nibbles) {
1610 port_config |= UNICAST_PROMISCUOUS_MODE;
Prabhanjan Sarnaik6877f542009-06-18 11:35:02 +00001611 nibbles = 0xffff;
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001612 }
1613
1614 for (i = 0; i < 16; i += 4) {
1615 int off = UNICAST_TABLE(mp->port_num) + i;
1616 u32 v;
1617
1618 v = 0;
1619 if (nibbles & 1)
1620 v |= 0x00000001;
1621 if (nibbles & 2)
1622 v |= 0x00000100;
1623 if (nibbles & 4)
1624 v |= 0x00010000;
1625 if (nibbles & 8)
1626 v |= 0x01000000;
1627 nibbles >>= 4;
1628
1629 wrl(mp, off, v);
1630 }
1631
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001632 wrlp(mp, PORT_CONFIG, port_config);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001633}
1634
Lennert Buytenhek69876562008-06-01 11:43:32 +02001635static int addr_crc(unsigned char *addr)
1636{
1637 int crc = 0;
1638 int i;
1639
1640 for (i = 0; i < 6; i++) {
1641 int j;
1642
1643 crc = (crc ^ addr[i]) << 8;
1644 for (j = 7; j >= 0; j--) {
1645 if (crc & (0x100 << j))
1646 crc ^= 0x107 << j;
1647 }
1648 }
1649
1650 return crc;
1651}
1652
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001653static void mv643xx_eth_program_multicast_filter(struct net_device *dev)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001654{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001655 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001656 u32 *mc_spec;
1657 u32 *mc_other;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001658 struct netdev_hw_addr *ha;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001659 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001660
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001661 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001662 int port_num;
1663 u32 accept;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001664
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001665oom:
1666 port_num = mp->port_num;
1667 accept = 0x01010101;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001668 for (i = 0; i < 0x100; i += 4) {
1669 wrl(mp, SPECIAL_MCAST_TABLE(port_num) + i, accept);
1670 wrl(mp, OTHER_MCAST_TABLE(port_num) + i, accept);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001671 }
1672 return;
1673 }
1674
Sebastian Siewior82a5bd62009-02-14 23:26:18 +00001675 mc_spec = kmalloc(0x200, GFP_ATOMIC);
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001676 if (mc_spec == NULL)
1677 goto oom;
1678 mc_other = mc_spec + (0x100 >> 2);
1679
1680 memset(mc_spec, 0, 0x100);
1681 memset(mc_other, 0, 0x100);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001682
Jiri Pirko22bedad32010-04-01 21:22:57 +00001683 netdev_for_each_mc_addr(ha, dev) {
1684 u8 *a = ha->addr;
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001685 u32 *table;
1686 int entry;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001687
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001688 if (memcmp(a, "\x01\x00\x5e\x00\x00", 5) == 0) {
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001689 table = mc_spec;
1690 entry = a[5];
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001691 } else {
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001692 table = mc_other;
1693 entry = addr_crc(a);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001694 }
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001695
Lennert Buytenhek2b448332009-01-19 17:17:18 -08001696 table[entry >> 2] |= 1 << (8 * (entry & 3));
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02001697 }
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001698
1699 for (i = 0; i < 0x100; i += 4) {
1700 wrl(mp, SPECIAL_MCAST_TABLE(mp->port_num) + i, mc_spec[i >> 2]);
1701 wrl(mp, OTHER_MCAST_TABLE(mp->port_num) + i, mc_other[i >> 2]);
1702 }
1703
1704 kfree(mc_spec);
1705}
1706
1707static void mv643xx_eth_set_rx_mode(struct net_device *dev)
1708{
1709 mv643xx_eth_program_unicast_filter(dev);
1710 mv643xx_eth_program_multicast_filter(dev);
1711}
1712
1713static int mv643xx_eth_set_mac_address(struct net_device *dev, void *addr)
1714{
1715 struct sockaddr *sa = addr;
1716
Denis Kirjanova29ec082009-12-08 20:36:00 -08001717 if (!is_valid_ether_addr(sa->sa_data))
Danny Kukawka504f9b52012-02-21 02:07:49 +00001718 return -EADDRNOTAVAIL;
Denis Kirjanova29ec082009-12-08 20:36:00 -08001719
Lennert Buytenhek66e63ff2008-11-20 03:58:27 -08001720 memcpy(dev->dev_addr, sa->sa_data, ETH_ALEN);
1721
1722 netif_addr_lock_bh(dev);
1723 mv643xx_eth_program_unicast_filter(dev);
1724 netif_addr_unlock_bh(dev);
1725
1726 return 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001727}
1728
1729
1730/* rx/tx queue initialisation ***********************************************/
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001731static int rxq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001732{
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001733 struct rx_queue *rxq = mp->rxq + index;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001734 struct rx_desc *rx_desc;
1735 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001736 int i;
1737
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001738 rxq->index = index;
1739
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00001740 rxq->rx_ring_size = mp->rx_ring_size;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001741
1742 rxq->rx_desc_count = 0;
1743 rxq->rx_curr_desc = 0;
1744 rxq->rx_used_desc = 0;
1745
1746 size = rxq->rx_ring_size * sizeof(struct rx_desc);
1747
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02001748 if (index == 0 && size <= mp->rx_desc_sram_size) {
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001749 rxq->rx_desc_area = ioremap(mp->rx_desc_sram_addr,
1750 mp->rx_desc_sram_size);
1751 rxq->rx_desc_dma = mp->rx_desc_sram_addr;
1752 } else {
Gabriel Pauberteb0519b2009-05-17 21:16:47 -07001753 rxq->rx_desc_area = dma_alloc_coherent(mp->dev->dev.parent,
1754 size, &rxq->rx_desc_dma,
1755 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001756 }
1757
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001758 if (rxq->rx_desc_area == NULL) {
Joe Perches7542db82011-03-02 17:50:35 +00001759 netdev_err(mp->dev,
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001760 "can't allocate rx ring (%d bytes)\n", size);
1761 goto out;
1762 }
1763 memset(rxq->rx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001764
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001765 rxq->rx_desc_area_size = size;
Lubomir Rintel9fa8e982013-06-18 19:32:38 +02001766 rxq->rx_skb = kcalloc(rxq->rx_ring_size, sizeof(*rxq->rx_skb),
Joe Perchesb2adaca2013-02-03 17:43:58 +00001767 GFP_KERNEL);
1768 if (rxq->rx_skb == NULL)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001769 goto out_free;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001770
Joe Perches64699332012-06-04 12:44:16 +00001771 rx_desc = rxq->rx_desc_area;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001772 for (i = 0; i < rxq->rx_ring_size; i++) {
Lennert Buytenhek9da78742008-08-23 23:45:28 +02001773 int nexti;
1774
1775 nexti = i + 1;
1776 if (nexti == rxq->rx_ring_size)
1777 nexti = 0;
1778
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001779 rx_desc[i].next_desc_ptr = rxq->rx_desc_dma +
1780 nexti * sizeof(struct rx_desc);
1781 }
1782
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001783 return 0;
1784
1785
1786out_free:
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02001787 if (index == 0 && size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001788 iounmap(rxq->rx_desc_area);
1789 else
Gabriel Pauberteb0519b2009-05-17 21:16:47 -07001790 dma_free_coherent(mp->dev->dev.parent, size,
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001791 rxq->rx_desc_area,
1792 rxq->rx_desc_dma);
1793
1794out:
1795 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001796}
1797
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001798static void rxq_deinit(struct rx_queue *rxq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001799{
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001800 struct mv643xx_eth_private *mp = rxq_to_mp(rxq);
1801 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001802
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001803 rxq_disable(rxq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001804
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001805 for (i = 0; i < rxq->rx_ring_size; i++) {
1806 if (rxq->rx_skb[i]) {
1807 dev_kfree_skb(rxq->rx_skb[i]);
1808 rxq->rx_desc_count--;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001809 }
1810 }
1811
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001812 if (rxq->rx_desc_count) {
Joe Perches7542db82011-03-02 17:50:35 +00001813 netdev_err(mp->dev, "error freeing rx ring -- %d skbs stuck\n",
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001814 rxq->rx_desc_count);
1815 }
1816
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02001817 if (rxq->index == 0 &&
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02001818 rxq->rx_desc_area_size <= mp->rx_desc_sram_size)
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001819 iounmap(rxq->rx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001820 else
Gabriel Pauberteb0519b2009-05-17 21:16:47 -07001821 dma_free_coherent(mp->dev->dev.parent, rxq->rx_desc_area_size,
Lennert Buytenhek8a578112008-06-01 18:09:35 +02001822 rxq->rx_desc_area, rxq->rx_desc_dma);
1823
1824 kfree(rxq->rx_skb);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001825}
1826
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001827static int txq_init(struct mv643xx_eth_private *mp, int index)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001828{
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001829 struct tx_queue *txq = mp->txq + index;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001830 struct tx_desc *tx_desc;
1831 int size;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001832 int i;
1833
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001834 txq->index = index;
1835
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00001836 txq->tx_ring_size = mp->tx_ring_size;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001837
1838 txq->tx_desc_count = 0;
1839 txq->tx_curr_desc = 0;
1840 txq->tx_used_desc = 0;
1841
1842 size = txq->tx_ring_size * sizeof(struct tx_desc);
1843
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02001844 if (index == 0 && size <= mp->tx_desc_sram_size) {
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001845 txq->tx_desc_area = ioremap(mp->tx_desc_sram_addr,
1846 mp->tx_desc_sram_size);
1847 txq->tx_desc_dma = mp->tx_desc_sram_addr;
1848 } else {
Gabriel Pauberteb0519b2009-05-17 21:16:47 -07001849 txq->tx_desc_area = dma_alloc_coherent(mp->dev->dev.parent,
1850 size, &txq->tx_desc_dma,
1851 GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001852 }
1853
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001854 if (txq->tx_desc_area == NULL) {
Joe Perches7542db82011-03-02 17:50:35 +00001855 netdev_err(mp->dev,
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001856 "can't allocate tx ring (%d bytes)\n", size);
Lennert Buytenhek99ab08e2008-08-28 05:53:18 +02001857 return -ENOMEM;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001858 }
1859 memset(txq->tx_desc_area, 0, size);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001860
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001861 txq->tx_desc_area_size = size;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001862
Joe Perches64699332012-06-04 12:44:16 +00001863 tx_desc = txq->tx_desc_area;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001864 for (i = 0; i < txq->tx_ring_size; i++) {
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001865 struct tx_desc *txd = tx_desc + i;
Lennert Buytenhek9da78742008-08-23 23:45:28 +02001866 int nexti;
1867
1868 nexti = i + 1;
1869 if (nexti == txq->tx_ring_size)
1870 nexti = 0;
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02001871
1872 txd->cmd_sts = 0;
1873 txd->next_desc_ptr = txq->tx_desc_dma +
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001874 nexti * sizeof(struct tx_desc);
1875 }
1876
Lennert Buytenhek99ab08e2008-08-28 05:53:18 +02001877 skb_queue_head_init(&txq->tx_skb);
1878
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001879 return 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001880}
1881
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001882static void txq_deinit(struct tx_queue *txq)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001883{
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001884 struct mv643xx_eth_private *mp = txq_to_mp(txq);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001885
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001886 txq_disable(txq);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001887 txq_reclaim(txq, txq->tx_ring_size, 1);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001888
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001889 BUG_ON(txq->tx_used_desc != txq->tx_curr_desc);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001890
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02001891 if (txq->index == 0 &&
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02001892 txq->tx_desc_area_size <= mp->tx_desc_sram_size)
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001893 iounmap(txq->tx_desc_area);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001894 else
Gabriel Pauberteb0519b2009-05-17 21:16:47 -07001895 dma_free_coherent(mp->dev->dev.parent, txq->tx_desc_area_size,
Lennert Buytenhek13d64282008-06-01 20:51:22 +02001896 txq->tx_desc_area, txq->tx_desc_dma);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02001897}
1898
1899
1900/* netdev ops and related ***************************************************/
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001901static int mv643xx_eth_collect_events(struct mv643xx_eth_private *mp)
1902{
1903 u32 int_cause;
1904 u32 int_cause_ext;
1905
Saeed Bisharae0ca8412009-05-06 03:02:01 +00001906 int_cause = rdlp(mp, INT_CAUSE) & mp->int_mask;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001907 if (int_cause == 0)
1908 return 0;
1909
1910 int_cause_ext = 0;
Saeed Bisharae0ca8412009-05-06 03:02:01 +00001911 if (int_cause & INT_EXT) {
1912 int_cause &= ~INT_EXT;
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001913 int_cause_ext = rdlp(mp, INT_CAUSE_EXT);
Saeed Bisharae0ca8412009-05-06 03:02:01 +00001914 }
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001915
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001916 if (int_cause) {
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001917 wrlp(mp, INT_CAUSE, ~int_cause);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001918 mp->work_tx_end |= ((int_cause & INT_TX_END) >> 19) &
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001919 ~(rdlp(mp, TXQ_COMMAND) & 0xff);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001920 mp->work_rx |= (int_cause & INT_RX) >> 2;
1921 }
1922
1923 int_cause_ext &= INT_EXT_LINK_PHY | INT_EXT_TX;
1924 if (int_cause_ext) {
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001925 wrlp(mp, INT_CAUSE_EXT, ~int_cause_ext);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001926 if (int_cause_ext & INT_EXT_LINK_PHY)
1927 mp->work_link = 1;
1928 mp->work_tx |= int_cause_ext & INT_EXT_TX;
1929 }
1930
1931 return 1;
1932}
1933
1934static irqreturn_t mv643xx_eth_irq(int irq, void *dev_id)
1935{
1936 struct net_device *dev = (struct net_device *)dev_id;
1937 struct mv643xx_eth_private *mp = netdev_priv(dev);
1938
1939 if (unlikely(!mv643xx_eth_collect_events(mp)))
1940 return IRQ_NONE;
1941
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001942 wrlp(mp, INT_MASK, 0);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001943 napi_schedule(&mp->napi);
1944
1945 return IRQ_HANDLED;
1946}
1947
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001948static void handle_link_event(struct mv643xx_eth_private *mp)
1949{
1950 struct net_device *dev = mp->dev;
1951 u32 port_status;
1952 int speed;
1953 int duplex;
1954 int fc;
1955
Lennert Buytenhek37a60842008-11-20 03:57:36 -08001956 port_status = rdlp(mp, PORT_STATUS);
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001957 if (!(port_status & LINK_UP)) {
1958 if (netif_carrier_ok(dev)) {
1959 int i;
1960
Joe Perches7542db82011-03-02 17:50:35 +00001961 netdev_info(dev, "link down\n");
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001962
1963 netif_carrier_off(dev);
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001964
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02001965 for (i = 0; i < mp->txq_count; i++) {
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001966 struct tx_queue *txq = mp->txq + i;
1967
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001968 txq_reclaim(txq, txq->tx_ring_size, 1);
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02001969 txq_reset_hw_ptr(txq);
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001970 }
1971 }
1972 return;
1973 }
1974
1975 switch (port_status & PORT_SPEED_MASK) {
1976 case PORT_SPEED_10:
1977 speed = 10;
1978 break;
1979 case PORT_SPEED_100:
1980 speed = 100;
1981 break;
1982 case PORT_SPEED_1000:
1983 speed = 1000;
1984 break;
1985 default:
1986 speed = -1;
1987 break;
1988 }
1989 duplex = (port_status & FULL_DUPLEX) ? 1 : 0;
1990 fc = (port_status & FLOW_CONTROL_ENABLED) ? 1 : 0;
1991
Joe Perches7542db82011-03-02 17:50:35 +00001992 netdev_info(dev, "link up, %d Mb/s, %s duplex, flow control %sabled\n",
1993 speed, duplex ? "full" : "half", fc ? "en" : "dis");
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001994
Lennert Buytenhek4fdeca32008-08-28 05:39:13 +02001995 if (!netif_carrier_ok(dev))
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001996 netif_carrier_on(dev);
Lennert Buytenhek2f7eb472008-07-24 06:22:59 +02001997}
1998
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02001999static int mv643xx_eth_poll(struct napi_struct *napi, int budget)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002000{
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002001 struct mv643xx_eth_private *mp;
2002 int work_done;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002003
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002004 mp = container_of(napi, struct mv643xx_eth_private, napi);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002005
Lennert Buytenhek1319eba2009-04-29 11:57:34 +00002006 if (unlikely(mp->oom)) {
2007 mp->oom = 0;
2008 del_timer(&mp->rx_oom);
2009 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002010
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002011 work_done = 0;
2012 while (work_done < budget) {
2013 u8 queue_mask;
2014 int queue;
2015 int work_tbd;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002016
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002017 if (mp->work_link) {
2018 mp->work_link = 0;
2019 handle_link_event(mp);
Lennert Buytenhek26ef1f12009-05-06 03:01:10 +00002020 work_done++;
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002021 continue;
Lennert Buytenhek226bb6b2008-06-02 01:47:21 +02002022 }
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002023
Lennert Buytenhek1319eba2009-04-29 11:57:34 +00002024 queue_mask = mp->work_tx | mp->work_tx_end | mp->work_rx;
2025 if (likely(!mp->oom))
2026 queue_mask |= mp->work_rx_refill;
2027
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002028 if (!queue_mask) {
2029 if (mv643xx_eth_collect_events(mp))
2030 continue;
2031 break;
2032 }
2033
2034 queue = fls(queue_mask) - 1;
2035 queue_mask = 1 << queue;
2036
2037 work_tbd = budget - work_done;
2038 if (work_tbd > 16)
2039 work_tbd = 16;
2040
2041 if (mp->work_tx_end & queue_mask) {
2042 txq_kick(mp->txq + queue);
2043 } else if (mp->work_tx & queue_mask) {
2044 work_done += txq_reclaim(mp->txq + queue, work_tbd, 0);
2045 txq_maybe_wake(mp->txq + queue);
2046 } else if (mp->work_rx & queue_mask) {
2047 work_done += rxq_process(mp->rxq + queue, work_tbd);
Lennert Buytenhek1319eba2009-04-29 11:57:34 +00002048 } else if (!mp->oom && (mp->work_rx_refill & queue_mask)) {
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002049 work_done += rxq_refill(mp->rxq + queue, work_tbd);
2050 } else {
2051 BUG();
2052 }
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002053 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002054
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002055 if (work_done < budget) {
Lennert Buytenhek1319eba2009-04-29 11:57:34 +00002056 if (mp->oom)
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002057 mod_timer(&mp->rx_oom, jiffies + (HZ / 10));
2058 napi_complete(napi);
Saeed Bisharae0ca8412009-05-06 03:02:01 +00002059 wrlp(mp, INT_MASK, mp->int_mask);
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002060 }
2061
2062 return work_done;
2063}
2064
2065static inline void oom_timer_wrapper(unsigned long data)
2066{
2067 struct mv643xx_eth_private *mp = (void *)data;
2068
2069 napi_schedule(&mp->napi);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002070}
2071
Lennert Buytenheke5371492008-06-01 02:18:13 +02002072static void phy_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002073{
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002074 int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002075
Lennert Buytenheked944932008-08-26 13:34:19 +02002076 data = phy_read(mp->phy, MII_BMCR);
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002077 if (data < 0)
2078 return;
2079
Lennert Buytenhek7f106c12008-07-15 02:28:47 +02002080 data |= BMCR_RESET;
Lennert Buytenheked944932008-08-26 13:34:19 +02002081 if (phy_write(mp->phy, MII_BMCR, data) < 0)
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002082 return;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002083
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002084 do {
Lennert Buytenheked944932008-08-26 13:34:19 +02002085 data = phy_read(mp->phy, MII_BMCR);
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002086 } while (data >= 0 && data & BMCR_RESET);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002087}
2088
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002089static void port_start(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002090{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002091 u32 pscr;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002092 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002093
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002094 /*
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002095 * Perform PHY reset, if there is a PHY.
2096 */
Lennert Buytenheked944932008-08-26 13:34:19 +02002097 if (mp->phy != NULL) {
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002098 struct ethtool_cmd cmd;
2099
2100 mv643xx_eth_get_settings(mp->dev, &cmd);
2101 phy_reset(mp);
2102 mv643xx_eth_set_settings(mp->dev, &cmd);
2103 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002104
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002105 /*
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002106 * Configure basic link parameters.
2107 */
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002108 pscr = rdlp(mp, PORT_SERIAL_CONTROL);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002109
2110 pscr |= SERIAL_PORT_ENABLE;
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002111 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002112
2113 pscr |= DO_NOT_FORCE_LINK_FAIL;
Lennert Buytenheked944932008-08-26 13:34:19 +02002114 if (mp->phy == NULL)
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002115 pscr |= FORCE_LINK_PASS;
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002116 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002117
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002118 /*
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002119 * Configure TX path and queues.
2120 */
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002121 tx_set_rate(mp, 1000000000, 16777216);
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002122 for (i = 0; i < mp->txq_count; i++) {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002123 struct tx_queue *txq = mp->txq + i;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002124
Lennert Buytenhek6b368f62008-07-11 19:38:34 +02002125 txq_reset_hw_ptr(txq);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002126 txq_set_rate(txq, 1000000000, 16777216);
2127 txq_set_fixed_prio_mode(txq);
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002128 }
2129
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002130 /*
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02002131 * Receive all unmatched unicast, TCP, UDP, BPDU and broadcast
Lennert Buytenhek170e7102008-09-19 02:58:50 +02002132 * frames to RX queue #0, and include the pseudo-header when
2133 * calculating receive checksums.
Lennert Buytenhekd9a073e2008-06-01 01:22:06 +02002134 */
David S. Millere138f962011-04-21 15:19:02 -07002135 mv643xx_eth_set_features(mp->dev, mp->dev->features);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002136
Lennert Buytenhek376489a2008-06-01 01:17:44 +02002137 /*
2138 * Treat BPDUs as normal multicasts, and disable partition mode.
2139 */
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002140 wrlp(mp, PORT_CONFIG_EXT, 0x00000000);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002141
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002142 /*
Lennert Buytenhek5a893922009-03-13 15:48:02 -07002143 * Add configured unicast addresses to address filter table.
2144 */
2145 mv643xx_eth_program_unicast_filter(mp->dev);
2146
2147 /*
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002148 * Enable the receive queues.
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002149 */
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002150 for (i = 0; i < mp->rxq_count; i++) {
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002151 struct rx_queue *rxq = mp->rxq + i;
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002152 u32 addr;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002153
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002154 addr = (u32)rxq->rx_desc_dma;
2155 addr += rxq->rx_curr_desc * sizeof(struct rx_desc);
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002156 wrlp(mp, RXQ_CURRENT_DESC_PTR(i), addr);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002157
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002158 rxq_enable(rxq);
2159 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002160}
2161
Lennert Buytenhek2bcb4b02008-10-01 02:33:57 -07002162static void mv643xx_eth_recalc_skb_size(struct mv643xx_eth_private *mp)
2163{
2164 int skb_size;
2165
2166 /*
2167 * Reserve 2+14 bytes for an ethernet header (the hardware
2168 * automatically prepends 2 bytes of dummy data to each
2169 * received packet), 16 bytes for up to four VLAN tags, and
2170 * 4 bytes for the trailing FCS -- 36 bytes total.
2171 */
2172 skb_size = mp->dev->mtu + 36;
2173
2174 /*
2175 * Make sure that the skb size is a multiple of 8 bytes, as
2176 * the lower three bits of the receive descriptor's buffer
2177 * size field are ignored by the hardware.
2178 */
2179 mp->skb_size = (skb_size + 7) & ~7;
Lennert Buytenhek7fd96ce2009-05-06 03:01:22 +00002180
2181 /*
2182 * If NET_SKB_PAD is smaller than a cache line,
2183 * netdev_alloc_skb() will cause skb->data to be misaligned
2184 * to a cache line boundary. If this is the case, include
2185 * some extra space to allow re-aligning the data area.
2186 */
2187 mp->skb_size += SKB_DMA_REALIGN;
Lennert Buytenhek2bcb4b02008-10-01 02:33:57 -07002188}
2189
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002190static int mv643xx_eth_open(struct net_device *dev)
2191{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002192 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002193 int err;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002194 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002195
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002196 wrlp(mp, INT_CAUSE, 0);
2197 wrlp(mp, INT_CAUSE_EXT, 0);
2198 rdlp(mp, INT_CAUSE_EXT);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002199
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002200 err = request_irq(dev->irq, mv643xx_eth_irq,
Lennert Buytenhek2a1867a2008-08-23 23:43:38 +02002201 IRQF_SHARED, dev->name, dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002202 if (err) {
Joe Perches7542db82011-03-02 17:50:35 +00002203 netdev_err(dev, "can't assign irq\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002204 return -EAGAIN;
2205 }
2206
Lennert Buytenhek2bcb4b02008-10-01 02:33:57 -07002207 mv643xx_eth_recalc_skb_size(mp);
2208
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002209 napi_enable(&mp->napi);
2210
Saeed Bisharae0ca8412009-05-06 03:02:01 +00002211 mp->int_mask = INT_EXT;
2212
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002213 for (i = 0; i < mp->rxq_count; i++) {
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002214 err = rxq_init(mp, i);
2215 if (err) {
2216 while (--i >= 0)
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002217 rxq_deinit(mp->rxq + i);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002218 goto out;
2219 }
2220
Lennert Buytenhek1fa38c52008-08-28 08:09:10 +02002221 rxq_refill(mp->rxq + i, INT_MAX);
Saeed Bisharae0ca8412009-05-06 03:02:01 +00002222 mp->int_mask |= INT_RX_0 << i;
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002223 }
2224
Lennert Buytenhek1319eba2009-04-29 11:57:34 +00002225 if (mp->oom) {
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002226 mp->rx_oom.expires = jiffies + (HZ / 10);
2227 add_timer(&mp->rx_oom);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002228 }
Lennert Buytenhek8a578112008-06-01 18:09:35 +02002229
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002230 for (i = 0; i < mp->txq_count; i++) {
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002231 err = txq_init(mp, i);
2232 if (err) {
2233 while (--i >= 0)
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002234 txq_deinit(mp->txq + i);
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002235 goto out_free;
2236 }
Saeed Bisharae0ca8412009-05-06 03:02:01 +00002237 mp->int_mask |= INT_TX_END_0 << i;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002238 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002239
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002240 port_start(mp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002241
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002242 wrlp(mp, INT_MASK_EXT, INT_EXT_LINK_PHY | INT_EXT_TX);
Saeed Bisharae0ca8412009-05-06 03:02:01 +00002243 wrlp(mp, INT_MASK, mp->int_mask);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002244
2245 return 0;
2246
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002247
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002248out_free:
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002249 for (i = 0; i < mp->rxq_count; i++)
2250 rxq_deinit(mp->rxq + i);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002251out:
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002252 free_irq(dev->irq, dev);
2253
2254 return err;
2255}
2256
Lennert Buytenheke5371492008-06-01 02:18:13 +02002257static void port_reset(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002258{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002259 unsigned int data;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002260 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002261
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002262 for (i = 0; i < mp->rxq_count; i++)
2263 rxq_disable(mp->rxq + i);
2264 for (i = 0; i < mp->txq_count; i++)
2265 txq_disable(mp->txq + i);
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002266
2267 while (1) {
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002268 u32 ps = rdlp(mp, PORT_STATUS);
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002269
2270 if ((ps & (TX_IN_PROGRESS | TX_FIFO_EMPTY)) == TX_FIFO_EMPTY)
2271 break;
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002272 udelay(10);
Lennert Buytenhekae9ae062008-07-15 02:15:24 +02002273 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002274
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002275 /* Reset the Enable bit in the Configuration Register */
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002276 data = rdlp(mp, PORT_SERIAL_CONTROL);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002277 data &= ~(SERIAL_PORT_ENABLE |
2278 DO_NOT_FORCE_LINK_FAIL |
2279 FORCE_LINK_PASS);
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002280 wrlp(mp, PORT_SERIAL_CONTROL, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002281}
2282
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002283static int mv643xx_eth_stop(struct net_device *dev)
2284{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002285 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002286 int i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002287
Gabriel Paubertfe65e702009-01-19 17:18:09 -08002288 wrlp(mp, INT_MASK_EXT, 0x00000000);
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002289 wrlp(mp, INT_MASK, 0x00000000);
2290 rdlp(mp, INT_MASK);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002291
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002292 napi_disable(&mp->napi);
Lennert Buytenhek78fff832008-08-24 01:03:57 +02002293
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002294 del_timer_sync(&mp->rx_oom);
2295
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002296 netif_carrier_off(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002297
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002298 free_irq(dev->irq, dev);
2299
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02002300 port_reset(mp);
Lennert Buytenhek8fd89212008-08-28 08:26:28 +02002301 mv643xx_eth_get_stats(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002302 mib_counters_update(mp);
Sebastian Siewior57e8f262009-02-16 11:28:15 +00002303 del_timer_sync(&mp->mib_counters_timer);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002304
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002305 for (i = 0; i < mp->rxq_count; i++)
2306 rxq_deinit(mp->rxq + i);
2307 for (i = 0; i < mp->txq_count; i++)
2308 txq_deinit(mp->txq + i);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002309
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002310 return 0;
2311}
2312
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002313static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002314{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002315 struct mv643xx_eth_private *mp = netdev_priv(dev);
Phil Sutter260055b2013-03-06 07:49:02 +00002316 int ret;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002317
Phil Sutter260055b2013-03-06 07:49:02 +00002318 if (mp->phy == NULL)
2319 return -ENOTSUPP;
Lennert Buytenhekbedfe322008-06-02 02:13:03 +02002320
Phil Sutter260055b2013-03-06 07:49:02 +00002321 ret = phy_mii_ioctl(mp->phy, ifr, cmd);
2322 if (!ret)
2323 mv643xx_adjust_pscr(mp);
2324 return ret;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002325}
2326
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002327static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu)
2328{
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002329 struct mv643xx_eth_private *mp = netdev_priv(dev);
2330
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002331 if (new_mtu < 64 || new_mtu > 9500)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002332 return -EINVAL;
2333
2334 dev->mtu = new_mtu;
Lennert Buytenhek2bcb4b02008-10-01 02:33:57 -07002335 mv643xx_eth_recalc_skb_size(mp);
Lennert Buytenhek89df5fd2008-06-02 00:51:05 +02002336 tx_set_rate(mp, 1000000000, 16777216);
2337
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002338 if (!netif_running(dev))
2339 return 0;
2340
2341 /*
2342 * Stop and then re-open the interface. This will allocate RX
2343 * skbs of the new MTU.
2344 * There is a possible danger that the open will not succeed,
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002345 * due to memory being full.
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002346 */
2347 mv643xx_eth_stop(dev);
2348 if (mv643xx_eth_open(dev)) {
Joe Perches7542db82011-03-02 17:50:35 +00002349 netdev_err(dev,
2350 "fatal error on re-opening device after MTU change\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002351 }
2352
2353 return 0;
2354}
2355
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002356static void tx_timeout_task(struct work_struct *ugly)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002357{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002358 struct mv643xx_eth_private *mp;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002359
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002360 mp = container_of(ugly, struct mv643xx_eth_private, tx_timeout_task);
2361 if (netif_running(mp->dev)) {
Lennert Buytenheke5ef1de2008-08-28 06:26:23 +02002362 netif_tx_stop_all_queues(mp->dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002363 port_reset(mp);
2364 port_start(mp);
Lennert Buytenheke5ef1de2008-08-28 06:26:23 +02002365 netif_tx_wake_all_queues(mp->dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002366 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002367}
2368
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002369static void mv643xx_eth_tx_timeout(struct net_device *dev)
2370{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002371 struct mv643xx_eth_private *mp = netdev_priv(dev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002372
Joe Perches7542db82011-03-02 17:50:35 +00002373 netdev_info(dev, "tx timeout\n");
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002374
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002375 schedule_work(&mp->tx_timeout_task);
2376}
2377
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002378#ifdef CONFIG_NET_POLL_CONTROLLER
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002379static void mv643xx_eth_netpoll(struct net_device *dev)
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002380{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002381 struct mv643xx_eth_private *mp = netdev_priv(dev);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002382
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002383 wrlp(mp, INT_MASK, 0x00000000);
2384 rdlp(mp, INT_MASK);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002385
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002386 mv643xx_eth_irq(dev->irq, dev);
Dale Farnsworthc2e5b352006-01-16 17:00:24 -07002387
Saeed Bisharae0ca8412009-05-06 03:02:01 +00002388 wrlp(mp, INT_MASK, mp->int_mask);
Dale Farnsworth63c9e542005-09-02 13:49:10 -07002389}
2390#endif
2391
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002392
2393/* platform glue ************************************************************/
Lennert Buytenheke5371492008-06-01 02:18:13 +02002394static void
2395mv643xx_eth_conf_mbus_windows(struct mv643xx_eth_shared_private *msp,
Andrew Lunn63a93322011-12-07 21:48:07 +01002396 const struct mbus_dram_target_info *dram)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002397{
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02002398 void __iomem *base = msp->base;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002399 u32 win_enable;
2400 u32 win_protect;
2401 int i;
2402
2403 for (i = 0; i < 6; i++) {
2404 writel(0, base + WINDOW_BASE(i));
2405 writel(0, base + WINDOW_SIZE(i));
2406 if (i < 4)
2407 writel(0, base + WINDOW_REMAP_HIGH(i));
2408 }
2409
2410 win_enable = 0x3f;
2411 win_protect = 0;
2412
2413 for (i = 0; i < dram->num_cs; i++) {
Andrew Lunn63a93322011-12-07 21:48:07 +01002414 const struct mbus_dram_window *cs = dram->cs + i;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002415
2416 writel((cs->base & 0xffff0000) |
2417 (cs->mbus_attr << 8) |
2418 dram->mbus_dram_target_id, base + WINDOW_BASE(i));
2419 writel((cs->size - 1) & 0xffff0000, base + WINDOW_SIZE(i));
2420
2421 win_enable &= ~(1 << i);
2422 win_protect |= 3 << (2 * i);
2423 }
2424
2425 writel(win_enable, base + WINDOW_BAR_ENABLE);
2426 msp->win_protect = win_protect;
2427}
2428
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002429static void infer_hw_params(struct mv643xx_eth_shared_private *msp)
2430{
2431 /*
2432 * Check whether we have a 14-bit coal limit field in bits
2433 * [21:8], or a 16-bit coal limit in bits [25,21:7] of the
2434 * SDMA config register.
2435 */
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002436 writel(0x02000000, msp->base + 0x0400 + SDMA_CONFIG);
2437 if (readl(msp->base + 0x0400 + SDMA_CONFIG) & 0x02000000)
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002438 msp->extended_rx_coal_limit = 1;
2439 else
2440 msp->extended_rx_coal_limit = 0;
Lennert Buytenhek1e881592008-06-02 01:57:36 +02002441
2442 /*
Lennert Buytenhek457b1d52008-09-04 12:22:34 +02002443 * Check whether the MAC supports TX rate control, and if
2444 * yes, whether its associated registers are in the old or
2445 * the new place.
Lennert Buytenhek1e881592008-06-02 01:57:36 +02002446 */
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002447 writel(1, msp->base + 0x0400 + TX_BW_MTU_MOVED);
2448 if (readl(msp->base + 0x0400 + TX_BW_MTU_MOVED) & 1) {
Lennert Buytenhek457b1d52008-09-04 12:22:34 +02002449 msp->tx_bw_control = TX_BW_CONTROL_NEW_LAYOUT;
2450 } else {
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002451 writel(7, msp->base + 0x0400 + TX_BW_RATE);
2452 if (readl(msp->base + 0x0400 + TX_BW_RATE) & 7)
Lennert Buytenhek457b1d52008-09-04 12:22:34 +02002453 msp->tx_bw_control = TX_BW_CONTROL_OLD_LAYOUT;
2454 else
2455 msp->tx_bw_control = TX_BW_CONTROL_ABSENT;
2456 }
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002457}
2458
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002459#if defined(CONFIG_OF)
2460static const struct of_device_id mv643xx_eth_shared_ids[] = {
2461 { .compatible = "marvell,orion-eth", },
2462 { .compatible = "marvell,kirkwood-eth", },
2463 { }
2464};
2465MODULE_DEVICE_TABLE(of, mv643xx_eth_shared_ids);
2466#endif
2467
2468#if defined(CONFIG_OF) && !defined(CONFIG_MV64X60)
2469#define mv643xx_eth_property(_np, _name, _v) \
2470 do { \
2471 u32 tmp; \
2472 if (!of_property_read_u32(_np, "marvell," _name, &tmp)) \
2473 _v = tmp; \
2474 } while (0)
2475
2476static struct platform_device *port_platdev[3];
2477
2478static int mv643xx_eth_shared_of_add_port(struct platform_device *pdev,
2479 struct device_node *pnp)
2480{
2481 struct platform_device *ppdev;
2482 struct mv643xx_eth_platform_data ppd;
2483 struct resource res;
2484 const char *mac_addr;
2485 int ret;
Jonas Gorski785bf6f2013-07-08 00:44:55 +02002486 int dev_num = 0;
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002487
2488 memset(&ppd, 0, sizeof(ppd));
2489 ppd.shared = pdev;
2490
2491 memset(&res, 0, sizeof(res));
2492 if (!of_irq_to_resource(pnp, 0, &res)) {
2493 dev_err(&pdev->dev, "missing interrupt on %s\n", pnp->name);
2494 return -EINVAL;
2495 }
2496
2497 if (of_property_read_u32(pnp, "reg", &ppd.port_number)) {
2498 dev_err(&pdev->dev, "missing reg property on %s\n", pnp->name);
2499 return -EINVAL;
2500 }
2501
2502 if (ppd.port_number >= 3) {
2503 dev_err(&pdev->dev, "invalid reg property on %s\n", pnp->name);
2504 return -EINVAL;
2505 }
2506
Jonas Gorski785bf6f2013-07-08 00:44:55 +02002507 while (dev_num < 3 && port_platdev[dev_num])
2508 dev_num++;
2509
2510 if (dev_num == 3) {
2511 dev_err(&pdev->dev, "too many ports registered\n");
2512 return -EINVAL;
2513 }
2514
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002515 mac_addr = of_get_mac_address(pnp);
2516 if (mac_addr)
2517 memcpy(ppd.mac_addr, mac_addr, 6);
2518
2519 mv643xx_eth_property(pnp, "tx-queue-size", ppd.tx_queue_size);
2520 mv643xx_eth_property(pnp, "tx-sram-addr", ppd.tx_sram_addr);
2521 mv643xx_eth_property(pnp, "tx-sram-size", ppd.tx_sram_size);
2522 mv643xx_eth_property(pnp, "rx-queue-size", ppd.rx_queue_size);
2523 mv643xx_eth_property(pnp, "rx-sram-addr", ppd.rx_sram_addr);
2524 mv643xx_eth_property(pnp, "rx-sram-size", ppd.rx_sram_size);
2525
2526 ppd.phy_node = of_parse_phandle(pnp, "phy-handle", 0);
2527 if (!ppd.phy_node) {
2528 ppd.phy_addr = MV643XX_ETH_PHY_NONE;
2529 of_property_read_u32(pnp, "speed", &ppd.speed);
2530 of_property_read_u32(pnp, "duplex", &ppd.duplex);
2531 }
2532
Jonas Gorski785bf6f2013-07-08 00:44:55 +02002533 ppdev = platform_device_alloc(MV643XX_ETH_NAME, dev_num);
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002534 if (!ppdev)
2535 return -ENOMEM;
2536 ppdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
2537
2538 ret = platform_device_add_resources(ppdev, &res, 1);
2539 if (ret)
2540 goto port_err;
2541
2542 ret = platform_device_add_data(ppdev, &ppd, sizeof(ppd));
2543 if (ret)
2544 goto port_err;
2545
2546 ret = platform_device_add(ppdev);
2547 if (ret)
2548 goto port_err;
2549
Jonas Gorski785bf6f2013-07-08 00:44:55 +02002550 port_platdev[dev_num] = ppdev;
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002551
2552 return 0;
2553
2554port_err:
2555 platform_device_put(ppdev);
2556 return ret;
2557}
2558
2559static int mv643xx_eth_shared_of_probe(struct platform_device *pdev)
2560{
2561 struct mv643xx_eth_shared_platform_data *pd;
2562 struct device_node *pnp, *np = pdev->dev.of_node;
2563 int ret;
2564
2565 /* bail out if not registered from DT */
2566 if (!np)
2567 return 0;
2568
2569 pd = devm_kzalloc(&pdev->dev, sizeof(*pd), GFP_KERNEL);
2570 if (!pd)
2571 return -ENOMEM;
2572 pdev->dev.platform_data = pd;
2573
2574 mv643xx_eth_property(np, "tx-checksum-limit", pd->tx_csum_limit);
2575
2576 for_each_available_child_of_node(np, pnp) {
2577 ret = mv643xx_eth_shared_of_add_port(pdev, pnp);
2578 if (ret)
2579 return ret;
2580 }
2581 return 0;
2582}
2583
2584static void mv643xx_eth_shared_of_remove(void)
2585{
2586 int n;
2587
2588 for (n = 0; n < 3; n++) {
2589 platform_device_del(port_platdev[n]);
2590 port_platdev[n] = NULL;
2591 }
2592}
2593#else
Arnd Bergmannff208772013-06-03 03:11:24 +00002594static inline int mv643xx_eth_shared_of_probe(struct platform_device *pdev)
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002595{
Arnd Bergmannff208772013-06-03 03:11:24 +00002596 return 0;
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002597}
2598
Arnd Bergmannff208772013-06-03 03:11:24 +00002599static inline void mv643xx_eth_shared_of_remove(void)
2600{
2601}
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002602#endif
2603
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002604static int mv643xx_eth_shared_probe(struct platform_device *pdev)
2605{
Lennert Buytenhek10a99482008-11-20 03:57:16 -08002606 static int mv643xx_eth_version_printed;
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002607 struct mv643xx_eth_shared_platform_data *pd;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002608 struct mv643xx_eth_shared_private *msp;
Andrew Lunn63a93322011-12-07 21:48:07 +01002609 const struct mbus_dram_target_info *dram;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002610 struct resource *res;
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002611 int ret;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002612
Lennert Buytenheke5371492008-06-01 02:18:13 +02002613 if (!mv643xx_eth_version_printed++)
Joe Perches7542db82011-03-02 17:50:35 +00002614 pr_notice("MV-643xx 10/100/1000 ethernet driver version %s\n",
2615 mv643xx_eth_driver_version);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002616
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002617 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2618 if (res == NULL)
Sebastian Hesselbarth727f9572013-04-10 23:29:34 +00002619 return -EINVAL;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002620
Sebastian Hesselbarth727f9572013-04-10 23:29:34 +00002621 msp = devm_kzalloc(&pdev->dev, sizeof(*msp), GFP_KERNEL);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002622 if (msp == NULL)
Sebastian Hesselbarth727f9572013-04-10 23:29:34 +00002623 return -ENOMEM;
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002624 platform_set_drvdata(pdev, msp);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002625
Sebastian Hesselbarth65a6f962013-05-29 09:32:44 +00002626 msp->base = devm_ioremap(&pdev->dev, res->start, resource_size(res));
Lennert Buytenhekcc9754b32008-06-01 02:10:27 +02002627 if (msp->base == NULL)
Sebastian Hesselbarth727f9572013-04-10 23:29:34 +00002628 return -ENOMEM;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002629
Sebastian Hesselbarth20922482013-04-10 23:29:33 +00002630 msp->clk = devm_clk_get(&pdev->dev, NULL);
2631 if (!IS_ERR(msp->clk))
2632 clk_prepare_enable(msp->clk);
2633
Lennert Buytenheked944932008-08-26 13:34:19 +02002634 /*
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002635 * (Re-)program MBUS remapping windows if we are asked to.
2636 */
Andrew Lunn63a93322011-12-07 21:48:07 +01002637 dram = mv_mbus_dram_info();
2638 if (dram)
2639 mv643xx_eth_conf_mbus_windows(msp, dram);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002640
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002641 ret = mv643xx_eth_shared_of_probe(pdev);
2642 if (ret)
2643 return ret;
2644 pd = pdev->dev.platform_data;
2645
Dan Carpenter50a749c2010-07-23 01:05:05 +00002646 msp->tx_csum_limit = (pd != NULL && pd->tx_csum_limit) ?
2647 pd->tx_csum_limit : 9 * 1024;
Lennert Buytenhek773fc3e2008-06-02 01:54:16 +02002648 infer_hw_params(msp);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002649
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002650 return 0;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002651}
2652
2653static int mv643xx_eth_shared_remove(struct platform_device *pdev)
2654{
Lennert Buytenheke5371492008-06-01 02:18:13 +02002655 struct mv643xx_eth_shared_private *msp = platform_get_drvdata(pdev);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002656
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002657 mv643xx_eth_shared_of_remove();
Sebastian Hesselbarth20922482013-04-10 23:29:33 +00002658 if (!IS_ERR(msp->clk))
2659 clk_disable_unprepare(msp->clk);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002660 return 0;
2661}
2662
2663static struct platform_driver mv643xx_eth_shared_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002664 .probe = mv643xx_eth_shared_probe,
2665 .remove = mv643xx_eth_shared_remove,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002666 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002667 .name = MV643XX_ETH_SHARED_NAME,
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002668 .owner = THIS_MODULE,
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002669 .of_match_table = of_match_ptr(mv643xx_eth_shared_ids),
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002670 },
2671};
2672
Lennert Buytenheke5371492008-06-01 02:18:13 +02002673static void phy_addr_set(struct mv643xx_eth_private *mp, int phy_addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002674{
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002675 int addr_shift = 5 * mp->port_num;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002676 u32 data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002677
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002678 data = rdl(mp, PHY_ADDR);
2679 data &= ~(0x1f << addr_shift);
2680 data |= (phy_addr & 0x1f) << addr_shift;
2681 wrl(mp, PHY_ADDR, data);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002682}
2683
Lennert Buytenheke5371492008-06-01 02:18:13 +02002684static int phy_addr_get(struct mv643xx_eth_private *mp)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002685{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002686 unsigned int data;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002687
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002688 data = rdl(mp, PHY_ADDR);
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002689
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002690 return (data >> (5 * mp->port_num)) & 0x1f;
2691}
2692
2693static void set_params(struct mv643xx_eth_private *mp,
2694 struct mv643xx_eth_platform_data *pd)
2695{
2696 struct net_device *dev = mp->dev;
2697
2698 if (is_valid_ether_addr(pd->mac_addr))
2699 memcpy(dev->dev_addr, pd->mac_addr, 6);
2700 else
2701 uc_addr_get(mp, dev->dev_addr);
2702
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00002703 mp->rx_ring_size = DEFAULT_RX_QUEUE_SIZE;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002704 if (pd->rx_queue_size)
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00002705 mp->rx_ring_size = pd->rx_queue_size;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002706 mp->rx_desc_sram_addr = pd->rx_sram_addr;
2707 mp->rx_desc_sram_size = pd->rx_sram_size;
2708
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002709 mp->rxq_count = pd->rx_queue_count ? : 1;
Lennert Buytenhek64da80a2008-06-02 01:01:26 +02002710
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00002711 mp->tx_ring_size = DEFAULT_TX_QUEUE_SIZE;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002712 if (pd->tx_queue_size)
Lennert Buytenheke7d2f4d2009-02-12 14:07:37 +00002713 mp->tx_ring_size = pd->tx_queue_size;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002714 mp->tx_desc_sram_addr = pd->tx_sram_addr;
2715 mp->tx_desc_sram_size = pd->tx_sram_size;
Lennert Buytenhek3d6b35b2008-06-02 01:28:22 +02002716
Lennert Buytenhekf7981c12008-08-26 10:23:22 +02002717 mp->txq_count = pd->tx_queue_count ? : 1;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002718}
2719
Florian Fainellic3a07132013-03-22 03:39:28 +00002720static void mv643xx_eth_adjust_link(struct net_device *dev)
2721{
2722 struct mv643xx_eth_private *mp = netdev_priv(dev);
2723
2724 mv643xx_adjust_pscr(mp);
2725}
2726
Lennert Buytenheked944932008-08-26 13:34:19 +02002727static struct phy_device *phy_scan(struct mv643xx_eth_private *mp,
2728 int phy_addr)
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002729{
Lennert Buytenheked944932008-08-26 13:34:19 +02002730 struct phy_device *phydev;
2731 int start;
2732 int num;
2733 int i;
Florian Fainellic3a07132013-03-22 03:39:28 +00002734 char phy_id[MII_BUS_ID_SIZE + 3];
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002735
Lennert Buytenheked944932008-08-26 13:34:19 +02002736 if (phy_addr == MV643XX_ETH_PHY_ADDR_DEFAULT) {
2737 start = phy_addr_get(mp) & 0x1f;
2738 num = 32;
2739 } else {
2740 start = phy_addr & 0x1f;
2741 num = 1;
2742 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002743
Florian Fainellic3a07132013-03-22 03:39:28 +00002744 /* Attempt to connect to the PHY using orion-mdio */
Simon Baatz976c90b2013-03-24 10:34:00 +00002745 phydev = ERR_PTR(-ENODEV);
Lennert Buytenheked944932008-08-26 13:34:19 +02002746 for (i = 0; i < num; i++) {
2747 int addr = (start + i) & 0x1f;
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002748
Florian Fainellic3a07132013-03-22 03:39:28 +00002749 snprintf(phy_id, sizeof(phy_id), PHY_ID_FMT,
2750 "orion-mdio-mii", addr);
Lennert Buytenhek45c5d3b2008-08-26 04:42:59 +02002751
Florian Fainellic3a07132013-03-22 03:39:28 +00002752 phydev = phy_connect(mp->dev, phy_id, mv643xx_eth_adjust_link,
2753 PHY_INTERFACE_MODE_GMII);
2754 if (!IS_ERR(phydev)) {
2755 phy_addr_set(mp, addr);
2756 break;
Lennert Buytenheked944932008-08-26 13:34:19 +02002757 }
2758 }
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002759
Lennert Buytenheked944932008-08-26 13:34:19 +02002760 return phydev;
Lennert Buytenhekc9df406f2008-06-01 00:48:39 +02002761}
2762
Lennert Buytenheked944932008-08-26 13:34:19 +02002763static void phy_init(struct mv643xx_eth_private *mp, int speed, int duplex)
James Chapmand0412d92006-01-27 01:15:30 -07002764{
Lennert Buytenheked944932008-08-26 13:34:19 +02002765 struct phy_device *phy = mp->phy;
James Chapmand0412d92006-01-27 01:15:30 -07002766
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002767 phy_reset(mp);
2768
Lennert Buytenheked944932008-08-26 13:34:19 +02002769 if (speed == 0) {
2770 phy->autoneg = AUTONEG_ENABLE;
2771 phy->speed = 0;
2772 phy->duplex = 0;
2773 phy->advertising = phy->supported | ADVERTISED_Autoneg;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002774 } else {
Lennert Buytenheked944932008-08-26 13:34:19 +02002775 phy->autoneg = AUTONEG_DISABLE;
2776 phy->advertising = 0;
2777 phy->speed = speed;
2778 phy->duplex = duplex;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002779 }
Lennert Buytenheked944932008-08-26 13:34:19 +02002780 phy_start_aneg(phy);
James Chapmand0412d92006-01-27 01:15:30 -07002781}
2782
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002783static void init_pscr(struct mv643xx_eth_private *mp, int speed, int duplex)
2784{
2785 u32 pscr;
2786
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002787 pscr = rdlp(mp, PORT_SERIAL_CONTROL);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002788 if (pscr & SERIAL_PORT_ENABLE) {
2789 pscr &= ~SERIAL_PORT_ENABLE;
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002790 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002791 }
2792
2793 pscr = MAX_RX_PACKET_9700BYTE | SERIAL_PORT_CONTROL_RESERVED;
Lennert Buytenheked944932008-08-26 13:34:19 +02002794 if (mp->phy == NULL) {
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002795 pscr |= DISABLE_AUTO_NEG_SPEED_GMII;
2796 if (speed == SPEED_1000)
2797 pscr |= SET_GMII_SPEED_TO_1000;
2798 else if (speed == SPEED_100)
2799 pscr |= SET_MII_SPEED_TO_100;
2800
2801 pscr |= DISABLE_AUTO_NEG_FOR_FLOW_CTRL;
2802
2803 pscr |= DISABLE_AUTO_NEG_FOR_DUPLEX;
2804 if (duplex == DUPLEX_FULL)
2805 pscr |= SET_FULL_DUPLEX_MODE;
2806 }
2807
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002808 wrlp(mp, PORT_SERIAL_CONTROL, pscr);
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002809}
2810
Lennert Buytenhekea8a8642009-02-24 15:41:40 +00002811static const struct net_device_ops mv643xx_eth_netdev_ops = {
2812 .ndo_open = mv643xx_eth_open,
2813 .ndo_stop = mv643xx_eth_stop,
2814 .ndo_start_xmit = mv643xx_eth_xmit,
2815 .ndo_set_rx_mode = mv643xx_eth_set_rx_mode,
2816 .ndo_set_mac_address = mv643xx_eth_set_mac_address,
kirjanov@gmail.com1d4bd942010-02-16 20:40:11 +00002817 .ndo_validate_addr = eth_validate_addr,
Lennert Buytenhekea8a8642009-02-24 15:41:40 +00002818 .ndo_do_ioctl = mv643xx_eth_ioctl,
2819 .ndo_change_mtu = mv643xx_eth_change_mtu,
Michał Mirosławaad59c42011-04-17 00:15:46 +00002820 .ndo_set_features = mv643xx_eth_set_features,
Lennert Buytenhekea8a8642009-02-24 15:41:40 +00002821 .ndo_tx_timeout = mv643xx_eth_tx_timeout,
2822 .ndo_get_stats = mv643xx_eth_get_stats,
2823#ifdef CONFIG_NET_POLL_CONTROLLER
2824 .ndo_poll_controller = mv643xx_eth_netpoll,
2825#endif
2826};
2827
Russell King3ae5eae2005-11-09 22:32:44 +00002828static int mv643xx_eth_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 struct mv643xx_eth_platform_data *pd;
Lennert Buytenheke5371492008-06-01 02:18:13 +02002831 struct mv643xx_eth_private *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 struct resource *res;
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002834 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002836 pd = pdev->dev.platform_data;
2837 if (pd == NULL) {
Joe Perches7542db82011-03-02 17:50:35 +00002838 dev_err(&pdev->dev, "no mv643xx_eth_platform_data\n");
Dale Farnsworth84dd6192007-03-03 06:40:28 -07002839 return -ENODEV;
2840 }
2841
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002842 if (pd->shared == NULL) {
Joe Perches7542db82011-03-02 17:50:35 +00002843 dev_err(&pdev->dev, "no mv643xx_eth_platform_data->shared\n");
Lennert Buytenhekfa3959f2008-04-24 01:27:02 +02002844 return -ENODEV;
2845 }
2846
Lennert Buytenheke5ef1de2008-08-28 06:26:23 +02002847 dev = alloc_etherdev_mq(sizeof(struct mv643xx_eth_private), 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 if (!dev)
2849 return -ENOMEM;
2850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 mp = netdev_priv(dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002852 platform_set_drvdata(pdev, mp);
2853
2854 mp->shared = platform_get_drvdata(pd->shared);
Lennert Buytenhek37a60842008-11-20 03:57:36 -08002855 mp->base = mp->shared->base + 0x0400 + (pd->port_number << 10);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002856 mp->port_num = pd->port_number;
2857
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002858 mp->dev = dev;
Lennert Buytenhek78fff832008-08-24 01:03:57 +02002859
Sebastian Hesselbarthcb852152013-05-29 09:32:47 +00002860 /* Kirkwood resets some registers on gated clocks. Especially
2861 * CLK125_BYPASS_EN must be cleared but is not available on
2862 * all other SoCs/System Controllers using this driver.
2863 */
2864 if (of_device_is_compatible(pdev->dev.of_node,
2865 "marvell,kirkwood-eth-port"))
2866 wrlp(mp, PORT_SERIAL_CONTROL1,
2867 rdlp(mp, PORT_SERIAL_CONTROL1) & ~CLK125_BYPASS_EN);
2868
Andrew Lunn452503e2011-12-24 01:24:24 +01002869 /*
Andrew Lunn9a43a022012-06-06 06:40:43 +00002870 * Start with a default rate, and if there is a clock, allow
2871 * it to override the default.
Andrew Lunn452503e2011-12-24 01:24:24 +01002872 */
Andrew Lunn9a43a022012-06-06 06:40:43 +00002873 mp->t_clk = 133000000;
Sebastian Hesselbarth20922482013-04-10 23:29:33 +00002874 mp->clk = devm_clk_get(&pdev->dev, NULL);
Andrew Lunn452503e2011-12-24 01:24:24 +01002875 if (!IS_ERR(mp->clk)) {
2876 clk_prepare_enable(mp->clk);
2877 mp->t_clk = clk_get_rate(mp->clk);
Sebastian Hesselbarth76723bc2013-05-29 09:32:48 +00002878 } else if (!IS_ERR(mp->shared->clk)) {
2879 mp->t_clk = clk_get_rate(mp->shared->clk);
Andrew Lunn452503e2011-12-24 01:24:24 +01002880 }
Sebastian Hesselbarth20922482013-04-10 23:29:33 +00002881
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002882 set_params(mp, pd);
Ben Hutchings206d6b32010-09-27 08:30:05 +00002883 netif_set_real_num_tx_queues(dev, mp->txq_count);
2884 netif_set_real_num_rx_queues(dev, mp->rxq_count);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002885
Sebastian Hesselbarthcc9d4592013-05-29 09:32:46 +00002886 err = 0;
2887 if (pd->phy_node) {
2888 mp->phy = of_phy_connect(mp->dev, pd->phy_node,
2889 mv643xx_eth_adjust_link, 0,
2890 PHY_INTERFACE_MODE_GMII);
2891 if (!mp->phy)
2892 err = -ENODEV;
2893 } else if (pd->phy_addr != MV643XX_ETH_PHY_NONE) {
Lennert Buytenheked944932008-08-26 13:34:19 +02002894 mp->phy = phy_scan(mp, pd->phy_addr);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002895
Sebastian Hesselbarthcc9d4592013-05-29 09:32:46 +00002896 if (IS_ERR(mp->phy))
Simon Baatz976c90b2013-03-24 10:34:00 +00002897 err = PTR_ERR(mp->phy);
Sebastian Hesselbarthcc9d4592013-05-29 09:32:46 +00002898 else
2899 phy_init(mp, pd->speed, pd->duplex);
Simon Baatz976c90b2013-03-24 10:34:00 +00002900 }
Sebastian Hesselbarthcc9d4592013-05-29 09:32:46 +00002901 if (err == -ENODEV) {
2902 err = -EPROBE_DEFER;
2903 goto out;
2904 }
2905 if (err)
2906 goto out;
Lennert Buytenhek6bdf5762009-02-12 14:06:46 +00002907
2908 SET_ETHTOOL_OPS(dev, &mv643xx_eth_ethtool_ops);
Lennert Buytenheked944932008-08-26 13:34:19 +02002909
Lennert Buytenhek81600eea92008-07-14 14:29:40 +02002910 init_pscr(mp, pd->speed, pd->duplex);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002911
Lennert Buytenhek4ff34952008-09-19 05:04:57 +02002912
2913 mib_counters_clear(mp);
2914
2915 init_timer(&mp->mib_counters_timer);
2916 mp->mib_counters_timer.data = (unsigned long)mp;
2917 mp->mib_counters_timer.function = mib_counters_timer_wrapper;
2918 mp->mib_counters_timer.expires = jiffies + 30 * HZ;
2919 add_timer(&mp->mib_counters_timer);
2920
2921 spin_lock_init(&mp->mib_counters_lock);
2922
2923 INIT_WORK(&mp->tx_timeout_task, tx_timeout_task);
2924
Andrew Lunna3659aa2013-05-13 23:54:20 +00002925 netif_napi_add(dev, &mp->napi, mv643xx_eth_poll, NAPI_POLL_WEIGHT);
Lennert Buytenhek2257e052008-08-24 04:33:36 +02002926
2927 init_timer(&mp->rx_oom);
2928 mp->rx_oom.data = (unsigned long)mp;
2929 mp->rx_oom.function = oom_timer_wrapper;
2930
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
2933 BUG_ON(!res);
2934 dev->irq = res->start;
2935
Lennert Buytenhekea8a8642009-02-24 15:41:40 +00002936 dev->netdev_ops = &mv643xx_eth_netdev_ops;
2937
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 dev->watchdog_timeo = 2 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 dev->base_addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Sebastian Hesselbarth3619eb82013-04-11 23:20:00 +00002941 dev->hw_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
Michał Mirosławaad59c42011-04-17 00:15:46 +00002942 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_RXCSUM;
Lennert Buytenheke32b6612008-07-24 06:22:59 +02002943 dev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM;
James Chapmanc28a4f82006-01-27 01:13:15 -07002944
Jiri Pirko01789342011-08-16 06:29:00 +00002945 dev->priv_flags |= IFF_UNICAST_FLT;
2946
Olaf Heringb0b8dab2006-04-27 18:23:49 -07002947 SET_NETDEV_DEV(dev, &pdev->dev);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002948
2949 if (mp->shared->win_protect)
2950 wrl(mp, WINDOW_PROTECT(mp->port_num), mp->shared->win_protect);
2951
Lennert Buytenheka5fe3612009-02-24 15:41:47 +00002952 netif_carrier_off(dev);
2953
Lennert Buytenhekb5e86db2009-04-08 15:42:46 -07002954 wrlp(mp, SDMA_CONFIG, PORT_SDMA_CONFIG_DEFAULT_VALUE);
2955
Lennert Buytenhek4fb0a542009-02-24 15:42:05 +00002956 set_rx_coal(mp, 250);
Lennert Buytenheka5fe3612009-02-24 15:41:47 +00002957 set_tx_coal(mp, 0);
2958
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 err = register_netdev(dev);
2960 if (err)
2961 goto out;
2962
Joe Perches7542db82011-03-02 17:50:35 +00002963 netdev_notice(dev, "port %d with MAC address %pM\n",
2964 mp->port_num, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
Lennert Buytenhek13d64282008-06-01 20:51:22 +02002966 if (mp->tx_desc_sram_size > 0)
Joe Perches7542db82011-03-02 17:50:35 +00002967 netdev_notice(dev, "configured with sram\n");
Nicolas DETb1529872005-10-28 17:46:30 -07002968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 return 0;
2970
2971out:
Sebastian Hesselbarth20922482013-04-10 23:29:33 +00002972 if (!IS_ERR(mp->clk))
Simon Baatzbaffab22012-07-19 00:04:09 +02002973 clk_disable_unprepare(mp->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 free_netdev(dev);
2975
2976 return err;
2977}
2978
Russell King3ae5eae2005-11-09 22:32:44 +00002979static int mv643xx_eth_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002981 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002983 unregister_netdev(mp->dev);
Lennert Buytenheked944932008-08-26 13:34:19 +02002984 if (mp->phy != NULL)
Sebastian Hesselbarthcec753f2013-05-29 09:32:43 +00002985 phy_disconnect(mp->phy);
Tejun Heo23f333a2010-12-12 16:45:14 +01002986 cancel_work_sync(&mp->tx_timeout_task);
Andrew Lunn452503e2011-12-24 01:24:24 +01002987
Sebastian Hesselbarth20922482013-04-10 23:29:33 +00002988 if (!IS_ERR(mp->clk))
Andrew Lunn452503e2011-12-24 01:24:24 +01002989 clk_disable_unprepare(mp->clk);
Andrew Lunn9a43a022012-06-06 06:40:43 +00002990
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002991 free_netdev(mp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 return 0;
2994}
2995
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002996static void mv643xx_eth_shutdown(struct platform_device *pdev)
2997{
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02002998 struct mv643xx_eth_private *mp = platform_get_drvdata(pdev);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07002999
3000 /* Mask all interrupts on ethernet port */
Lennert Buytenhek37a60842008-11-20 03:57:36 -08003001 wrlp(mp, INT_MASK, 0);
3002 rdlp(mp, INT_MASK);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07003003
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02003004 if (netif_running(mp->dev))
3005 port_reset(mp);
Dale Farnsworthd57ab6f2007-03-20 16:38:04 -07003006}
3007
Russell King3ae5eae2005-11-09 22:32:44 +00003008static struct platform_driver mv643xx_eth_driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02003009 .probe = mv643xx_eth_probe,
3010 .remove = mv643xx_eth_remove,
3011 .shutdown = mv643xx_eth_shutdown,
Russell King3ae5eae2005-11-09 22:32:44 +00003012 .driver = {
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02003013 .name = MV643XX_ETH_NAME,
Kay Sievers72abb462008-04-18 13:50:44 -07003014 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00003015 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016};
3017
Lennert Buytenheke5371492008-06-01 02:18:13 +02003018static int __init mv643xx_eth_init_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
3020 int rc;
3021
Russell King3ae5eae2005-11-09 22:32:44 +00003022 rc = platform_driver_register(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 if (!rc) {
Russell King3ae5eae2005-11-09 22:32:44 +00003024 rc = platform_driver_register(&mv643xx_eth_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 if (rc)
Russell King3ae5eae2005-11-09 22:32:44 +00003026 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 }
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02003028
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 return rc;
3030}
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02003031module_init(mv643xx_eth_init_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Lennert Buytenheke5371492008-06-01 02:18:13 +02003033static void __exit mv643xx_eth_cleanup_module(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034{
Russell King3ae5eae2005-11-09 22:32:44 +00003035 platform_driver_unregister(&mv643xx_eth_driver);
3036 platform_driver_unregister(&mv643xx_eth_shared_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037}
Lennert Buytenheke5371492008-06-01 02:18:13 +02003038module_exit(mv643xx_eth_cleanup_module);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Lennert Buytenhek45675bc2008-06-02 02:02:30 +02003040MODULE_AUTHOR("Rabeeh Khoury, Assaf Hoffman, Matthew Dharm, "
3041 "Manish Lachwani, Dale Farnsworth and Lennert Buytenhek");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042MODULE_DESCRIPTION("Ethernet driver for Marvell MV643XX");
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02003043MODULE_LICENSE("GPL");
Kay Sievers72abb462008-04-18 13:50:44 -07003044MODULE_ALIAS("platform:" MV643XX_ETH_SHARED_NAME);
Lennert Buytenhekfc32b0e2008-06-02 00:28:40 +02003045MODULE_ALIAS("platform:" MV643XX_ETH_NAME);