blob: 389a854b88fc7280403e17d249f128b9b4431382 [file] [log] [blame]
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001/*
2 * Driver for Marvell NETA network card for Armada XP and Armada 370 SoCs.
3 *
4 * Copyright (C) 2012 Marvell
5 *
6 * Rami Rosen <rosenr@marvell.com>
7 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8 *
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
12 */
13
14#include <linux/kernel.h>
Thomas Petazzonic5aff182012-08-17 14:04:28 +030015#include <linux/netdevice.h>
16#include <linux/etherdevice.h>
17#include <linux/platform_device.h>
18#include <linux/skbuff.h>
19#include <linux/inetdevice.h>
20#include <linux/mbus.h>
21#include <linux/module.h>
22#include <linux/interrupt.h>
23#include <net/ip.h>
24#include <net/ipv6.h>
25#include <linux/of.h>
26#include <linux/of_irq.h>
27#include <linux/of_mdio.h>
28#include <linux/of_net.h>
29#include <linux/of_address.h>
30#include <linux/phy.h>
Thomas Petazzoni189dd622012-11-19 14:15:25 +010031#include <linux/clk.h>
Thomas Petazzonic5aff182012-08-17 14:04:28 +030032
33/* Registers */
34#define MVNETA_RXQ_CONFIG_REG(q) (0x1400 + ((q) << 2))
35#define MVNETA_RXQ_HW_BUF_ALLOC BIT(1)
36#define MVNETA_RXQ_PKT_OFFSET_ALL_MASK (0xf << 8)
37#define MVNETA_RXQ_PKT_OFFSET_MASK(offs) ((offs) << 8)
38#define MVNETA_RXQ_THRESHOLD_REG(q) (0x14c0 + ((q) << 2))
39#define MVNETA_RXQ_NON_OCCUPIED(v) ((v) << 16)
40#define MVNETA_RXQ_BASE_ADDR_REG(q) (0x1480 + ((q) << 2))
41#define MVNETA_RXQ_SIZE_REG(q) (0x14a0 + ((q) << 2))
42#define MVNETA_RXQ_BUF_SIZE_SHIFT 19
43#define MVNETA_RXQ_BUF_SIZE_MASK (0x1fff << 19)
44#define MVNETA_RXQ_STATUS_REG(q) (0x14e0 + ((q) << 2))
45#define MVNETA_RXQ_OCCUPIED_ALL_MASK 0x3fff
46#define MVNETA_RXQ_STATUS_UPDATE_REG(q) (0x1500 + ((q) << 2))
47#define MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT 16
48#define MVNETA_RXQ_ADD_NON_OCCUPIED_MAX 255
49#define MVNETA_PORT_RX_RESET 0x1cc0
50#define MVNETA_PORT_RX_DMA_RESET BIT(0)
51#define MVNETA_PHY_ADDR 0x2000
52#define MVNETA_PHY_ADDR_MASK 0x1f
53#define MVNETA_MBUS_RETRY 0x2010
54#define MVNETA_UNIT_INTR_CAUSE 0x2080
55#define MVNETA_UNIT_CONTROL 0x20B0
56#define MVNETA_PHY_POLLING_ENABLE BIT(1)
57#define MVNETA_WIN_BASE(w) (0x2200 + ((w) << 3))
58#define MVNETA_WIN_SIZE(w) (0x2204 + ((w) << 3))
59#define MVNETA_WIN_REMAP(w) (0x2280 + ((w) << 2))
60#define MVNETA_BASE_ADDR_ENABLE 0x2290
61#define MVNETA_PORT_CONFIG 0x2400
62#define MVNETA_UNI_PROMISC_MODE BIT(0)
63#define MVNETA_DEF_RXQ(q) ((q) << 1)
64#define MVNETA_DEF_RXQ_ARP(q) ((q) << 4)
65#define MVNETA_TX_UNSET_ERR_SUM BIT(12)
66#define MVNETA_DEF_RXQ_TCP(q) ((q) << 16)
67#define MVNETA_DEF_RXQ_UDP(q) ((q) << 19)
68#define MVNETA_DEF_RXQ_BPDU(q) ((q) << 22)
69#define MVNETA_RX_CSUM_WITH_PSEUDO_HDR BIT(25)
70#define MVNETA_PORT_CONFIG_DEFL_VALUE(q) (MVNETA_DEF_RXQ(q) | \
71 MVNETA_DEF_RXQ_ARP(q) | \
72 MVNETA_DEF_RXQ_TCP(q) | \
73 MVNETA_DEF_RXQ_UDP(q) | \
74 MVNETA_DEF_RXQ_BPDU(q) | \
75 MVNETA_TX_UNSET_ERR_SUM | \
76 MVNETA_RX_CSUM_WITH_PSEUDO_HDR)
77#define MVNETA_PORT_CONFIG_EXTEND 0x2404
78#define MVNETA_MAC_ADDR_LOW 0x2414
79#define MVNETA_MAC_ADDR_HIGH 0x2418
80#define MVNETA_SDMA_CONFIG 0x241c
81#define MVNETA_SDMA_BRST_SIZE_16 4
82#define MVNETA_NO_DESC_SWAP 0x0
83#define MVNETA_RX_BRST_SZ_MASK(burst) ((burst) << 1)
84#define MVNETA_RX_NO_DATA_SWAP BIT(4)
85#define MVNETA_TX_NO_DATA_SWAP BIT(5)
86#define MVNETA_TX_BRST_SZ_MASK(burst) ((burst) << 22)
87#define MVNETA_PORT_STATUS 0x2444
88#define MVNETA_TX_IN_PRGRS BIT(1)
89#define MVNETA_TX_FIFO_EMPTY BIT(8)
90#define MVNETA_RX_MIN_FRAME_SIZE 0x247c
Arnaud Patard \(Rtp\)5445eaf2013-07-29 21:56:48 +020091#define MVNETA_SGMII_SERDES_CFG 0x24A0
92#define MVNETA_SGMII_SERDES_PROTO 0x0cc7
Thomas Petazzonic5aff182012-08-17 14:04:28 +030093#define MVNETA_TYPE_PRIO 0x24bc
94#define MVNETA_FORCE_UNI BIT(21)
95#define MVNETA_TXQ_CMD_1 0x24e4
96#define MVNETA_TXQ_CMD 0x2448
97#define MVNETA_TXQ_DISABLE_SHIFT 8
98#define MVNETA_TXQ_ENABLE_MASK 0x000000ff
99#define MVNETA_ACC_MODE 0x2500
100#define MVNETA_CPU_MAP(cpu) (0x2540 + ((cpu) << 2))
101#define MVNETA_CPU_RXQ_ACCESS_ALL_MASK 0x000000ff
102#define MVNETA_CPU_TXQ_ACCESS_ALL_MASK 0x0000ff00
103#define MVNETA_RXQ_TIME_COAL_REG(q) (0x2580 + ((q) << 2))
104#define MVNETA_INTR_NEW_CAUSE 0x25a0
105#define MVNETA_RX_INTR_MASK(nr_rxqs) (((1 << nr_rxqs) - 1) << 8)
106#define MVNETA_INTR_NEW_MASK 0x25a4
107#define MVNETA_INTR_OLD_CAUSE 0x25a8
108#define MVNETA_INTR_OLD_MASK 0x25ac
109#define MVNETA_INTR_MISC_CAUSE 0x25b0
110#define MVNETA_INTR_MISC_MASK 0x25b4
111#define MVNETA_INTR_ENABLE 0x25b8
112#define MVNETA_TXQ_INTR_ENABLE_ALL_MASK 0x0000ff00
113#define MVNETA_RXQ_INTR_ENABLE_ALL_MASK 0xff000000
114#define MVNETA_RXQ_CMD 0x2680
115#define MVNETA_RXQ_DISABLE_SHIFT 8
116#define MVNETA_RXQ_ENABLE_MASK 0x000000ff
117#define MVETH_TXQ_TOKEN_COUNT_REG(q) (0x2700 + ((q) << 4))
118#define MVETH_TXQ_TOKEN_CFG_REG(q) (0x2704 + ((q) << 4))
119#define MVNETA_GMAC_CTRL_0 0x2c00
120#define MVNETA_GMAC_MAX_RX_SIZE_SHIFT 2
121#define MVNETA_GMAC_MAX_RX_SIZE_MASK 0x7ffc
122#define MVNETA_GMAC0_PORT_ENABLE BIT(0)
123#define MVNETA_GMAC_CTRL_2 0x2c08
124#define MVNETA_GMAC2_PSC_ENABLE BIT(3)
125#define MVNETA_GMAC2_PORT_RGMII BIT(4)
126#define MVNETA_GMAC2_PORT_RESET BIT(6)
127#define MVNETA_GMAC_STATUS 0x2c10
128#define MVNETA_GMAC_LINK_UP BIT(0)
129#define MVNETA_GMAC_SPEED_1000 BIT(1)
130#define MVNETA_GMAC_SPEED_100 BIT(2)
131#define MVNETA_GMAC_FULL_DUPLEX BIT(3)
132#define MVNETA_GMAC_RX_FLOW_CTRL_ENABLE BIT(4)
133#define MVNETA_GMAC_TX_FLOW_CTRL_ENABLE BIT(5)
134#define MVNETA_GMAC_RX_FLOW_CTRL_ACTIVE BIT(6)
135#define MVNETA_GMAC_TX_FLOW_CTRL_ACTIVE BIT(7)
136#define MVNETA_GMAC_AUTONEG_CONFIG 0x2c0c
137#define MVNETA_GMAC_FORCE_LINK_DOWN BIT(0)
138#define MVNETA_GMAC_FORCE_LINK_PASS BIT(1)
139#define MVNETA_GMAC_CONFIG_MII_SPEED BIT(5)
140#define MVNETA_GMAC_CONFIG_GMII_SPEED BIT(6)
Thomas Petazzoni71408602013-09-04 16:21:18 +0200141#define MVNETA_GMAC_AN_SPEED_EN BIT(7)
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300142#define MVNETA_GMAC_CONFIG_FULL_DUPLEX BIT(12)
Thomas Petazzoni71408602013-09-04 16:21:18 +0200143#define MVNETA_GMAC_AN_DUPLEX_EN BIT(13)
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300144#define MVNETA_MIB_COUNTERS_BASE 0x3080
145#define MVNETA_MIB_LATE_COLLISION 0x7c
146#define MVNETA_DA_FILT_SPEC_MCAST 0x3400
147#define MVNETA_DA_FILT_OTH_MCAST 0x3500
148#define MVNETA_DA_FILT_UCAST_BASE 0x3600
149#define MVNETA_TXQ_BASE_ADDR_REG(q) (0x3c00 + ((q) << 2))
150#define MVNETA_TXQ_SIZE_REG(q) (0x3c20 + ((q) << 2))
151#define MVNETA_TXQ_SENT_THRESH_ALL_MASK 0x3fff0000
152#define MVNETA_TXQ_SENT_THRESH_MASK(coal) ((coal) << 16)
153#define MVNETA_TXQ_UPDATE_REG(q) (0x3c60 + ((q) << 2))
154#define MVNETA_TXQ_DEC_SENT_SHIFT 16
155#define MVNETA_TXQ_STATUS_REG(q) (0x3c40 + ((q) << 2))
156#define MVNETA_TXQ_SENT_DESC_SHIFT 16
157#define MVNETA_TXQ_SENT_DESC_MASK 0x3fff0000
158#define MVNETA_PORT_TX_RESET 0x3cf0
159#define MVNETA_PORT_TX_DMA_RESET BIT(0)
160#define MVNETA_TX_MTU 0x3e0c
161#define MVNETA_TX_TOKEN_SIZE 0x3e14
162#define MVNETA_TX_TOKEN_SIZE_MAX 0xffffffff
163#define MVNETA_TXQ_TOKEN_SIZE_REG(q) (0x3e40 + ((q) << 2))
164#define MVNETA_TXQ_TOKEN_SIZE_MAX 0x7fffffff
165
166#define MVNETA_CAUSE_TXQ_SENT_DESC_ALL_MASK 0xff
167
168/* Descriptor ring Macros */
169#define MVNETA_QUEUE_NEXT_DESC(q, index) \
170 (((index) < (q)->last_desc) ? ((index) + 1) : 0)
171
172/* Various constants */
173
174/* Coalescing */
175#define MVNETA_TXDONE_COAL_PKTS 16
176#define MVNETA_RX_COAL_PKTS 32
177#define MVNETA_RX_COAL_USEC 100
178
179/* Timer */
180#define MVNETA_TX_DONE_TIMER_PERIOD 10
181
182/* Napi polling weight */
183#define MVNETA_RX_POLL_WEIGHT 64
184
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100185/* The two bytes Marvell header. Either contains a special value used
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300186 * by Marvell switches when a specific hardware mode is enabled (not
187 * supported by this driver) or is filled automatically by zeroes on
188 * the RX side. Those two bytes being at the front of the Ethernet
189 * header, they allow to have the IP header aligned on a 4 bytes
190 * boundary automatically: the hardware skips those two bytes on its
191 * own.
192 */
193#define MVNETA_MH_SIZE 2
194
195#define MVNETA_VLAN_TAG_LEN 4
196
197#define MVNETA_CPU_D_CACHE_LINE_SIZE 32
198#define MVNETA_TX_CSUM_MAX_SIZE 9800
199#define MVNETA_ACC_MODE_EXT 1
200
201/* Timeout constants */
202#define MVNETA_TX_DISABLE_TIMEOUT_MSEC 1000
203#define MVNETA_RX_DISABLE_TIMEOUT_MSEC 1000
204#define MVNETA_TX_FIFO_EMPTY_TIMEOUT 10000
205
206#define MVNETA_TX_MTU_MAX 0x3ffff
207
208/* Max number of Rx descriptors */
209#define MVNETA_MAX_RXD 128
210
211/* Max number of Tx descriptors */
212#define MVNETA_MAX_TXD 532
213
214/* descriptor aligned size */
215#define MVNETA_DESC_ALIGNED_SIZE 32
216
217#define MVNETA_RX_PKT_SIZE(mtu) \
218 ALIGN((mtu) + MVNETA_MH_SIZE + MVNETA_VLAN_TAG_LEN + \
219 ETH_HLEN + ETH_FCS_LEN, \
220 MVNETA_CPU_D_CACHE_LINE_SIZE)
221
222#define MVNETA_RX_BUF_SIZE(pkt_size) ((pkt_size) + NET_SKB_PAD)
223
224struct mvneta_stats {
225 struct u64_stats_sync syncp;
226 u64 packets;
227 u64 bytes;
228};
229
230struct mvneta_port {
231 int pkt_size;
232 void __iomem *base;
233 struct mvneta_rx_queue *rxqs;
234 struct mvneta_tx_queue *txqs;
235 struct timer_list tx_done_timer;
236 struct net_device *dev;
237
238 u32 cause_rx_tx;
239 struct napi_struct napi;
240
241 /* Flags */
242 unsigned long flags;
243#define MVNETA_F_TX_DONE_TIMER_BIT 0
244
245 /* Napi weight */
246 int weight;
247
248 /* Core clock */
Thomas Petazzoni189dd622012-11-19 14:15:25 +0100249 struct clk *clk;
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300250 u8 mcast_count[256];
251 u16 tx_ring_size;
252 u16 rx_ring_size;
253 struct mvneta_stats tx_stats;
254 struct mvneta_stats rx_stats;
255
256 struct mii_bus *mii_bus;
257 struct phy_device *phy_dev;
258 phy_interface_t phy_interface;
259 struct device_node *phy_node;
260 unsigned int link;
261 unsigned int duplex;
262 unsigned int speed;
263};
264
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100265/* The mvneta_tx_desc and mvneta_rx_desc structures describe the
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300266 * layout of the transmit and reception DMA descriptors, and their
267 * layout is therefore defined by the hardware design
268 */
269struct mvneta_tx_desc {
270 u32 command; /* Options used by HW for packet transmitting.*/
271#define MVNETA_TX_L3_OFF_SHIFT 0
272#define MVNETA_TX_IP_HLEN_SHIFT 8
273#define MVNETA_TX_L4_UDP BIT(16)
274#define MVNETA_TX_L3_IP6 BIT(17)
275#define MVNETA_TXD_IP_CSUM BIT(18)
276#define MVNETA_TXD_Z_PAD BIT(19)
277#define MVNETA_TXD_L_DESC BIT(20)
278#define MVNETA_TXD_F_DESC BIT(21)
279#define MVNETA_TXD_FLZ_DESC (MVNETA_TXD_Z_PAD | \
280 MVNETA_TXD_L_DESC | \
281 MVNETA_TXD_F_DESC)
282#define MVNETA_TX_L4_CSUM_FULL BIT(30)
283#define MVNETA_TX_L4_CSUM_NOT BIT(31)
284
285 u16 reserverd1; /* csum_l4 (for future use) */
286 u16 data_size; /* Data size of transmitted packet in bytes */
287 u32 buf_phys_addr; /* Physical addr of transmitted buffer */
288 u32 reserved2; /* hw_cmd - (for future use, PMT) */
289 u32 reserved3[4]; /* Reserved - (for future use) */
290};
291
292struct mvneta_rx_desc {
293 u32 status; /* Info about received packet */
294#define MVNETA_RXD_ERR_CRC 0x0
295#define MVNETA_RXD_ERR_SUMMARY BIT(16)
296#define MVNETA_RXD_ERR_OVERRUN BIT(17)
297#define MVNETA_RXD_ERR_LEN BIT(18)
298#define MVNETA_RXD_ERR_RESOURCE (BIT(17) | BIT(18))
299#define MVNETA_RXD_ERR_CODE_MASK (BIT(17) | BIT(18))
300#define MVNETA_RXD_L3_IP4 BIT(25)
301#define MVNETA_RXD_FIRST_LAST_DESC (BIT(26) | BIT(27))
302#define MVNETA_RXD_L4_CSUM_OK BIT(30)
303
304 u16 reserved1; /* pnc_info - (for future use, PnC) */
305 u16 data_size; /* Size of received packet in bytes */
306 u32 buf_phys_addr; /* Physical address of the buffer */
307 u32 reserved2; /* pnc_flow_id (for future use, PnC) */
308 u32 buf_cookie; /* cookie for access to RX buffer in rx path */
309 u16 reserved3; /* prefetch_cmd, for future use */
310 u16 reserved4; /* csum_l4 - (for future use, PnC) */
311 u32 reserved5; /* pnc_extra PnC (for future use, PnC) */
312 u32 reserved6; /* hw_cmd (for future use, PnC and HWF) */
313};
314
315struct mvneta_tx_queue {
316 /* Number of this TX queue, in the range 0-7 */
317 u8 id;
318
319 /* Number of TX DMA descriptors in the descriptor ring */
320 int size;
321
322 /* Number of currently used TX DMA descriptor in the
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100323 * descriptor ring
324 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300325 int count;
326
327 /* Array of transmitted skb */
328 struct sk_buff **tx_skb;
329
330 /* Index of last TX DMA descriptor that was inserted */
331 int txq_put_index;
332
333 /* Index of the TX DMA descriptor to be cleaned up */
334 int txq_get_index;
335
336 u32 done_pkts_coal;
337
338 /* Virtual address of the TX DMA descriptors array */
339 struct mvneta_tx_desc *descs;
340
341 /* DMA address of the TX DMA descriptors array */
342 dma_addr_t descs_phys;
343
344 /* Index of the last TX DMA descriptor */
345 int last_desc;
346
347 /* Index of the next TX DMA descriptor to process */
348 int next_desc_to_proc;
349};
350
351struct mvneta_rx_queue {
352 /* rx queue number, in the range 0-7 */
353 u8 id;
354
355 /* num of rx descriptors in the rx descriptor ring */
356 int size;
357
358 /* counter of times when mvneta_refill() failed */
359 int missed;
360
361 u32 pkts_coal;
362 u32 time_coal;
363
364 /* Virtual address of the RX DMA descriptors array */
365 struct mvneta_rx_desc *descs;
366
367 /* DMA address of the RX DMA descriptors array */
368 dma_addr_t descs_phys;
369
370 /* Index of the last RX DMA descriptor */
371 int last_desc;
372
373 /* Index of the next RX DMA descriptor to process */
374 int next_desc_to_proc;
375};
376
377static int rxq_number = 8;
378static int txq_number = 8;
379
380static int rxq_def;
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300381
382#define MVNETA_DRIVER_NAME "mvneta"
383#define MVNETA_DRIVER_VERSION "1.0"
384
385/* Utility/helper methods */
386
387/* Write helper method */
388static void mvreg_write(struct mvneta_port *pp, u32 offset, u32 data)
389{
390 writel(data, pp->base + offset);
391}
392
393/* Read helper method */
394static u32 mvreg_read(struct mvneta_port *pp, u32 offset)
395{
396 return readl(pp->base + offset);
397}
398
399/* Increment txq get counter */
400static void mvneta_txq_inc_get(struct mvneta_tx_queue *txq)
401{
402 txq->txq_get_index++;
403 if (txq->txq_get_index == txq->size)
404 txq->txq_get_index = 0;
405}
406
407/* Increment txq put counter */
408static void mvneta_txq_inc_put(struct mvneta_tx_queue *txq)
409{
410 txq->txq_put_index++;
411 if (txq->txq_put_index == txq->size)
412 txq->txq_put_index = 0;
413}
414
415
416/* Clear all MIB counters */
417static void mvneta_mib_counters_clear(struct mvneta_port *pp)
418{
419 int i;
420 u32 dummy;
421
422 /* Perform dummy reads from MIB counters */
423 for (i = 0; i < MVNETA_MIB_LATE_COLLISION; i += 4)
424 dummy = mvreg_read(pp, (MVNETA_MIB_COUNTERS_BASE + i));
425}
426
427/* Get System Network Statistics */
428struct rtnl_link_stats64 *mvneta_get_stats64(struct net_device *dev,
429 struct rtnl_link_stats64 *stats)
430{
431 struct mvneta_port *pp = netdev_priv(dev);
432 unsigned int start;
433
434 memset(stats, 0, sizeof(struct rtnl_link_stats64));
435
436 do {
437 start = u64_stats_fetch_begin_bh(&pp->rx_stats.syncp);
438 stats->rx_packets = pp->rx_stats.packets;
439 stats->rx_bytes = pp->rx_stats.bytes;
440 } while (u64_stats_fetch_retry_bh(&pp->rx_stats.syncp, start));
441
442
443 do {
444 start = u64_stats_fetch_begin_bh(&pp->tx_stats.syncp);
445 stats->tx_packets = pp->tx_stats.packets;
446 stats->tx_bytes = pp->tx_stats.bytes;
447 } while (u64_stats_fetch_retry_bh(&pp->tx_stats.syncp, start));
448
449 stats->rx_errors = dev->stats.rx_errors;
450 stats->rx_dropped = dev->stats.rx_dropped;
451
452 stats->tx_dropped = dev->stats.tx_dropped;
453
454 return stats;
455}
456
457/* Rx descriptors helper methods */
458
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100459/* Checks whether the given RX descriptor is both the first and the
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300460 * last descriptor for the RX packet. Each RX packet is currently
461 * received through a single RX descriptor, so not having each RX
462 * descriptor with its first and last bits set is an error
463 */
464static int mvneta_rxq_desc_is_first_last(struct mvneta_rx_desc *desc)
465{
466 return (desc->status & MVNETA_RXD_FIRST_LAST_DESC) ==
467 MVNETA_RXD_FIRST_LAST_DESC;
468}
469
470/* Add number of descriptors ready to receive new packets */
471static void mvneta_rxq_non_occup_desc_add(struct mvneta_port *pp,
472 struct mvneta_rx_queue *rxq,
473 int ndescs)
474{
475 /* Only MVNETA_RXQ_ADD_NON_OCCUPIED_MAX (255) descriptors can
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100476 * be added at once
477 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300478 while (ndescs > MVNETA_RXQ_ADD_NON_OCCUPIED_MAX) {
479 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id),
480 (MVNETA_RXQ_ADD_NON_OCCUPIED_MAX <<
481 MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT));
482 ndescs -= MVNETA_RXQ_ADD_NON_OCCUPIED_MAX;
483 }
484
485 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id),
486 (ndescs << MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT));
487}
488
489/* Get number of RX descriptors occupied by received packets */
490static int mvneta_rxq_busy_desc_num_get(struct mvneta_port *pp,
491 struct mvneta_rx_queue *rxq)
492{
493 u32 val;
494
495 val = mvreg_read(pp, MVNETA_RXQ_STATUS_REG(rxq->id));
496 return val & MVNETA_RXQ_OCCUPIED_ALL_MASK;
497}
498
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100499/* Update num of rx desc called upon return from rx path or
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300500 * from mvneta_rxq_drop_pkts().
501 */
502static void mvneta_rxq_desc_num_update(struct mvneta_port *pp,
503 struct mvneta_rx_queue *rxq,
504 int rx_done, int rx_filled)
505{
506 u32 val;
507
508 if ((rx_done <= 0xff) && (rx_filled <= 0xff)) {
509 val = rx_done |
510 (rx_filled << MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT);
511 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id), val);
512 return;
513 }
514
515 /* Only 255 descriptors can be added at once */
516 while ((rx_done > 0) || (rx_filled > 0)) {
517 if (rx_done <= 0xff) {
518 val = rx_done;
519 rx_done = 0;
520 } else {
521 val = 0xff;
522 rx_done -= 0xff;
523 }
524 if (rx_filled <= 0xff) {
525 val |= rx_filled << MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT;
526 rx_filled = 0;
527 } else {
528 val |= 0xff << MVNETA_RXQ_ADD_NON_OCCUPIED_SHIFT;
529 rx_filled -= 0xff;
530 }
531 mvreg_write(pp, MVNETA_RXQ_STATUS_UPDATE_REG(rxq->id), val);
532 }
533}
534
535/* Get pointer to next RX descriptor to be processed by SW */
536static struct mvneta_rx_desc *
537mvneta_rxq_next_desc_get(struct mvneta_rx_queue *rxq)
538{
539 int rx_desc = rxq->next_desc_to_proc;
540
541 rxq->next_desc_to_proc = MVNETA_QUEUE_NEXT_DESC(rxq, rx_desc);
542 return rxq->descs + rx_desc;
543}
544
545/* Change maximum receive size of the port. */
546static void mvneta_max_rx_size_set(struct mvneta_port *pp, int max_rx_size)
547{
548 u32 val;
549
550 val = mvreg_read(pp, MVNETA_GMAC_CTRL_0);
551 val &= ~MVNETA_GMAC_MAX_RX_SIZE_MASK;
552 val |= ((max_rx_size - MVNETA_MH_SIZE) / 2) <<
553 MVNETA_GMAC_MAX_RX_SIZE_SHIFT;
554 mvreg_write(pp, MVNETA_GMAC_CTRL_0, val);
555}
556
557
558/* Set rx queue offset */
559static void mvneta_rxq_offset_set(struct mvneta_port *pp,
560 struct mvneta_rx_queue *rxq,
561 int offset)
562{
563 u32 val;
564
565 val = mvreg_read(pp, MVNETA_RXQ_CONFIG_REG(rxq->id));
566 val &= ~MVNETA_RXQ_PKT_OFFSET_ALL_MASK;
567
568 /* Offset is in */
569 val |= MVNETA_RXQ_PKT_OFFSET_MASK(offset >> 3);
570 mvreg_write(pp, MVNETA_RXQ_CONFIG_REG(rxq->id), val);
571}
572
573
574/* Tx descriptors helper methods */
575
576/* Update HW with number of TX descriptors to be sent */
577static void mvneta_txq_pend_desc_add(struct mvneta_port *pp,
578 struct mvneta_tx_queue *txq,
579 int pend_desc)
580{
581 u32 val;
582
583 /* Only 255 descriptors can be added at once ; Assume caller
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100584 * process TX desriptors in quanta less than 256
585 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300586 val = pend_desc;
587 mvreg_write(pp, MVNETA_TXQ_UPDATE_REG(txq->id), val);
588}
589
590/* Get pointer to next TX descriptor to be processed (send) by HW */
591static struct mvneta_tx_desc *
592mvneta_txq_next_desc_get(struct mvneta_tx_queue *txq)
593{
594 int tx_desc = txq->next_desc_to_proc;
595
596 txq->next_desc_to_proc = MVNETA_QUEUE_NEXT_DESC(txq, tx_desc);
597 return txq->descs + tx_desc;
598}
599
600/* Release the last allocated TX descriptor. Useful to handle DMA
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100601 * mapping failures in the TX path.
602 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300603static void mvneta_txq_desc_put(struct mvneta_tx_queue *txq)
604{
605 if (txq->next_desc_to_proc == 0)
606 txq->next_desc_to_proc = txq->last_desc - 1;
607 else
608 txq->next_desc_to_proc--;
609}
610
611/* Set rxq buf size */
612static void mvneta_rxq_buf_size_set(struct mvneta_port *pp,
613 struct mvneta_rx_queue *rxq,
614 int buf_size)
615{
616 u32 val;
617
618 val = mvreg_read(pp, MVNETA_RXQ_SIZE_REG(rxq->id));
619
620 val &= ~MVNETA_RXQ_BUF_SIZE_MASK;
621 val |= ((buf_size >> 3) << MVNETA_RXQ_BUF_SIZE_SHIFT);
622
623 mvreg_write(pp, MVNETA_RXQ_SIZE_REG(rxq->id), val);
624}
625
626/* Disable buffer management (BM) */
627static void mvneta_rxq_bm_disable(struct mvneta_port *pp,
628 struct mvneta_rx_queue *rxq)
629{
630 u32 val;
631
632 val = mvreg_read(pp, MVNETA_RXQ_CONFIG_REG(rxq->id));
633 val &= ~MVNETA_RXQ_HW_BUF_ALLOC;
634 mvreg_write(pp, MVNETA_RXQ_CONFIG_REG(rxq->id), val);
635}
636
637
638
639/* Sets the RGMII Enable bit (RGMIIEn) in port MAC control register */
Greg KH03ce7582012-12-21 13:42:15 +0000640static void mvneta_gmac_rgmii_set(struct mvneta_port *pp, int enable)
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300641{
642 u32 val;
643
644 val = mvreg_read(pp, MVNETA_GMAC_CTRL_2);
645
646 if (enable)
647 val |= MVNETA_GMAC2_PORT_RGMII;
648 else
649 val &= ~MVNETA_GMAC2_PORT_RGMII;
650
651 mvreg_write(pp, MVNETA_GMAC_CTRL_2, val);
652}
653
654/* Config SGMII port */
Greg KH03ce7582012-12-21 13:42:15 +0000655static void mvneta_port_sgmii_config(struct mvneta_port *pp)
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300656{
657 u32 val;
658
659 val = mvreg_read(pp, MVNETA_GMAC_CTRL_2);
660 val |= MVNETA_GMAC2_PSC_ENABLE;
661 mvreg_write(pp, MVNETA_GMAC_CTRL_2, val);
Arnaud Patard \(Rtp\)5445eaf2013-07-29 21:56:48 +0200662
663 mvreg_write(pp, MVNETA_SGMII_SERDES_CFG, MVNETA_SGMII_SERDES_PROTO);
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300664}
665
666/* Start the Ethernet port RX and TX activity */
667static void mvneta_port_up(struct mvneta_port *pp)
668{
669 int queue;
670 u32 q_map;
671
672 /* Enable all initialized TXs. */
673 mvneta_mib_counters_clear(pp);
674 q_map = 0;
675 for (queue = 0; queue < txq_number; queue++) {
676 struct mvneta_tx_queue *txq = &pp->txqs[queue];
677 if (txq->descs != NULL)
678 q_map |= (1 << queue);
679 }
680 mvreg_write(pp, MVNETA_TXQ_CMD, q_map);
681
682 /* Enable all initialized RXQs. */
683 q_map = 0;
684 for (queue = 0; queue < rxq_number; queue++) {
685 struct mvneta_rx_queue *rxq = &pp->rxqs[queue];
686 if (rxq->descs != NULL)
687 q_map |= (1 << queue);
688 }
689
690 mvreg_write(pp, MVNETA_RXQ_CMD, q_map);
691}
692
693/* Stop the Ethernet port activity */
694static void mvneta_port_down(struct mvneta_port *pp)
695{
696 u32 val;
697 int count;
698
699 /* Stop Rx port activity. Check port Rx activity. */
700 val = mvreg_read(pp, MVNETA_RXQ_CMD) & MVNETA_RXQ_ENABLE_MASK;
701
702 /* Issue stop command for active channels only */
703 if (val != 0)
704 mvreg_write(pp, MVNETA_RXQ_CMD,
705 val << MVNETA_RXQ_DISABLE_SHIFT);
706
707 /* Wait for all Rx activity to terminate. */
708 count = 0;
709 do {
710 if (count++ >= MVNETA_RX_DISABLE_TIMEOUT_MSEC) {
711 netdev_warn(pp->dev,
712 "TIMEOUT for RX stopped ! rx_queue_cmd: 0x08%x\n",
713 val);
714 break;
715 }
716 mdelay(1);
717
718 val = mvreg_read(pp, MVNETA_RXQ_CMD);
719 } while (val & 0xff);
720
721 /* Stop Tx port activity. Check port Tx activity. Issue stop
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100722 * command for active channels only
723 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300724 val = (mvreg_read(pp, MVNETA_TXQ_CMD)) & MVNETA_TXQ_ENABLE_MASK;
725
726 if (val != 0)
727 mvreg_write(pp, MVNETA_TXQ_CMD,
728 (val << MVNETA_TXQ_DISABLE_SHIFT));
729
730 /* Wait for all Tx activity to terminate. */
731 count = 0;
732 do {
733 if (count++ >= MVNETA_TX_DISABLE_TIMEOUT_MSEC) {
734 netdev_warn(pp->dev,
735 "TIMEOUT for TX stopped status=0x%08x\n",
736 val);
737 break;
738 }
739 mdelay(1);
740
741 /* Check TX Command reg that all Txqs are stopped */
742 val = mvreg_read(pp, MVNETA_TXQ_CMD);
743
744 } while (val & 0xff);
745
746 /* Double check to verify that TX FIFO is empty */
747 count = 0;
748 do {
749 if (count++ >= MVNETA_TX_FIFO_EMPTY_TIMEOUT) {
750 netdev_warn(pp->dev,
751 "TX FIFO empty timeout status=0x08%x\n",
752 val);
753 break;
754 }
755 mdelay(1);
756
757 val = mvreg_read(pp, MVNETA_PORT_STATUS);
758 } while (!(val & MVNETA_TX_FIFO_EMPTY) &&
759 (val & MVNETA_TX_IN_PRGRS));
760
761 udelay(200);
762}
763
764/* Enable the port by setting the port enable bit of the MAC control register */
765static void mvneta_port_enable(struct mvneta_port *pp)
766{
767 u32 val;
768
769 /* Enable port */
770 val = mvreg_read(pp, MVNETA_GMAC_CTRL_0);
771 val |= MVNETA_GMAC0_PORT_ENABLE;
772 mvreg_write(pp, MVNETA_GMAC_CTRL_0, val);
773}
774
775/* Disable the port and wait for about 200 usec before retuning */
776static void mvneta_port_disable(struct mvneta_port *pp)
777{
778 u32 val;
779
780 /* Reset the Enable bit in the Serial Control Register */
781 val = mvreg_read(pp, MVNETA_GMAC_CTRL_0);
782 val &= ~MVNETA_GMAC0_PORT_ENABLE;
783 mvreg_write(pp, MVNETA_GMAC_CTRL_0, val);
784
785 udelay(200);
786}
787
788/* Multicast tables methods */
789
790/* Set all entries in Unicast MAC Table; queue==-1 means reject all */
791static void mvneta_set_ucast_table(struct mvneta_port *pp, int queue)
792{
793 int offset;
794 u32 val;
795
796 if (queue == -1) {
797 val = 0;
798 } else {
799 val = 0x1 | (queue << 1);
800 val |= (val << 24) | (val << 16) | (val << 8);
801 }
802
803 for (offset = 0; offset <= 0xc; offset += 4)
804 mvreg_write(pp, MVNETA_DA_FILT_UCAST_BASE + offset, val);
805}
806
807/* Set all entries in Special Multicast MAC Table; queue==-1 means reject all */
808static void mvneta_set_special_mcast_table(struct mvneta_port *pp, int queue)
809{
810 int offset;
811 u32 val;
812
813 if (queue == -1) {
814 val = 0;
815 } else {
816 val = 0x1 | (queue << 1);
817 val |= (val << 24) | (val << 16) | (val << 8);
818 }
819
820 for (offset = 0; offset <= 0xfc; offset += 4)
821 mvreg_write(pp, MVNETA_DA_FILT_SPEC_MCAST + offset, val);
822
823}
824
825/* Set all entries in Other Multicast MAC Table. queue==-1 means reject all */
826static void mvneta_set_other_mcast_table(struct mvneta_port *pp, int queue)
827{
828 int offset;
829 u32 val;
830
831 if (queue == -1) {
832 memset(pp->mcast_count, 0, sizeof(pp->mcast_count));
833 val = 0;
834 } else {
835 memset(pp->mcast_count, 1, sizeof(pp->mcast_count));
836 val = 0x1 | (queue << 1);
837 val |= (val << 24) | (val << 16) | (val << 8);
838 }
839
840 for (offset = 0; offset <= 0xfc; offset += 4)
841 mvreg_write(pp, MVNETA_DA_FILT_OTH_MCAST + offset, val);
842}
843
844/* This method sets defaults to the NETA port:
845 * Clears interrupt Cause and Mask registers.
846 * Clears all MAC tables.
847 * Sets defaults to all registers.
848 * Resets RX and TX descriptor rings.
849 * Resets PHY.
850 * This method can be called after mvneta_port_down() to return the port
851 * settings to defaults.
852 */
853static void mvneta_defaults_set(struct mvneta_port *pp)
854{
855 int cpu;
856 int queue;
857 u32 val;
858
859 /* Clear all Cause registers */
860 mvreg_write(pp, MVNETA_INTR_NEW_CAUSE, 0);
861 mvreg_write(pp, MVNETA_INTR_OLD_CAUSE, 0);
862 mvreg_write(pp, MVNETA_INTR_MISC_CAUSE, 0);
863
864 /* Mask all interrupts */
865 mvreg_write(pp, MVNETA_INTR_NEW_MASK, 0);
866 mvreg_write(pp, MVNETA_INTR_OLD_MASK, 0);
867 mvreg_write(pp, MVNETA_INTR_MISC_MASK, 0);
868 mvreg_write(pp, MVNETA_INTR_ENABLE, 0);
869
870 /* Enable MBUS Retry bit16 */
871 mvreg_write(pp, MVNETA_MBUS_RETRY, 0x20);
872
873 /* Set CPU queue access map - all CPUs have access to all RX
Thomas Petazzoni6a20c172012-11-19 11:41:25 +0100874 * queues and to all TX queues
875 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300876 for (cpu = 0; cpu < CONFIG_NR_CPUS; cpu++)
877 mvreg_write(pp, MVNETA_CPU_MAP(cpu),
878 (MVNETA_CPU_RXQ_ACCESS_ALL_MASK |
879 MVNETA_CPU_TXQ_ACCESS_ALL_MASK));
880
881 /* Reset RX and TX DMAs */
882 mvreg_write(pp, MVNETA_PORT_RX_RESET, MVNETA_PORT_RX_DMA_RESET);
883 mvreg_write(pp, MVNETA_PORT_TX_RESET, MVNETA_PORT_TX_DMA_RESET);
884
885 /* Disable Legacy WRR, Disable EJP, Release from reset */
886 mvreg_write(pp, MVNETA_TXQ_CMD_1, 0);
887 for (queue = 0; queue < txq_number; queue++) {
888 mvreg_write(pp, MVETH_TXQ_TOKEN_COUNT_REG(queue), 0);
889 mvreg_write(pp, MVETH_TXQ_TOKEN_CFG_REG(queue), 0);
890 }
891
892 mvreg_write(pp, MVNETA_PORT_TX_RESET, 0);
893 mvreg_write(pp, MVNETA_PORT_RX_RESET, 0);
894
895 /* Set Port Acceleration Mode */
896 val = MVNETA_ACC_MODE_EXT;
897 mvreg_write(pp, MVNETA_ACC_MODE, val);
898
899 /* Update val of portCfg register accordingly with all RxQueue types */
900 val = MVNETA_PORT_CONFIG_DEFL_VALUE(rxq_def);
901 mvreg_write(pp, MVNETA_PORT_CONFIG, val);
902
903 val = 0;
904 mvreg_write(pp, MVNETA_PORT_CONFIG_EXTEND, val);
905 mvreg_write(pp, MVNETA_RX_MIN_FRAME_SIZE, 64);
906
907 /* Build PORT_SDMA_CONFIG_REG */
908 val = 0;
909
910 /* Default burst size */
911 val |= MVNETA_TX_BRST_SZ_MASK(MVNETA_SDMA_BRST_SIZE_16);
912 val |= MVNETA_RX_BRST_SZ_MASK(MVNETA_SDMA_BRST_SIZE_16);
913
914 val |= (MVNETA_RX_NO_DATA_SWAP | MVNETA_TX_NO_DATA_SWAP |
915 MVNETA_NO_DESC_SWAP);
916
917 /* Assign port SDMA configuration */
918 mvreg_write(pp, MVNETA_SDMA_CONFIG, val);
919
Thomas Petazzoni71408602013-09-04 16:21:18 +0200920 /* Disable PHY polling in hardware, since we're using the
921 * kernel phylib to do this.
922 */
923 val = mvreg_read(pp, MVNETA_UNIT_CONTROL);
924 val &= ~MVNETA_PHY_POLLING_ENABLE;
925 mvreg_write(pp, MVNETA_UNIT_CONTROL, val);
926
Thomas Petazzonic5aff182012-08-17 14:04:28 +0300927 mvneta_set_ucast_table(pp, -1);
928 mvneta_set_special_mcast_table(pp, -1);
929 mvneta_set_other_mcast_table(pp, -1);
930
931 /* Set port interrupt enable register - default enable all */
932 mvreg_write(pp, MVNETA_INTR_ENABLE,
933 (MVNETA_RXQ_INTR_ENABLE_ALL_MASK
934 | MVNETA_TXQ_INTR_ENABLE_ALL_MASK));
935}
936
937/* Set max sizes for tx queues */
938static void mvneta_txq_max_tx_size_set(struct mvneta_port *pp, int max_tx_size)
939
940{
941 u32 val, size, mtu;
942 int queue;
943
944 mtu = max_tx_size * 8;
945 if (mtu > MVNETA_TX_MTU_MAX)
946 mtu = MVNETA_TX_MTU_MAX;
947
948 /* Set MTU */
949 val = mvreg_read(pp, MVNETA_TX_MTU);
950 val &= ~MVNETA_TX_MTU_MAX;
951 val |= mtu;
952 mvreg_write(pp, MVNETA_TX_MTU, val);
953
954 /* TX token size and all TXQs token size must be larger that MTU */
955 val = mvreg_read(pp, MVNETA_TX_TOKEN_SIZE);
956
957 size = val & MVNETA_TX_TOKEN_SIZE_MAX;
958 if (size < mtu) {
959 size = mtu;
960 val &= ~MVNETA_TX_TOKEN_SIZE_MAX;
961 val |= size;
962 mvreg_write(pp, MVNETA_TX_TOKEN_SIZE, val);
963 }
964 for (queue = 0; queue < txq_number; queue++) {
965 val = mvreg_read(pp, MVNETA_TXQ_TOKEN_SIZE_REG(queue));
966
967 size = val & MVNETA_TXQ_TOKEN_SIZE_MAX;
968 if (size < mtu) {
969 size = mtu;
970 val &= ~MVNETA_TXQ_TOKEN_SIZE_MAX;
971 val |= size;
972 mvreg_write(pp, MVNETA_TXQ_TOKEN_SIZE_REG(queue), val);
973 }
974 }
975}
976
977/* Set unicast address */
978static void mvneta_set_ucast_addr(struct mvneta_port *pp, u8 last_nibble,
979 int queue)
980{
981 unsigned int unicast_reg;
982 unsigned int tbl_offset;
983 unsigned int reg_offset;
984
985 /* Locate the Unicast table entry */
986 last_nibble = (0xf & last_nibble);
987
988 /* offset from unicast tbl base */
989 tbl_offset = (last_nibble / 4) * 4;
990
991 /* offset within the above reg */
992 reg_offset = last_nibble % 4;
993
994 unicast_reg = mvreg_read(pp, (MVNETA_DA_FILT_UCAST_BASE + tbl_offset));
995
996 if (queue == -1) {
997 /* Clear accepts frame bit at specified unicast DA tbl entry */
998 unicast_reg &= ~(0xff << (8 * reg_offset));
999 } else {
1000 unicast_reg &= ~(0xff << (8 * reg_offset));
1001 unicast_reg |= ((0x01 | (queue << 1)) << (8 * reg_offset));
1002 }
1003
1004 mvreg_write(pp, (MVNETA_DA_FILT_UCAST_BASE + tbl_offset), unicast_reg);
1005}
1006
1007/* Set mac address */
1008static void mvneta_mac_addr_set(struct mvneta_port *pp, unsigned char *addr,
1009 int queue)
1010{
1011 unsigned int mac_h;
1012 unsigned int mac_l;
1013
1014 if (queue != -1) {
1015 mac_l = (addr[4] << 8) | (addr[5]);
1016 mac_h = (addr[0] << 24) | (addr[1] << 16) |
1017 (addr[2] << 8) | (addr[3] << 0);
1018
1019 mvreg_write(pp, MVNETA_MAC_ADDR_LOW, mac_l);
1020 mvreg_write(pp, MVNETA_MAC_ADDR_HIGH, mac_h);
1021 }
1022
1023 /* Accept frames of this address */
1024 mvneta_set_ucast_addr(pp, addr[5], queue);
1025}
1026
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001027/* Set the number of packets that will be received before RX interrupt
1028 * will be generated by HW.
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001029 */
1030static void mvneta_rx_pkts_coal_set(struct mvneta_port *pp,
1031 struct mvneta_rx_queue *rxq, u32 value)
1032{
1033 mvreg_write(pp, MVNETA_RXQ_THRESHOLD_REG(rxq->id),
1034 value | MVNETA_RXQ_NON_OCCUPIED(0));
1035 rxq->pkts_coal = value;
1036}
1037
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001038/* Set the time delay in usec before RX interrupt will be generated by
1039 * HW.
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001040 */
1041static void mvneta_rx_time_coal_set(struct mvneta_port *pp,
1042 struct mvneta_rx_queue *rxq, u32 value)
1043{
Thomas Petazzoni189dd622012-11-19 14:15:25 +01001044 u32 val;
1045 unsigned long clk_rate;
1046
1047 clk_rate = clk_get_rate(pp->clk);
1048 val = (clk_rate / 1000000) * value;
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001049
1050 mvreg_write(pp, MVNETA_RXQ_TIME_COAL_REG(rxq->id), val);
1051 rxq->time_coal = value;
1052}
1053
1054/* Set threshold for TX_DONE pkts coalescing */
1055static void mvneta_tx_done_pkts_coal_set(struct mvneta_port *pp,
1056 struct mvneta_tx_queue *txq, u32 value)
1057{
1058 u32 val;
1059
1060 val = mvreg_read(pp, MVNETA_TXQ_SIZE_REG(txq->id));
1061
1062 val &= ~MVNETA_TXQ_SENT_THRESH_ALL_MASK;
1063 val |= MVNETA_TXQ_SENT_THRESH_MASK(value);
1064
1065 mvreg_write(pp, MVNETA_TXQ_SIZE_REG(txq->id), val);
1066
1067 txq->done_pkts_coal = value;
1068}
1069
1070/* Trigger tx done timer in MVNETA_TX_DONE_TIMER_PERIOD msecs */
1071static void mvneta_add_tx_done_timer(struct mvneta_port *pp)
1072{
1073 if (test_and_set_bit(MVNETA_F_TX_DONE_TIMER_BIT, &pp->flags) == 0) {
1074 pp->tx_done_timer.expires = jiffies +
1075 msecs_to_jiffies(MVNETA_TX_DONE_TIMER_PERIOD);
1076 add_timer(&pp->tx_done_timer);
1077 }
1078}
1079
1080
1081/* Handle rx descriptor fill by setting buf_cookie and buf_phys_addr */
1082static void mvneta_rx_desc_fill(struct mvneta_rx_desc *rx_desc,
1083 u32 phys_addr, u32 cookie)
1084{
1085 rx_desc->buf_cookie = cookie;
1086 rx_desc->buf_phys_addr = phys_addr;
1087}
1088
1089/* Decrement sent descriptors counter */
1090static void mvneta_txq_sent_desc_dec(struct mvneta_port *pp,
1091 struct mvneta_tx_queue *txq,
1092 int sent_desc)
1093{
1094 u32 val;
1095
1096 /* Only 255 TX descriptors can be updated at once */
1097 while (sent_desc > 0xff) {
1098 val = 0xff << MVNETA_TXQ_DEC_SENT_SHIFT;
1099 mvreg_write(pp, MVNETA_TXQ_UPDATE_REG(txq->id), val);
1100 sent_desc = sent_desc - 0xff;
1101 }
1102
1103 val = sent_desc << MVNETA_TXQ_DEC_SENT_SHIFT;
1104 mvreg_write(pp, MVNETA_TXQ_UPDATE_REG(txq->id), val);
1105}
1106
1107/* Get number of TX descriptors already sent by HW */
1108static int mvneta_txq_sent_desc_num_get(struct mvneta_port *pp,
1109 struct mvneta_tx_queue *txq)
1110{
1111 u32 val;
1112 int sent_desc;
1113
1114 val = mvreg_read(pp, MVNETA_TXQ_STATUS_REG(txq->id));
1115 sent_desc = (val & MVNETA_TXQ_SENT_DESC_MASK) >>
1116 MVNETA_TXQ_SENT_DESC_SHIFT;
1117
1118 return sent_desc;
1119}
1120
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001121/* Get number of sent descriptors and decrement counter.
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001122 * The number of sent descriptors is returned.
1123 */
1124static int mvneta_txq_sent_desc_proc(struct mvneta_port *pp,
1125 struct mvneta_tx_queue *txq)
1126{
1127 int sent_desc;
1128
1129 /* Get number of sent descriptors */
1130 sent_desc = mvneta_txq_sent_desc_num_get(pp, txq);
1131
1132 /* Decrement sent descriptors counter */
1133 if (sent_desc)
1134 mvneta_txq_sent_desc_dec(pp, txq, sent_desc);
1135
1136 return sent_desc;
1137}
1138
1139/* Set TXQ descriptors fields relevant for CSUM calculation */
1140static u32 mvneta_txq_desc_csum(int l3_offs, int l3_proto,
1141 int ip_hdr_len, int l4_proto)
1142{
1143 u32 command;
1144
1145 /* Fields: L3_offset, IP_hdrlen, L3_type, G_IPv4_chk,
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001146 * G_L4_chk, L4_type; required only for checksum
1147 * calculation
1148 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001149 command = l3_offs << MVNETA_TX_L3_OFF_SHIFT;
1150 command |= ip_hdr_len << MVNETA_TX_IP_HLEN_SHIFT;
1151
1152 if (l3_proto == swab16(ETH_P_IP))
1153 command |= MVNETA_TXD_IP_CSUM;
1154 else
1155 command |= MVNETA_TX_L3_IP6;
1156
1157 if (l4_proto == IPPROTO_TCP)
1158 command |= MVNETA_TX_L4_CSUM_FULL;
1159 else if (l4_proto == IPPROTO_UDP)
1160 command |= MVNETA_TX_L4_UDP | MVNETA_TX_L4_CSUM_FULL;
1161 else
1162 command |= MVNETA_TX_L4_CSUM_NOT;
1163
1164 return command;
1165}
1166
1167
1168/* Display more error info */
1169static void mvneta_rx_error(struct mvneta_port *pp,
1170 struct mvneta_rx_desc *rx_desc)
1171{
1172 u32 status = rx_desc->status;
1173
1174 if (!mvneta_rxq_desc_is_first_last(rx_desc)) {
1175 netdev_err(pp->dev,
1176 "bad rx status %08x (buffer oversize), size=%d\n",
1177 rx_desc->status, rx_desc->data_size);
1178 return;
1179 }
1180
1181 switch (status & MVNETA_RXD_ERR_CODE_MASK) {
1182 case MVNETA_RXD_ERR_CRC:
1183 netdev_err(pp->dev, "bad rx status %08x (crc error), size=%d\n",
1184 status, rx_desc->data_size);
1185 break;
1186 case MVNETA_RXD_ERR_OVERRUN:
1187 netdev_err(pp->dev, "bad rx status %08x (overrun error), size=%d\n",
1188 status, rx_desc->data_size);
1189 break;
1190 case MVNETA_RXD_ERR_LEN:
1191 netdev_err(pp->dev, "bad rx status %08x (max frame length error), size=%d\n",
1192 status, rx_desc->data_size);
1193 break;
1194 case MVNETA_RXD_ERR_RESOURCE:
1195 netdev_err(pp->dev, "bad rx status %08x (resource error), size=%d\n",
1196 status, rx_desc->data_size);
1197 break;
1198 }
1199}
1200
1201/* Handle RX checksum offload */
1202static void mvneta_rx_csum(struct mvneta_port *pp,
1203 struct mvneta_rx_desc *rx_desc,
1204 struct sk_buff *skb)
1205{
1206 if ((rx_desc->status & MVNETA_RXD_L3_IP4) &&
1207 (rx_desc->status & MVNETA_RXD_L4_CSUM_OK)) {
1208 skb->csum = 0;
1209 skb->ip_summed = CHECKSUM_UNNECESSARY;
1210 return;
1211 }
1212
1213 skb->ip_summed = CHECKSUM_NONE;
1214}
1215
1216/* Return tx queue pointer (find last set bit) according to causeTxDone reg */
1217static struct mvneta_tx_queue *mvneta_tx_done_policy(struct mvneta_port *pp,
1218 u32 cause)
1219{
1220 int queue = fls(cause) - 1;
1221
1222 return (queue < 0 || queue >= txq_number) ? NULL : &pp->txqs[queue];
1223}
1224
1225/* Free tx queue skbuffs */
1226static void mvneta_txq_bufs_free(struct mvneta_port *pp,
1227 struct mvneta_tx_queue *txq, int num)
1228{
1229 int i;
1230
1231 for (i = 0; i < num; i++) {
1232 struct mvneta_tx_desc *tx_desc = txq->descs +
1233 txq->txq_get_index;
1234 struct sk_buff *skb = txq->tx_skb[txq->txq_get_index];
1235
1236 mvneta_txq_inc_get(txq);
1237
1238 if (!skb)
1239 continue;
1240
1241 dma_unmap_single(pp->dev->dev.parent, tx_desc->buf_phys_addr,
1242 tx_desc->data_size, DMA_TO_DEVICE);
1243 dev_kfree_skb_any(skb);
1244 }
1245}
1246
1247/* Handle end of transmission */
1248static int mvneta_txq_done(struct mvneta_port *pp,
1249 struct mvneta_tx_queue *txq)
1250{
1251 struct netdev_queue *nq = netdev_get_tx_queue(pp->dev, txq->id);
1252 int tx_done;
1253
1254 tx_done = mvneta_txq_sent_desc_proc(pp, txq);
1255 if (tx_done == 0)
1256 return tx_done;
1257 mvneta_txq_bufs_free(pp, txq, tx_done);
1258
1259 txq->count -= tx_done;
1260
1261 if (netif_tx_queue_stopped(nq)) {
1262 if (txq->size - txq->count >= MAX_SKB_FRAGS + 1)
1263 netif_tx_wake_queue(nq);
1264 }
1265
1266 return tx_done;
1267}
1268
1269/* Refill processing */
1270static int mvneta_rx_refill(struct mvneta_port *pp,
1271 struct mvneta_rx_desc *rx_desc)
1272
1273{
1274 dma_addr_t phys_addr;
1275 struct sk_buff *skb;
1276
1277 skb = netdev_alloc_skb(pp->dev, pp->pkt_size);
1278 if (!skb)
1279 return -ENOMEM;
1280
1281 phys_addr = dma_map_single(pp->dev->dev.parent, skb->head,
1282 MVNETA_RX_BUF_SIZE(pp->pkt_size),
1283 DMA_FROM_DEVICE);
1284 if (unlikely(dma_mapping_error(pp->dev->dev.parent, phys_addr))) {
1285 dev_kfree_skb(skb);
1286 return -ENOMEM;
1287 }
1288
1289 mvneta_rx_desc_fill(rx_desc, phys_addr, (u32)skb);
1290
1291 return 0;
1292}
1293
1294/* Handle tx checksum */
1295static u32 mvneta_skb_tx_csum(struct mvneta_port *pp, struct sk_buff *skb)
1296{
1297 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1298 int ip_hdr_len = 0;
1299 u8 l4_proto;
1300
1301 if (skb->protocol == htons(ETH_P_IP)) {
1302 struct iphdr *ip4h = ip_hdr(skb);
1303
1304 /* Calculate IPv4 checksum and L4 checksum */
1305 ip_hdr_len = ip4h->ihl;
1306 l4_proto = ip4h->protocol;
1307 } else if (skb->protocol == htons(ETH_P_IPV6)) {
1308 struct ipv6hdr *ip6h = ipv6_hdr(skb);
1309
1310 /* Read l4_protocol from one of IPv6 extra headers */
1311 if (skb_network_header_len(skb) > 0)
1312 ip_hdr_len = (skb_network_header_len(skb) >> 2);
1313 l4_proto = ip6h->nexthdr;
1314 } else
1315 return MVNETA_TX_L4_CSUM_NOT;
1316
1317 return mvneta_txq_desc_csum(skb_network_offset(skb),
1318 skb->protocol, ip_hdr_len, l4_proto);
1319 }
1320
1321 return MVNETA_TX_L4_CSUM_NOT;
1322}
1323
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001324/* Returns rx queue pointer (find last set bit) according to causeRxTx
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001325 * value
1326 */
1327static struct mvneta_rx_queue *mvneta_rx_policy(struct mvneta_port *pp,
1328 u32 cause)
1329{
1330 int queue = fls(cause >> 8) - 1;
1331
1332 return (queue < 0 || queue >= rxq_number) ? NULL : &pp->rxqs[queue];
1333}
1334
1335/* Drop packets received by the RXQ and free buffers */
1336static void mvneta_rxq_drop_pkts(struct mvneta_port *pp,
1337 struct mvneta_rx_queue *rxq)
1338{
1339 int rx_done, i;
1340
1341 rx_done = mvneta_rxq_busy_desc_num_get(pp, rxq);
1342 for (i = 0; i < rxq->size; i++) {
1343 struct mvneta_rx_desc *rx_desc = rxq->descs + i;
1344 struct sk_buff *skb = (struct sk_buff *)rx_desc->buf_cookie;
1345
1346 dev_kfree_skb_any(skb);
1347 dma_unmap_single(pp->dev->dev.parent, rx_desc->buf_phys_addr,
1348 rx_desc->data_size, DMA_FROM_DEVICE);
1349 }
1350
1351 if (rx_done)
1352 mvneta_rxq_desc_num_update(pp, rxq, rx_done, rx_done);
1353}
1354
1355/* Main rx processing */
1356static int mvneta_rx(struct mvneta_port *pp, int rx_todo,
1357 struct mvneta_rx_queue *rxq)
1358{
1359 struct net_device *dev = pp->dev;
1360 int rx_done, rx_filled;
1361
1362 /* Get number of received packets */
1363 rx_done = mvneta_rxq_busy_desc_num_get(pp, rxq);
1364
1365 if (rx_todo > rx_done)
1366 rx_todo = rx_done;
1367
1368 rx_done = 0;
1369 rx_filled = 0;
1370
1371 /* Fairness NAPI loop */
1372 while (rx_done < rx_todo) {
1373 struct mvneta_rx_desc *rx_desc = mvneta_rxq_next_desc_get(rxq);
1374 struct sk_buff *skb;
1375 u32 rx_status;
1376 int rx_bytes, err;
1377
1378 prefetch(rx_desc);
1379 rx_done++;
1380 rx_filled++;
1381 rx_status = rx_desc->status;
1382 skb = (struct sk_buff *)rx_desc->buf_cookie;
1383
1384 if (!mvneta_rxq_desc_is_first_last(rx_desc) ||
1385 (rx_status & MVNETA_RXD_ERR_SUMMARY)) {
1386 dev->stats.rx_errors++;
1387 mvneta_rx_error(pp, rx_desc);
1388 mvneta_rx_desc_fill(rx_desc, rx_desc->buf_phys_addr,
1389 (u32)skb);
1390 continue;
1391 }
1392
1393 dma_unmap_single(pp->dev->dev.parent, rx_desc->buf_phys_addr,
1394 rx_desc->data_size, DMA_FROM_DEVICE);
1395
1396 rx_bytes = rx_desc->data_size -
1397 (ETH_FCS_LEN + MVNETA_MH_SIZE);
1398 u64_stats_update_begin(&pp->rx_stats.syncp);
1399 pp->rx_stats.packets++;
1400 pp->rx_stats.bytes += rx_bytes;
1401 u64_stats_update_end(&pp->rx_stats.syncp);
1402
1403 /* Linux processing */
1404 skb_reserve(skb, MVNETA_MH_SIZE);
1405 skb_put(skb, rx_bytes);
1406
1407 skb->protocol = eth_type_trans(skb, dev);
1408
1409 mvneta_rx_csum(pp, rx_desc, skb);
1410
1411 napi_gro_receive(&pp->napi, skb);
1412
1413 /* Refill processing */
1414 err = mvneta_rx_refill(pp, rx_desc);
1415 if (err) {
1416 netdev_err(pp->dev, "Linux processing - Can't refill\n");
1417 rxq->missed++;
1418 rx_filled--;
1419 }
1420 }
1421
1422 /* Update rxq management counters */
1423 mvneta_rxq_desc_num_update(pp, rxq, rx_done, rx_filled);
1424
1425 return rx_done;
1426}
1427
1428/* Handle tx fragmentation processing */
1429static int mvneta_tx_frag_process(struct mvneta_port *pp, struct sk_buff *skb,
1430 struct mvneta_tx_queue *txq)
1431{
1432 struct mvneta_tx_desc *tx_desc;
1433 int i;
1434
1435 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1436 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1437 void *addr = page_address(frag->page.p) + frag->page_offset;
1438
1439 tx_desc = mvneta_txq_next_desc_get(txq);
1440 tx_desc->data_size = frag->size;
1441
1442 tx_desc->buf_phys_addr =
1443 dma_map_single(pp->dev->dev.parent, addr,
1444 tx_desc->data_size, DMA_TO_DEVICE);
1445
1446 if (dma_mapping_error(pp->dev->dev.parent,
1447 tx_desc->buf_phys_addr)) {
1448 mvneta_txq_desc_put(txq);
1449 goto error;
1450 }
1451
1452 if (i == (skb_shinfo(skb)->nr_frags - 1)) {
1453 /* Last descriptor */
1454 tx_desc->command = MVNETA_TXD_L_DESC | MVNETA_TXD_Z_PAD;
1455
1456 txq->tx_skb[txq->txq_put_index] = skb;
1457
1458 mvneta_txq_inc_put(txq);
1459 } else {
1460 /* Descriptor in the middle: Not First, Not Last */
1461 tx_desc->command = 0;
1462
1463 txq->tx_skb[txq->txq_put_index] = NULL;
1464 mvneta_txq_inc_put(txq);
1465 }
1466 }
1467
1468 return 0;
1469
1470error:
1471 /* Release all descriptors that were used to map fragments of
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001472 * this packet, as well as the corresponding DMA mappings
1473 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001474 for (i = i - 1; i >= 0; i--) {
1475 tx_desc = txq->descs + i;
1476 dma_unmap_single(pp->dev->dev.parent,
1477 tx_desc->buf_phys_addr,
1478 tx_desc->data_size,
1479 DMA_TO_DEVICE);
1480 mvneta_txq_desc_put(txq);
1481 }
1482
1483 return -ENOMEM;
1484}
1485
1486/* Main tx processing */
1487static int mvneta_tx(struct sk_buff *skb, struct net_device *dev)
1488{
1489 struct mvneta_port *pp = netdev_priv(dev);
Willy Tarreauee40a112013-04-11 23:00:37 +02001490 u16 txq_id = skb_get_queue_mapping(skb);
1491 struct mvneta_tx_queue *txq = &pp->txqs[txq_id];
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001492 struct mvneta_tx_desc *tx_desc;
1493 struct netdev_queue *nq;
1494 int frags = 0;
1495 u32 tx_cmd;
1496
1497 if (!netif_running(dev))
1498 goto out;
1499
1500 frags = skb_shinfo(skb)->nr_frags + 1;
Willy Tarreauee40a112013-04-11 23:00:37 +02001501 nq = netdev_get_tx_queue(dev, txq_id);
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001502
1503 /* Get a descriptor for the first part of the packet */
1504 tx_desc = mvneta_txq_next_desc_get(txq);
1505
1506 tx_cmd = mvneta_skb_tx_csum(pp, skb);
1507
1508 tx_desc->data_size = skb_headlen(skb);
1509
1510 tx_desc->buf_phys_addr = dma_map_single(dev->dev.parent, skb->data,
1511 tx_desc->data_size,
1512 DMA_TO_DEVICE);
1513 if (unlikely(dma_mapping_error(dev->dev.parent,
1514 tx_desc->buf_phys_addr))) {
1515 mvneta_txq_desc_put(txq);
1516 frags = 0;
1517 goto out;
1518 }
1519
1520 if (frags == 1) {
1521 /* First and Last descriptor */
1522 tx_cmd |= MVNETA_TXD_FLZ_DESC;
1523 tx_desc->command = tx_cmd;
1524 txq->tx_skb[txq->txq_put_index] = skb;
1525 mvneta_txq_inc_put(txq);
1526 } else {
1527 /* First but not Last */
1528 tx_cmd |= MVNETA_TXD_F_DESC;
1529 txq->tx_skb[txq->txq_put_index] = NULL;
1530 mvneta_txq_inc_put(txq);
1531 tx_desc->command = tx_cmd;
1532 /* Continue with other skb fragments */
1533 if (mvneta_tx_frag_process(pp, skb, txq)) {
1534 dma_unmap_single(dev->dev.parent,
1535 tx_desc->buf_phys_addr,
1536 tx_desc->data_size,
1537 DMA_TO_DEVICE);
1538 mvneta_txq_desc_put(txq);
1539 frags = 0;
1540 goto out;
1541 }
1542 }
1543
1544 txq->count += frags;
1545 mvneta_txq_pend_desc_add(pp, txq, frags);
1546
1547 if (txq->size - txq->count < MAX_SKB_FRAGS + 1)
1548 netif_tx_stop_queue(nq);
1549
1550out:
1551 if (frags > 0) {
1552 u64_stats_update_begin(&pp->tx_stats.syncp);
1553 pp->tx_stats.packets++;
1554 pp->tx_stats.bytes += skb->len;
1555 u64_stats_update_end(&pp->tx_stats.syncp);
1556
1557 } else {
1558 dev->stats.tx_dropped++;
1559 dev_kfree_skb_any(skb);
1560 }
1561
1562 if (txq->count >= MVNETA_TXDONE_COAL_PKTS)
1563 mvneta_txq_done(pp, txq);
1564
1565 /* If after calling mvneta_txq_done, count equals
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001566 * frags, we need to set the timer
1567 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001568 if (txq->count == frags && frags > 0)
1569 mvneta_add_tx_done_timer(pp);
1570
1571 return NETDEV_TX_OK;
1572}
1573
1574
1575/* Free tx resources, when resetting a port */
1576static void mvneta_txq_done_force(struct mvneta_port *pp,
1577 struct mvneta_tx_queue *txq)
1578
1579{
1580 int tx_done = txq->count;
1581
1582 mvneta_txq_bufs_free(pp, txq, tx_done);
1583
1584 /* reset txq */
1585 txq->count = 0;
1586 txq->txq_put_index = 0;
1587 txq->txq_get_index = 0;
1588}
1589
1590/* handle tx done - called from tx done timer callback */
1591static u32 mvneta_tx_done_gbe(struct mvneta_port *pp, u32 cause_tx_done,
1592 int *tx_todo)
1593{
1594 struct mvneta_tx_queue *txq;
1595 u32 tx_done = 0;
1596 struct netdev_queue *nq;
1597
1598 *tx_todo = 0;
1599 while (cause_tx_done != 0) {
1600 txq = mvneta_tx_done_policy(pp, cause_tx_done);
1601 if (!txq)
1602 break;
1603
1604 nq = netdev_get_tx_queue(pp->dev, txq->id);
1605 __netif_tx_lock(nq, smp_processor_id());
1606
1607 if (txq->count) {
1608 tx_done += mvneta_txq_done(pp, txq);
1609 *tx_todo += txq->count;
1610 }
1611
1612 __netif_tx_unlock(nq);
1613 cause_tx_done &= ~((1 << txq->id));
1614 }
1615
1616 return tx_done;
1617}
1618
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001619/* Compute crc8 of the specified address, using a unique algorithm ,
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001620 * according to hw spec, different than generic crc8 algorithm
1621 */
1622static int mvneta_addr_crc(unsigned char *addr)
1623{
1624 int crc = 0;
1625 int i;
1626
1627 for (i = 0; i < ETH_ALEN; i++) {
1628 int j;
1629
1630 crc = (crc ^ addr[i]) << 8;
1631 for (j = 7; j >= 0; j--) {
1632 if (crc & (0x100 << j))
1633 crc ^= 0x107 << j;
1634 }
1635 }
1636
1637 return crc;
1638}
1639
1640/* This method controls the net device special MAC multicast support.
1641 * The Special Multicast Table for MAC addresses supports MAC of the form
1642 * 0x01-00-5E-00-00-XX (where XX is between 0x00 and 0xFF).
1643 * The MAC DA[7:0] bits are used as a pointer to the Special Multicast
1644 * Table entries in the DA-Filter table. This method set the Special
1645 * Multicast Table appropriate entry.
1646 */
1647static void mvneta_set_special_mcast_addr(struct mvneta_port *pp,
1648 unsigned char last_byte,
1649 int queue)
1650{
1651 unsigned int smc_table_reg;
1652 unsigned int tbl_offset;
1653 unsigned int reg_offset;
1654
1655 /* Register offset from SMC table base */
1656 tbl_offset = (last_byte / 4);
1657 /* Entry offset within the above reg */
1658 reg_offset = last_byte % 4;
1659
1660 smc_table_reg = mvreg_read(pp, (MVNETA_DA_FILT_SPEC_MCAST
1661 + tbl_offset * 4));
1662
1663 if (queue == -1)
1664 smc_table_reg &= ~(0xff << (8 * reg_offset));
1665 else {
1666 smc_table_reg &= ~(0xff << (8 * reg_offset));
1667 smc_table_reg |= ((0x01 | (queue << 1)) << (8 * reg_offset));
1668 }
1669
1670 mvreg_write(pp, MVNETA_DA_FILT_SPEC_MCAST + tbl_offset * 4,
1671 smc_table_reg);
1672}
1673
1674/* This method controls the network device Other MAC multicast support.
1675 * The Other Multicast Table is used for multicast of another type.
1676 * A CRC-8 is used as an index to the Other Multicast Table entries
1677 * in the DA-Filter table.
1678 * The method gets the CRC-8 value from the calling routine and
1679 * sets the Other Multicast Table appropriate entry according to the
1680 * specified CRC-8 .
1681 */
1682static void mvneta_set_other_mcast_addr(struct mvneta_port *pp,
1683 unsigned char crc8,
1684 int queue)
1685{
1686 unsigned int omc_table_reg;
1687 unsigned int tbl_offset;
1688 unsigned int reg_offset;
1689
1690 tbl_offset = (crc8 / 4) * 4; /* Register offset from OMC table base */
1691 reg_offset = crc8 % 4; /* Entry offset within the above reg */
1692
1693 omc_table_reg = mvreg_read(pp, MVNETA_DA_FILT_OTH_MCAST + tbl_offset);
1694
1695 if (queue == -1) {
1696 /* Clear accepts frame bit at specified Other DA table entry */
1697 omc_table_reg &= ~(0xff << (8 * reg_offset));
1698 } else {
1699 omc_table_reg &= ~(0xff << (8 * reg_offset));
1700 omc_table_reg |= ((0x01 | (queue << 1)) << (8 * reg_offset));
1701 }
1702
1703 mvreg_write(pp, MVNETA_DA_FILT_OTH_MCAST + tbl_offset, omc_table_reg);
1704}
1705
1706/* The network device supports multicast using two tables:
1707 * 1) Special Multicast Table for MAC addresses of the form
1708 * 0x01-00-5E-00-00-XX (where XX is between 0x00 and 0xFF).
1709 * The MAC DA[7:0] bits are used as a pointer to the Special Multicast
1710 * Table entries in the DA-Filter table.
1711 * 2) Other Multicast Table for multicast of another type. A CRC-8 value
1712 * is used as an index to the Other Multicast Table entries in the
1713 * DA-Filter table.
1714 */
1715static int mvneta_mcast_addr_set(struct mvneta_port *pp, unsigned char *p_addr,
1716 int queue)
1717{
1718 unsigned char crc_result = 0;
1719
1720 if (memcmp(p_addr, "\x01\x00\x5e\x00\x00", 5) == 0) {
1721 mvneta_set_special_mcast_addr(pp, p_addr[5], queue);
1722 return 0;
1723 }
1724
1725 crc_result = mvneta_addr_crc(p_addr);
1726 if (queue == -1) {
1727 if (pp->mcast_count[crc_result] == 0) {
1728 netdev_info(pp->dev, "No valid Mcast for crc8=0x%02x\n",
1729 crc_result);
1730 return -EINVAL;
1731 }
1732
1733 pp->mcast_count[crc_result]--;
1734 if (pp->mcast_count[crc_result] != 0) {
1735 netdev_info(pp->dev,
1736 "After delete there are %d valid Mcast for crc8=0x%02x\n",
1737 pp->mcast_count[crc_result], crc_result);
1738 return -EINVAL;
1739 }
1740 } else
1741 pp->mcast_count[crc_result]++;
1742
1743 mvneta_set_other_mcast_addr(pp, crc_result, queue);
1744
1745 return 0;
1746}
1747
1748/* Configure Fitering mode of Ethernet port */
1749static void mvneta_rx_unicast_promisc_set(struct mvneta_port *pp,
1750 int is_promisc)
1751{
1752 u32 port_cfg_reg, val;
1753
1754 port_cfg_reg = mvreg_read(pp, MVNETA_PORT_CONFIG);
1755
1756 val = mvreg_read(pp, MVNETA_TYPE_PRIO);
1757
1758 /* Set / Clear UPM bit in port configuration register */
1759 if (is_promisc) {
1760 /* Accept all Unicast addresses */
1761 port_cfg_reg |= MVNETA_UNI_PROMISC_MODE;
1762 val |= MVNETA_FORCE_UNI;
1763 mvreg_write(pp, MVNETA_MAC_ADDR_LOW, 0xffff);
1764 mvreg_write(pp, MVNETA_MAC_ADDR_HIGH, 0xffffffff);
1765 } else {
1766 /* Reject all Unicast addresses */
1767 port_cfg_reg &= ~MVNETA_UNI_PROMISC_MODE;
1768 val &= ~MVNETA_FORCE_UNI;
1769 }
1770
1771 mvreg_write(pp, MVNETA_PORT_CONFIG, port_cfg_reg);
1772 mvreg_write(pp, MVNETA_TYPE_PRIO, val);
1773}
1774
1775/* register unicast and multicast addresses */
1776static void mvneta_set_rx_mode(struct net_device *dev)
1777{
1778 struct mvneta_port *pp = netdev_priv(dev);
1779 struct netdev_hw_addr *ha;
1780
1781 if (dev->flags & IFF_PROMISC) {
1782 /* Accept all: Multicast + Unicast */
1783 mvneta_rx_unicast_promisc_set(pp, 1);
1784 mvneta_set_ucast_table(pp, rxq_def);
1785 mvneta_set_special_mcast_table(pp, rxq_def);
1786 mvneta_set_other_mcast_table(pp, rxq_def);
1787 } else {
1788 /* Accept single Unicast */
1789 mvneta_rx_unicast_promisc_set(pp, 0);
1790 mvneta_set_ucast_table(pp, -1);
1791 mvneta_mac_addr_set(pp, dev->dev_addr, rxq_def);
1792
1793 if (dev->flags & IFF_ALLMULTI) {
1794 /* Accept all multicast */
1795 mvneta_set_special_mcast_table(pp, rxq_def);
1796 mvneta_set_other_mcast_table(pp, rxq_def);
1797 } else {
1798 /* Accept only initialized multicast */
1799 mvneta_set_special_mcast_table(pp, -1);
1800 mvneta_set_other_mcast_table(pp, -1);
1801
1802 if (!netdev_mc_empty(dev)) {
1803 netdev_for_each_mc_addr(ha, dev) {
1804 mvneta_mcast_addr_set(pp, ha->addr,
1805 rxq_def);
1806 }
1807 }
1808 }
1809 }
1810}
1811
1812/* Interrupt handling - the callback for request_irq() */
1813static irqreturn_t mvneta_isr(int irq, void *dev_id)
1814{
1815 struct mvneta_port *pp = (struct mvneta_port *)dev_id;
1816
1817 /* Mask all interrupts */
1818 mvreg_write(pp, MVNETA_INTR_NEW_MASK, 0);
1819
1820 napi_schedule(&pp->napi);
1821
1822 return IRQ_HANDLED;
1823}
1824
1825/* NAPI handler
1826 * Bits 0 - 7 of the causeRxTx register indicate that are transmitted
1827 * packets on the corresponding TXQ (Bit 0 is for TX queue 1).
1828 * Bits 8 -15 of the cause Rx Tx register indicate that are received
1829 * packets on the corresponding RXQ (Bit 8 is for RX queue 0).
1830 * Each CPU has its own causeRxTx register
1831 */
1832static int mvneta_poll(struct napi_struct *napi, int budget)
1833{
1834 int rx_done = 0;
1835 u32 cause_rx_tx;
1836 unsigned long flags;
1837 struct mvneta_port *pp = netdev_priv(napi->dev);
1838
1839 if (!netif_running(pp->dev)) {
1840 napi_complete(napi);
1841 return rx_done;
1842 }
1843
1844 /* Read cause register */
1845 cause_rx_tx = mvreg_read(pp, MVNETA_INTR_NEW_CAUSE) &
1846 MVNETA_RX_INTR_MASK(rxq_number);
1847
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001848 /* For the case where the last mvneta_poll did not process all
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001849 * RX packets
1850 */
1851 cause_rx_tx |= pp->cause_rx_tx;
1852 if (rxq_number > 1) {
1853 while ((cause_rx_tx != 0) && (budget > 0)) {
1854 int count;
1855 struct mvneta_rx_queue *rxq;
1856 /* get rx queue number from cause_rx_tx */
1857 rxq = mvneta_rx_policy(pp, cause_rx_tx);
1858 if (!rxq)
1859 break;
1860
1861 /* process the packet in that rx queue */
1862 count = mvneta_rx(pp, budget, rxq);
1863 rx_done += count;
1864 budget -= count;
1865 if (budget > 0) {
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001866 /* set off the rx bit of the
1867 * corresponding bit in the cause rx
1868 * tx register, so that next iteration
1869 * will find the next rx queue where
1870 * packets are received on
1871 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001872 cause_rx_tx &= ~((1 << rxq->id) << 8);
1873 }
1874 }
1875 } else {
1876 rx_done = mvneta_rx(pp, budget, &pp->rxqs[rxq_def]);
1877 budget -= rx_done;
1878 }
1879
1880 if (budget > 0) {
1881 cause_rx_tx = 0;
1882 napi_complete(napi);
1883 local_irq_save(flags);
1884 mvreg_write(pp, MVNETA_INTR_NEW_MASK,
1885 MVNETA_RX_INTR_MASK(rxq_number));
1886 local_irq_restore(flags);
1887 }
1888
1889 pp->cause_rx_tx = cause_rx_tx;
1890 return rx_done;
1891}
1892
1893/* tx done timer callback */
1894static void mvneta_tx_done_timer_callback(unsigned long data)
1895{
1896 struct net_device *dev = (struct net_device *)data;
1897 struct mvneta_port *pp = netdev_priv(dev);
1898 int tx_done = 0, tx_todo = 0;
1899
1900 if (!netif_running(dev))
1901 return ;
1902
1903 clear_bit(MVNETA_F_TX_DONE_TIMER_BIT, &pp->flags);
1904
1905 tx_done = mvneta_tx_done_gbe(pp,
1906 (((1 << txq_number) - 1) &
1907 MVNETA_CAUSE_TXQ_SENT_DESC_ALL_MASK),
1908 &tx_todo);
1909 if (tx_todo > 0)
1910 mvneta_add_tx_done_timer(pp);
1911}
1912
1913/* Handle rxq fill: allocates rxq skbs; called when initializing a port */
1914static int mvneta_rxq_fill(struct mvneta_port *pp, struct mvneta_rx_queue *rxq,
1915 int num)
1916{
1917 struct net_device *dev = pp->dev;
1918 int i;
1919
1920 for (i = 0; i < num; i++) {
1921 struct sk_buff *skb;
1922 struct mvneta_rx_desc *rx_desc;
1923 unsigned long phys_addr;
1924
1925 skb = dev_alloc_skb(pp->pkt_size);
1926 if (!skb) {
1927 netdev_err(dev, "%s:rxq %d, %d of %d buffs filled\n",
1928 __func__, rxq->id, i, num);
1929 break;
1930 }
1931
1932 rx_desc = rxq->descs + i;
1933 memset(rx_desc, 0, sizeof(struct mvneta_rx_desc));
1934 phys_addr = dma_map_single(dev->dev.parent, skb->head,
1935 MVNETA_RX_BUF_SIZE(pp->pkt_size),
1936 DMA_FROM_DEVICE);
1937 if (unlikely(dma_mapping_error(dev->dev.parent, phys_addr))) {
1938 dev_kfree_skb(skb);
1939 break;
1940 }
1941
1942 mvneta_rx_desc_fill(rx_desc, phys_addr, (u32)skb);
1943 }
1944
1945 /* Add this number of RX descriptors as non occupied (ready to
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01001946 * get packets)
1947 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001948 mvneta_rxq_non_occup_desc_add(pp, rxq, i);
1949
1950 return i;
1951}
1952
1953/* Free all packets pending transmit from all TXQs and reset TX port */
1954static void mvneta_tx_reset(struct mvneta_port *pp)
1955{
1956 int queue;
1957
1958 /* free the skb's in the hal tx ring */
1959 for (queue = 0; queue < txq_number; queue++)
1960 mvneta_txq_done_force(pp, &pp->txqs[queue]);
1961
1962 mvreg_write(pp, MVNETA_PORT_TX_RESET, MVNETA_PORT_TX_DMA_RESET);
1963 mvreg_write(pp, MVNETA_PORT_TX_RESET, 0);
1964}
1965
1966static void mvneta_rx_reset(struct mvneta_port *pp)
1967{
1968 mvreg_write(pp, MVNETA_PORT_RX_RESET, MVNETA_PORT_RX_DMA_RESET);
1969 mvreg_write(pp, MVNETA_PORT_RX_RESET, 0);
1970}
1971
1972/* Rx/Tx queue initialization/cleanup methods */
1973
1974/* Create a specified RX queue */
1975static int mvneta_rxq_init(struct mvneta_port *pp,
1976 struct mvneta_rx_queue *rxq)
1977
1978{
1979 rxq->size = pp->rx_ring_size;
1980
1981 /* Allocate memory for RX descriptors */
1982 rxq->descs = dma_alloc_coherent(pp->dev->dev.parent,
1983 rxq->size * MVNETA_DESC_ALIGNED_SIZE,
1984 &rxq->descs_phys, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +00001985 if (rxq->descs == NULL)
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001986 return -ENOMEM;
Thomas Petazzonic5aff182012-08-17 14:04:28 +03001987
1988 BUG_ON(rxq->descs !=
1989 PTR_ALIGN(rxq->descs, MVNETA_CPU_D_CACHE_LINE_SIZE));
1990
1991 rxq->last_desc = rxq->size - 1;
1992
1993 /* Set Rx descriptors queue starting address */
1994 mvreg_write(pp, MVNETA_RXQ_BASE_ADDR_REG(rxq->id), rxq->descs_phys);
1995 mvreg_write(pp, MVNETA_RXQ_SIZE_REG(rxq->id), rxq->size);
1996
1997 /* Set Offset */
1998 mvneta_rxq_offset_set(pp, rxq, NET_SKB_PAD);
1999
2000 /* Set coalescing pkts and time */
2001 mvneta_rx_pkts_coal_set(pp, rxq, rxq->pkts_coal);
2002 mvneta_rx_time_coal_set(pp, rxq, rxq->time_coal);
2003
2004 /* Fill RXQ with buffers from RX pool */
2005 mvneta_rxq_buf_size_set(pp, rxq, MVNETA_RX_BUF_SIZE(pp->pkt_size));
2006 mvneta_rxq_bm_disable(pp, rxq);
2007 mvneta_rxq_fill(pp, rxq, rxq->size);
2008
2009 return 0;
2010}
2011
2012/* Cleanup Rx queue */
2013static void mvneta_rxq_deinit(struct mvneta_port *pp,
2014 struct mvneta_rx_queue *rxq)
2015{
2016 mvneta_rxq_drop_pkts(pp, rxq);
2017
2018 if (rxq->descs)
2019 dma_free_coherent(pp->dev->dev.parent,
2020 rxq->size * MVNETA_DESC_ALIGNED_SIZE,
2021 rxq->descs,
2022 rxq->descs_phys);
2023
2024 rxq->descs = NULL;
2025 rxq->last_desc = 0;
2026 rxq->next_desc_to_proc = 0;
2027 rxq->descs_phys = 0;
2028}
2029
2030/* Create and initialize a tx queue */
2031static int mvneta_txq_init(struct mvneta_port *pp,
2032 struct mvneta_tx_queue *txq)
2033{
2034 txq->size = pp->tx_ring_size;
2035
2036 /* Allocate memory for TX descriptors */
2037 txq->descs = dma_alloc_coherent(pp->dev->dev.parent,
2038 txq->size * MVNETA_DESC_ALIGNED_SIZE,
2039 &txq->descs_phys, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +00002040 if (txq->descs == NULL)
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002041 return -ENOMEM;
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002042
2043 /* Make sure descriptor address is cache line size aligned */
2044 BUG_ON(txq->descs !=
2045 PTR_ALIGN(txq->descs, MVNETA_CPU_D_CACHE_LINE_SIZE));
2046
2047 txq->last_desc = txq->size - 1;
2048
2049 /* Set maximum bandwidth for enabled TXQs */
2050 mvreg_write(pp, MVETH_TXQ_TOKEN_CFG_REG(txq->id), 0x03ffffff);
2051 mvreg_write(pp, MVETH_TXQ_TOKEN_COUNT_REG(txq->id), 0x3fffffff);
2052
2053 /* Set Tx descriptors queue starting address */
2054 mvreg_write(pp, MVNETA_TXQ_BASE_ADDR_REG(txq->id), txq->descs_phys);
2055 mvreg_write(pp, MVNETA_TXQ_SIZE_REG(txq->id), txq->size);
2056
2057 txq->tx_skb = kmalloc(txq->size * sizeof(*txq->tx_skb), GFP_KERNEL);
2058 if (txq->tx_skb == NULL) {
2059 dma_free_coherent(pp->dev->dev.parent,
2060 txq->size * MVNETA_DESC_ALIGNED_SIZE,
2061 txq->descs, txq->descs_phys);
2062 return -ENOMEM;
2063 }
2064 mvneta_tx_done_pkts_coal_set(pp, txq, txq->done_pkts_coal);
2065
2066 return 0;
2067}
2068
2069/* Free allocated resources when mvneta_txq_init() fails to allocate memory*/
2070static void mvneta_txq_deinit(struct mvneta_port *pp,
2071 struct mvneta_tx_queue *txq)
2072{
2073 kfree(txq->tx_skb);
2074
2075 if (txq->descs)
2076 dma_free_coherent(pp->dev->dev.parent,
2077 txq->size * MVNETA_DESC_ALIGNED_SIZE,
2078 txq->descs, txq->descs_phys);
2079
2080 txq->descs = NULL;
2081 txq->last_desc = 0;
2082 txq->next_desc_to_proc = 0;
2083 txq->descs_phys = 0;
2084
2085 /* Set minimum bandwidth for disabled TXQs */
2086 mvreg_write(pp, MVETH_TXQ_TOKEN_CFG_REG(txq->id), 0);
2087 mvreg_write(pp, MVETH_TXQ_TOKEN_COUNT_REG(txq->id), 0);
2088
2089 /* Set Tx descriptors queue starting address and size */
2090 mvreg_write(pp, MVNETA_TXQ_BASE_ADDR_REG(txq->id), 0);
2091 mvreg_write(pp, MVNETA_TXQ_SIZE_REG(txq->id), 0);
2092}
2093
2094/* Cleanup all Tx queues */
2095static void mvneta_cleanup_txqs(struct mvneta_port *pp)
2096{
2097 int queue;
2098
2099 for (queue = 0; queue < txq_number; queue++)
2100 mvneta_txq_deinit(pp, &pp->txqs[queue]);
2101}
2102
2103/* Cleanup all Rx queues */
2104static void mvneta_cleanup_rxqs(struct mvneta_port *pp)
2105{
2106 int queue;
2107
2108 for (queue = 0; queue < rxq_number; queue++)
2109 mvneta_rxq_deinit(pp, &pp->rxqs[queue]);
2110}
2111
2112
2113/* Init all Rx queues */
2114static int mvneta_setup_rxqs(struct mvneta_port *pp)
2115{
2116 int queue;
2117
2118 for (queue = 0; queue < rxq_number; queue++) {
2119 int err = mvneta_rxq_init(pp, &pp->rxqs[queue]);
2120 if (err) {
2121 netdev_err(pp->dev, "%s: can't create rxq=%d\n",
2122 __func__, queue);
2123 mvneta_cleanup_rxqs(pp);
2124 return err;
2125 }
2126 }
2127
2128 return 0;
2129}
2130
2131/* Init all tx queues */
2132static int mvneta_setup_txqs(struct mvneta_port *pp)
2133{
2134 int queue;
2135
2136 for (queue = 0; queue < txq_number; queue++) {
2137 int err = mvneta_txq_init(pp, &pp->txqs[queue]);
2138 if (err) {
2139 netdev_err(pp->dev, "%s: can't create txq=%d\n",
2140 __func__, queue);
2141 mvneta_cleanup_txqs(pp);
2142 return err;
2143 }
2144 }
2145
2146 return 0;
2147}
2148
2149static void mvneta_start_dev(struct mvneta_port *pp)
2150{
2151 mvneta_max_rx_size_set(pp, pp->pkt_size);
2152 mvneta_txq_max_tx_size_set(pp, pp->pkt_size);
2153
2154 /* start the Rx/Tx activity */
2155 mvneta_port_enable(pp);
2156
2157 /* Enable polling on the port */
2158 napi_enable(&pp->napi);
2159
2160 /* Unmask interrupts */
2161 mvreg_write(pp, MVNETA_INTR_NEW_MASK,
2162 MVNETA_RX_INTR_MASK(rxq_number));
2163
2164 phy_start(pp->phy_dev);
2165 netif_tx_start_all_queues(pp->dev);
2166}
2167
2168static void mvneta_stop_dev(struct mvneta_port *pp)
2169{
2170 phy_stop(pp->phy_dev);
2171
2172 napi_disable(&pp->napi);
2173
2174 netif_carrier_off(pp->dev);
2175
2176 mvneta_port_down(pp);
2177 netif_tx_stop_all_queues(pp->dev);
2178
2179 /* Stop the port activity */
2180 mvneta_port_disable(pp);
2181
2182 /* Clear all ethernet port interrupts */
2183 mvreg_write(pp, MVNETA_INTR_MISC_CAUSE, 0);
2184 mvreg_write(pp, MVNETA_INTR_OLD_CAUSE, 0);
2185
2186 /* Mask all ethernet port interrupts */
2187 mvreg_write(pp, MVNETA_INTR_NEW_MASK, 0);
2188 mvreg_write(pp, MVNETA_INTR_OLD_MASK, 0);
2189 mvreg_write(pp, MVNETA_INTR_MISC_MASK, 0);
2190
2191 mvneta_tx_reset(pp);
2192 mvneta_rx_reset(pp);
2193}
2194
2195/* tx timeout callback - display a message and stop/start the network device */
2196static void mvneta_tx_timeout(struct net_device *dev)
2197{
2198 struct mvneta_port *pp = netdev_priv(dev);
2199
2200 netdev_info(dev, "tx timeout\n");
2201 mvneta_stop_dev(pp);
2202 mvneta_start_dev(pp);
2203}
2204
2205/* Return positive if MTU is valid */
2206static int mvneta_check_mtu_valid(struct net_device *dev, int mtu)
2207{
2208 if (mtu < 68) {
2209 netdev_err(dev, "cannot change mtu to less than 68\n");
2210 return -EINVAL;
2211 }
2212
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01002213 /* 9676 == 9700 - 20 and rounding to 8 */
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002214 if (mtu > 9676) {
2215 netdev_info(dev, "Illegal MTU value %d, round to 9676\n", mtu);
2216 mtu = 9676;
2217 }
2218
2219 if (!IS_ALIGNED(MVNETA_RX_PKT_SIZE(mtu), 8)) {
2220 netdev_info(dev, "Illegal MTU value %d, rounding to %d\n",
2221 mtu, ALIGN(MVNETA_RX_PKT_SIZE(mtu), 8));
2222 mtu = ALIGN(MVNETA_RX_PKT_SIZE(mtu), 8);
2223 }
2224
2225 return mtu;
2226}
2227
2228/* Change the device mtu */
2229static int mvneta_change_mtu(struct net_device *dev, int mtu)
2230{
2231 struct mvneta_port *pp = netdev_priv(dev);
2232 int ret;
2233
2234 mtu = mvneta_check_mtu_valid(dev, mtu);
2235 if (mtu < 0)
2236 return -EINVAL;
2237
2238 dev->mtu = mtu;
2239
2240 if (!netif_running(dev))
2241 return 0;
2242
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01002243 /* The interface is running, so we have to force a
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002244 * reallocation of the RXQs
2245 */
2246 mvneta_stop_dev(pp);
2247
2248 mvneta_cleanup_txqs(pp);
2249 mvneta_cleanup_rxqs(pp);
2250
2251 pp->pkt_size = MVNETA_RX_PKT_SIZE(pp->dev->mtu);
2252
2253 ret = mvneta_setup_rxqs(pp);
2254 if (ret) {
2255 netdev_err(pp->dev, "unable to setup rxqs after MTU change\n");
2256 return ret;
2257 }
2258
2259 mvneta_setup_txqs(pp);
2260
2261 mvneta_start_dev(pp);
2262 mvneta_port_up(pp);
2263
2264 return 0;
2265}
2266
Thomas Petazzoni8cc3e432013-06-04 04:52:23 +00002267/* Get mac address */
2268static void mvneta_get_mac_addr(struct mvneta_port *pp, unsigned char *addr)
2269{
2270 u32 mac_addr_l, mac_addr_h;
2271
2272 mac_addr_l = mvreg_read(pp, MVNETA_MAC_ADDR_LOW);
2273 mac_addr_h = mvreg_read(pp, MVNETA_MAC_ADDR_HIGH);
2274 addr[0] = (mac_addr_h >> 24) & 0xFF;
2275 addr[1] = (mac_addr_h >> 16) & 0xFF;
2276 addr[2] = (mac_addr_h >> 8) & 0xFF;
2277 addr[3] = mac_addr_h & 0xFF;
2278 addr[4] = (mac_addr_l >> 8) & 0xFF;
2279 addr[5] = mac_addr_l & 0xFF;
2280}
2281
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002282/* Handle setting mac address */
2283static int mvneta_set_mac_addr(struct net_device *dev, void *addr)
2284{
2285 struct mvneta_port *pp = netdev_priv(dev);
2286 u8 *mac = addr + 2;
2287 int i;
2288
2289 if (netif_running(dev))
2290 return -EBUSY;
2291
2292 /* Remove previous address table entry */
2293 mvneta_mac_addr_set(pp, dev->dev_addr, -1);
2294
2295 /* Set new addr in hw */
2296 mvneta_mac_addr_set(pp, mac, rxq_def);
2297
2298 /* Set addr in the device */
2299 for (i = 0; i < ETH_ALEN; i++)
2300 dev->dev_addr[i] = mac[i];
2301
2302 return 0;
2303}
2304
2305static void mvneta_adjust_link(struct net_device *ndev)
2306{
2307 struct mvneta_port *pp = netdev_priv(ndev);
2308 struct phy_device *phydev = pp->phy_dev;
2309 int status_change = 0;
2310
2311 if (phydev->link) {
2312 if ((pp->speed != phydev->speed) ||
2313 (pp->duplex != phydev->duplex)) {
2314 u32 val;
2315
2316 val = mvreg_read(pp, MVNETA_GMAC_AUTONEG_CONFIG);
2317 val &= ~(MVNETA_GMAC_CONFIG_MII_SPEED |
2318 MVNETA_GMAC_CONFIG_GMII_SPEED |
Thomas Petazzoni71408602013-09-04 16:21:18 +02002319 MVNETA_GMAC_CONFIG_FULL_DUPLEX |
2320 MVNETA_GMAC_AN_SPEED_EN |
2321 MVNETA_GMAC_AN_DUPLEX_EN);
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002322
2323 if (phydev->duplex)
2324 val |= MVNETA_GMAC_CONFIG_FULL_DUPLEX;
2325
2326 if (phydev->speed == SPEED_1000)
2327 val |= MVNETA_GMAC_CONFIG_GMII_SPEED;
2328 else
2329 val |= MVNETA_GMAC_CONFIG_MII_SPEED;
2330
2331 mvreg_write(pp, MVNETA_GMAC_AUTONEG_CONFIG, val);
2332
2333 pp->duplex = phydev->duplex;
2334 pp->speed = phydev->speed;
2335 }
2336 }
2337
2338 if (phydev->link != pp->link) {
2339 if (!phydev->link) {
2340 pp->duplex = -1;
2341 pp->speed = 0;
2342 }
2343
2344 pp->link = phydev->link;
2345 status_change = 1;
2346 }
2347
2348 if (status_change) {
2349 if (phydev->link) {
2350 u32 val = mvreg_read(pp, MVNETA_GMAC_AUTONEG_CONFIG);
2351 val |= (MVNETA_GMAC_FORCE_LINK_PASS |
2352 MVNETA_GMAC_FORCE_LINK_DOWN);
2353 mvreg_write(pp, MVNETA_GMAC_AUTONEG_CONFIG, val);
2354 mvneta_port_up(pp);
2355 netdev_info(pp->dev, "link up\n");
2356 } else {
2357 mvneta_port_down(pp);
2358 netdev_info(pp->dev, "link down\n");
2359 }
2360 }
2361}
2362
2363static int mvneta_mdio_probe(struct mvneta_port *pp)
2364{
2365 struct phy_device *phy_dev;
2366
2367 phy_dev = of_phy_connect(pp->dev, pp->phy_node, mvneta_adjust_link, 0,
2368 pp->phy_interface);
2369 if (!phy_dev) {
2370 netdev_err(pp->dev, "could not find the PHY\n");
2371 return -ENODEV;
2372 }
2373
2374 phy_dev->supported &= PHY_GBIT_FEATURES;
2375 phy_dev->advertising = phy_dev->supported;
2376
2377 pp->phy_dev = phy_dev;
2378 pp->link = 0;
2379 pp->duplex = 0;
2380 pp->speed = 0;
2381
2382 return 0;
2383}
2384
2385static void mvneta_mdio_remove(struct mvneta_port *pp)
2386{
2387 phy_disconnect(pp->phy_dev);
2388 pp->phy_dev = NULL;
2389}
2390
2391static int mvneta_open(struct net_device *dev)
2392{
2393 struct mvneta_port *pp = netdev_priv(dev);
2394 int ret;
2395
2396 mvneta_mac_addr_set(pp, dev->dev_addr, rxq_def);
2397
2398 pp->pkt_size = MVNETA_RX_PKT_SIZE(pp->dev->mtu);
2399
2400 ret = mvneta_setup_rxqs(pp);
2401 if (ret)
2402 return ret;
2403
2404 ret = mvneta_setup_txqs(pp);
2405 if (ret)
2406 goto err_cleanup_rxqs;
2407
2408 /* Connect to port interrupt line */
2409 ret = request_irq(pp->dev->irq, mvneta_isr, 0,
2410 MVNETA_DRIVER_NAME, pp);
2411 if (ret) {
2412 netdev_err(pp->dev, "cannot request irq %d\n", pp->dev->irq);
2413 goto err_cleanup_txqs;
2414 }
2415
2416 /* In default link is down */
2417 netif_carrier_off(pp->dev);
2418
2419 ret = mvneta_mdio_probe(pp);
2420 if (ret < 0) {
2421 netdev_err(dev, "cannot probe MDIO bus\n");
2422 goto err_free_irq;
2423 }
2424
2425 mvneta_start_dev(pp);
2426
2427 return 0;
2428
2429err_free_irq:
2430 free_irq(pp->dev->irq, pp);
2431err_cleanup_txqs:
2432 mvneta_cleanup_txqs(pp);
2433err_cleanup_rxqs:
2434 mvneta_cleanup_rxqs(pp);
2435 return ret;
2436}
2437
2438/* Stop the port, free port interrupt line */
2439static int mvneta_stop(struct net_device *dev)
2440{
2441 struct mvneta_port *pp = netdev_priv(dev);
2442
2443 mvneta_stop_dev(pp);
2444 mvneta_mdio_remove(pp);
2445 free_irq(dev->irq, pp);
2446 mvneta_cleanup_rxqs(pp);
2447 mvneta_cleanup_txqs(pp);
2448 del_timer(&pp->tx_done_timer);
2449 clear_bit(MVNETA_F_TX_DONE_TIMER_BIT, &pp->flags);
2450
2451 return 0;
2452}
2453
Thomas Petazzoni15f59452013-09-04 16:26:52 +02002454static int mvneta_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2455{
2456 struct mvneta_port *pp = netdev_priv(dev);
2457 int ret;
2458
2459 if (!pp->phy_dev)
2460 return -ENOTSUPP;
2461
2462 ret = phy_mii_ioctl(pp->phy_dev, ifr, cmd);
2463 if (!ret)
2464 mvneta_adjust_link(dev);
2465
2466 return ret;
2467}
2468
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002469/* Ethtool methods */
2470
2471/* Get settings (phy address, speed) for ethtools */
2472int mvneta_ethtool_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2473{
2474 struct mvneta_port *pp = netdev_priv(dev);
2475
2476 if (!pp->phy_dev)
2477 return -ENODEV;
2478
2479 return phy_ethtool_gset(pp->phy_dev, cmd);
2480}
2481
2482/* Set settings (phy address, speed) for ethtools */
2483int mvneta_ethtool_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
2484{
2485 struct mvneta_port *pp = netdev_priv(dev);
2486
2487 if (!pp->phy_dev)
2488 return -ENODEV;
2489
2490 return phy_ethtool_sset(pp->phy_dev, cmd);
2491}
2492
2493/* Set interrupt coalescing for ethtools */
2494static int mvneta_ethtool_set_coalesce(struct net_device *dev,
2495 struct ethtool_coalesce *c)
2496{
2497 struct mvneta_port *pp = netdev_priv(dev);
2498 int queue;
2499
2500 for (queue = 0; queue < rxq_number; queue++) {
2501 struct mvneta_rx_queue *rxq = &pp->rxqs[queue];
2502 rxq->time_coal = c->rx_coalesce_usecs;
2503 rxq->pkts_coal = c->rx_max_coalesced_frames;
2504 mvneta_rx_pkts_coal_set(pp, rxq, rxq->pkts_coal);
2505 mvneta_rx_time_coal_set(pp, rxq, rxq->time_coal);
2506 }
2507
2508 for (queue = 0; queue < txq_number; queue++) {
2509 struct mvneta_tx_queue *txq = &pp->txqs[queue];
2510 txq->done_pkts_coal = c->tx_max_coalesced_frames;
2511 mvneta_tx_done_pkts_coal_set(pp, txq, txq->done_pkts_coal);
2512 }
2513
2514 return 0;
2515}
2516
2517/* get coalescing for ethtools */
2518static int mvneta_ethtool_get_coalesce(struct net_device *dev,
2519 struct ethtool_coalesce *c)
2520{
2521 struct mvneta_port *pp = netdev_priv(dev);
2522
2523 c->rx_coalesce_usecs = pp->rxqs[0].time_coal;
2524 c->rx_max_coalesced_frames = pp->rxqs[0].pkts_coal;
2525
2526 c->tx_max_coalesced_frames = pp->txqs[0].done_pkts_coal;
2527 return 0;
2528}
2529
2530
2531static void mvneta_ethtool_get_drvinfo(struct net_device *dev,
2532 struct ethtool_drvinfo *drvinfo)
2533{
2534 strlcpy(drvinfo->driver, MVNETA_DRIVER_NAME,
2535 sizeof(drvinfo->driver));
2536 strlcpy(drvinfo->version, MVNETA_DRIVER_VERSION,
2537 sizeof(drvinfo->version));
2538 strlcpy(drvinfo->bus_info, dev_name(&dev->dev),
2539 sizeof(drvinfo->bus_info));
2540}
2541
2542
2543static void mvneta_ethtool_get_ringparam(struct net_device *netdev,
2544 struct ethtool_ringparam *ring)
2545{
2546 struct mvneta_port *pp = netdev_priv(netdev);
2547
2548 ring->rx_max_pending = MVNETA_MAX_RXD;
2549 ring->tx_max_pending = MVNETA_MAX_TXD;
2550 ring->rx_pending = pp->rx_ring_size;
2551 ring->tx_pending = pp->tx_ring_size;
2552}
2553
2554static int mvneta_ethtool_set_ringparam(struct net_device *dev,
2555 struct ethtool_ringparam *ring)
2556{
2557 struct mvneta_port *pp = netdev_priv(dev);
2558
2559 if ((ring->rx_pending == 0) || (ring->tx_pending == 0))
2560 return -EINVAL;
2561 pp->rx_ring_size = ring->rx_pending < MVNETA_MAX_RXD ?
2562 ring->rx_pending : MVNETA_MAX_RXD;
2563 pp->tx_ring_size = ring->tx_pending < MVNETA_MAX_TXD ?
2564 ring->tx_pending : MVNETA_MAX_TXD;
2565
2566 if (netif_running(dev)) {
2567 mvneta_stop(dev);
2568 if (mvneta_open(dev)) {
2569 netdev_err(dev,
2570 "error on opening device after ring param change\n");
2571 return -ENOMEM;
2572 }
2573 }
2574
2575 return 0;
2576}
2577
2578static const struct net_device_ops mvneta_netdev_ops = {
2579 .ndo_open = mvneta_open,
2580 .ndo_stop = mvneta_stop,
2581 .ndo_start_xmit = mvneta_tx,
2582 .ndo_set_rx_mode = mvneta_set_rx_mode,
2583 .ndo_set_mac_address = mvneta_set_mac_addr,
2584 .ndo_change_mtu = mvneta_change_mtu,
2585 .ndo_tx_timeout = mvneta_tx_timeout,
2586 .ndo_get_stats64 = mvneta_get_stats64,
Thomas Petazzoni15f59452013-09-04 16:26:52 +02002587 .ndo_do_ioctl = mvneta_ioctl,
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002588};
2589
2590const struct ethtool_ops mvneta_eth_tool_ops = {
2591 .get_link = ethtool_op_get_link,
2592 .get_settings = mvneta_ethtool_get_settings,
2593 .set_settings = mvneta_ethtool_set_settings,
2594 .set_coalesce = mvneta_ethtool_set_coalesce,
2595 .get_coalesce = mvneta_ethtool_get_coalesce,
2596 .get_drvinfo = mvneta_ethtool_get_drvinfo,
2597 .get_ringparam = mvneta_ethtool_get_ringparam,
2598 .set_ringparam = mvneta_ethtool_set_ringparam,
2599};
2600
2601/* Initialize hw */
Greg KH03ce7582012-12-21 13:42:15 +00002602static int mvneta_init(struct mvneta_port *pp, int phy_addr)
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002603{
2604 int queue;
2605
2606 /* Disable port */
2607 mvneta_port_disable(pp);
2608
2609 /* Set port default values */
2610 mvneta_defaults_set(pp);
2611
2612 pp->txqs = kzalloc(txq_number * sizeof(struct mvneta_tx_queue),
2613 GFP_KERNEL);
2614 if (!pp->txqs)
2615 return -ENOMEM;
2616
2617 /* Initialize TX descriptor rings */
2618 for (queue = 0; queue < txq_number; queue++) {
2619 struct mvneta_tx_queue *txq = &pp->txqs[queue];
2620 txq->id = queue;
2621 txq->size = pp->tx_ring_size;
2622 txq->done_pkts_coal = MVNETA_TXDONE_COAL_PKTS;
2623 }
2624
2625 pp->rxqs = kzalloc(rxq_number * sizeof(struct mvneta_rx_queue),
2626 GFP_KERNEL);
2627 if (!pp->rxqs) {
2628 kfree(pp->txqs);
2629 return -ENOMEM;
2630 }
2631
2632 /* Create Rx descriptor rings */
2633 for (queue = 0; queue < rxq_number; queue++) {
2634 struct mvneta_rx_queue *rxq = &pp->rxqs[queue];
2635 rxq->id = queue;
2636 rxq->size = pp->rx_ring_size;
2637 rxq->pkts_coal = MVNETA_RX_COAL_PKTS;
2638 rxq->time_coal = MVNETA_RX_COAL_USEC;
2639 }
2640
2641 return 0;
2642}
2643
Thomas Petazzoni70eeaf92012-11-19 14:40:02 +01002644static void mvneta_deinit(struct mvneta_port *pp)
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002645{
2646 kfree(pp->txqs);
2647 kfree(pp->rxqs);
2648}
2649
2650/* platform glue : initialize decoding windows */
Greg KH03ce7582012-12-21 13:42:15 +00002651static void mvneta_conf_mbus_windows(struct mvneta_port *pp,
2652 const struct mbus_dram_target_info *dram)
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002653{
2654 u32 win_enable;
2655 u32 win_protect;
2656 int i;
2657
2658 for (i = 0; i < 6; i++) {
2659 mvreg_write(pp, MVNETA_WIN_BASE(i), 0);
2660 mvreg_write(pp, MVNETA_WIN_SIZE(i), 0);
2661
2662 if (i < 4)
2663 mvreg_write(pp, MVNETA_WIN_REMAP(i), 0);
2664 }
2665
2666 win_enable = 0x3f;
2667 win_protect = 0;
2668
2669 for (i = 0; i < dram->num_cs; i++) {
2670 const struct mbus_dram_window *cs = dram->cs + i;
2671 mvreg_write(pp, MVNETA_WIN_BASE(i), (cs->base & 0xffff0000) |
2672 (cs->mbus_attr << 8) | dram->mbus_dram_target_id);
2673
2674 mvreg_write(pp, MVNETA_WIN_SIZE(i),
2675 (cs->size - 1) & 0xffff0000);
2676
2677 win_enable &= ~(1 << i);
2678 win_protect |= 3 << (2 * i);
2679 }
2680
2681 mvreg_write(pp, MVNETA_BASE_ADDR_ENABLE, win_enable);
2682}
2683
2684/* Power up the port */
Greg KH03ce7582012-12-21 13:42:15 +00002685static void mvneta_port_power_up(struct mvneta_port *pp, int phy_mode)
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002686{
2687 u32 val;
2688
2689 /* MAC Cause register should be cleared */
2690 mvreg_write(pp, MVNETA_UNIT_INTR_CAUSE, 0);
2691
2692 if (phy_mode == PHY_INTERFACE_MODE_SGMII)
2693 mvneta_port_sgmii_config(pp);
2694
2695 mvneta_gmac_rgmii_set(pp, 1);
2696
2697 /* Cancel Port Reset */
2698 val = mvreg_read(pp, MVNETA_GMAC_CTRL_2);
2699 val &= ~MVNETA_GMAC2_PORT_RESET;
2700 mvreg_write(pp, MVNETA_GMAC_CTRL_2, val);
2701
2702 while ((mvreg_read(pp, MVNETA_GMAC_CTRL_2) &
2703 MVNETA_GMAC2_PORT_RESET) != 0)
2704 continue;
2705}
2706
2707/* Device initialization routine */
Greg KH03ce7582012-12-21 13:42:15 +00002708static int mvneta_probe(struct platform_device *pdev)
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002709{
2710 const struct mbus_dram_target_info *dram_target_info;
2711 struct device_node *dn = pdev->dev.of_node;
2712 struct device_node *phy_node;
Thomas Petazzoni189dd622012-11-19 14:15:25 +01002713 u32 phy_addr;
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002714 struct mvneta_port *pp;
2715 struct net_device *dev;
Thomas Petazzoni8cc3e432013-06-04 04:52:23 +00002716 const char *dt_mac_addr;
2717 char hw_mac_addr[ETH_ALEN];
2718 const char *mac_from;
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002719 int phy_mode;
2720 int err;
2721
Thomas Petazzoni6a20c172012-11-19 11:41:25 +01002722 /* Our multiqueue support is not complete, so for now, only
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002723 * allow the usage of the first RX queue
2724 */
2725 if (rxq_def != 0) {
2726 dev_err(&pdev->dev, "Invalid rxq_def argument: %d\n", rxq_def);
2727 return -EINVAL;
2728 }
2729
Willy Tarreauee40a112013-04-11 23:00:37 +02002730 dev = alloc_etherdev_mqs(sizeof(struct mvneta_port), txq_number, rxq_number);
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002731 if (!dev)
2732 return -ENOMEM;
2733
2734 dev->irq = irq_of_parse_and_map(dn, 0);
2735 if (dev->irq == 0) {
2736 err = -EINVAL;
2737 goto err_free_netdev;
2738 }
2739
2740 phy_node = of_parse_phandle(dn, "phy", 0);
2741 if (!phy_node) {
2742 dev_err(&pdev->dev, "no associated PHY\n");
2743 err = -ENODEV;
2744 goto err_free_irq;
2745 }
2746
2747 phy_mode = of_get_phy_mode(dn);
2748 if (phy_mode < 0) {
2749 dev_err(&pdev->dev, "incorrect phy-mode\n");
2750 err = -EINVAL;
2751 goto err_free_irq;
2752 }
2753
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002754 dev->tx_queue_len = MVNETA_MAX_TXD;
2755 dev->watchdog_timeo = 5 * HZ;
2756 dev->netdev_ops = &mvneta_netdev_ops;
2757
2758 SET_ETHTOOL_OPS(dev, &mvneta_eth_tool_ops);
2759
2760 pp = netdev_priv(dev);
2761
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002762 pp->weight = MVNETA_RX_POLL_WEIGHT;
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002763 pp->phy_node = phy_node;
2764 pp->phy_interface = phy_mode;
2765
Thomas Petazzoni189dd622012-11-19 14:15:25 +01002766 pp->clk = devm_clk_get(&pdev->dev, NULL);
2767 if (IS_ERR(pp->clk)) {
2768 err = PTR_ERR(pp->clk);
Arnaud Patard \(Rtp\)5445eaf2013-07-29 21:56:48 +02002769 goto err_free_irq;
Thomas Petazzoni189dd622012-11-19 14:15:25 +01002770 }
2771
2772 clk_prepare_enable(pp->clk);
2773
Arnaud Patard \(Rtp\)5445eaf2013-07-29 21:56:48 +02002774 pp->base = of_iomap(dn, 0);
2775 if (pp->base == NULL) {
2776 err = -ENOMEM;
2777 goto err_clk;
2778 }
2779
Thomas Petazzoni8cc3e432013-06-04 04:52:23 +00002780 dt_mac_addr = of_get_mac_address(dn);
2781 if (dt_mac_addr && is_valid_ether_addr(dt_mac_addr)) {
2782 mac_from = "device tree";
2783 memcpy(dev->dev_addr, dt_mac_addr, ETH_ALEN);
2784 } else {
2785 mvneta_get_mac_addr(pp, hw_mac_addr);
2786 if (is_valid_ether_addr(hw_mac_addr)) {
2787 mac_from = "hardware";
2788 memcpy(dev->dev_addr, hw_mac_addr, ETH_ALEN);
2789 } else {
2790 mac_from = "random";
2791 eth_hw_addr_random(dev);
2792 }
2793 }
2794
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002795 pp->tx_done_timer.data = (unsigned long)dev;
Arnaud Patard \(Rtp\)aded0952013-07-29 21:56:47 +02002796 pp->tx_done_timer.function = mvneta_tx_done_timer_callback;
2797 init_timer(&pp->tx_done_timer);
2798 clear_bit(MVNETA_F_TX_DONE_TIMER_BIT, &pp->flags);
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002799
2800 pp->tx_ring_size = MVNETA_MAX_TXD;
2801 pp->rx_ring_size = MVNETA_MAX_RXD;
2802
2803 pp->dev = dev;
2804 SET_NETDEV_DEV(dev, &pdev->dev);
2805
2806 err = mvneta_init(pp, phy_addr);
2807 if (err < 0) {
2808 dev_err(&pdev->dev, "can't init eth hal\n");
Arnaud Patard \(Rtp\)5445eaf2013-07-29 21:56:48 +02002809 goto err_unmap;
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002810 }
2811 mvneta_port_power_up(pp, phy_mode);
2812
2813 dram_target_info = mv_mbus_dram_info();
2814 if (dram_target_info)
2815 mvneta_conf_mbus_windows(pp, dram_target_info);
2816
2817 netif_napi_add(dev, &pp->napi, mvneta_poll, pp->weight);
2818
willy tarreaub50b72d2013-04-06 08:47:01 +00002819 dev->features = NETIF_F_SG | NETIF_F_IP_CSUM;
2820 dev->hw_features |= NETIF_F_SG | NETIF_F_IP_CSUM;
2821 dev->vlan_features |= NETIF_F_SG | NETIF_F_IP_CSUM;
2822 dev->priv_flags |= IFF_UNICAST_FLT;
2823
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002824 err = register_netdev(dev);
2825 if (err < 0) {
2826 dev_err(&pdev->dev, "failed to register\n");
2827 goto err_deinit;
2828 }
2829
Thomas Petazzoni8cc3e432013-06-04 04:52:23 +00002830 netdev_info(dev, "Using %s mac address %pM\n", mac_from,
2831 dev->dev_addr);
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002832
2833 platform_set_drvdata(pdev, pp->dev);
2834
2835 return 0;
2836
2837err_deinit:
2838 mvneta_deinit(pp);
2839err_unmap:
2840 iounmap(pp->base);
Arnaud Patard \(Rtp\)5445eaf2013-07-29 21:56:48 +02002841err_clk:
2842 clk_disable_unprepare(pp->clk);
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002843err_free_irq:
2844 irq_dispose_mapping(dev->irq);
2845err_free_netdev:
2846 free_netdev(dev);
2847 return err;
2848}
2849
2850/* Device removal routine */
Greg KH03ce7582012-12-21 13:42:15 +00002851static int mvneta_remove(struct platform_device *pdev)
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002852{
2853 struct net_device *dev = platform_get_drvdata(pdev);
2854 struct mvneta_port *pp = netdev_priv(dev);
2855
2856 unregister_netdev(dev);
2857 mvneta_deinit(pp);
Thomas Petazzoni189dd622012-11-19 14:15:25 +01002858 clk_disable_unprepare(pp->clk);
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002859 iounmap(pp->base);
2860 irq_dispose_mapping(dev->irq);
2861 free_netdev(dev);
2862
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002863 return 0;
2864}
2865
2866static const struct of_device_id mvneta_match[] = {
2867 { .compatible = "marvell,armada-370-neta" },
2868 { }
2869};
2870MODULE_DEVICE_TABLE(of, mvneta_match);
2871
2872static struct platform_driver mvneta_driver = {
2873 .probe = mvneta_probe,
Greg KH03ce7582012-12-21 13:42:15 +00002874 .remove = mvneta_remove,
Thomas Petazzonic5aff182012-08-17 14:04:28 +03002875 .driver = {
2876 .name = MVNETA_DRIVER_NAME,
2877 .of_match_table = mvneta_match,
2878 },
2879};
2880
2881module_platform_driver(mvneta_driver);
2882
2883MODULE_DESCRIPTION("Marvell NETA Ethernet Driver - www.marvell.com");
2884MODULE_AUTHOR("Rami Rosen <rosenr@marvell.com>, Thomas Petazzoni <thomas.petazzoni@free-electrons.com>");
2885MODULE_LICENSE("GPL");
2886
2887module_param(rxq_number, int, S_IRUGO);
2888module_param(txq_number, int, S_IRUGO);
2889
2890module_param(rxq_def, int, S_IRUGO);