blob: 75584cc36339fa7d30eb474866dcef1c5068f639 [file] [log] [blame]
Mugunthan V Ndf828592012-03-18 20:17:54 +00001/*
2 * Texas Instruments Ethernet Switch Driver
3 *
4 * Copyright (C) 2012 Texas Instruments
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/kernel.h>
17#include <linux/io.h>
18#include <linux/clk.h>
19#include <linux/timer.h>
20#include <linux/module.h>
21#include <linux/platform_device.h>
22#include <linux/irqreturn.h>
23#include <linux/interrupt.h>
24#include <linux/if_ether.h>
25#include <linux/etherdevice.h>
26#include <linux/netdevice.h>
Richard Cochran2e5b38a2012-10-29 08:45:20 +000027#include <linux/net_tstamp.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000028#include <linux/phy.h>
29#include <linux/workqueue.h>
30#include <linux/delay.h>
Mugunthan V Nf150bd72012-07-17 08:09:50 +000031#include <linux/pm_runtime.h>
Mugunthan V N1d147cc2015-09-07 15:16:44 +053032#include <linux/gpio.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000033#include <linux/of.h>
34#include <linux/of_net.h>
35#include <linux/of_device.h>
Mugunthan V N3b72c2f2013-02-05 08:26:48 +000036#include <linux/if_vlan.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000037
Mugunthan V N739683b2013-06-06 23:45:14 +053038#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000039
Mugunthan V Ndbe34722013-08-19 17:47:40 +053040#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000041#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000042#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000043#include "davinci_cpdma.h"
44
45#define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \
46 NETIF_MSG_DRV | NETIF_MSG_LINK | \
47 NETIF_MSG_IFUP | NETIF_MSG_INTR | \
48 NETIF_MSG_PROBE | NETIF_MSG_TIMER | \
49 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \
50 NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \
51 NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \
52 NETIF_MSG_RX_STATUS)
53
54#define cpsw_info(priv, type, format, ...) \
55do { \
56 if (netif_msg_##type(priv) && net_ratelimit()) \
57 dev_info(priv->dev, format, ## __VA_ARGS__); \
58} while (0)
59
60#define cpsw_err(priv, type, format, ...) \
61do { \
62 if (netif_msg_##type(priv) && net_ratelimit()) \
63 dev_err(priv->dev, format, ## __VA_ARGS__); \
64} while (0)
65
66#define cpsw_dbg(priv, type, format, ...) \
67do { \
68 if (netif_msg_##type(priv) && net_ratelimit()) \
69 dev_dbg(priv->dev, format, ## __VA_ARGS__); \
70} while (0)
71
72#define cpsw_notice(priv, type, format, ...) \
73do { \
74 if (netif_msg_##type(priv) && net_ratelimit()) \
75 dev_notice(priv->dev, format, ## __VA_ARGS__); \
76} while (0)
77
Mugunthan V N5c50a852012-10-29 08:45:11 +000078#define ALE_ALL_PORTS 0x7
79
Mugunthan V Ndf828592012-03-18 20:17:54 +000080#define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7)
81#define CPSW_MINOR_VERSION(reg) (reg & 0xff)
82#define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f)
83
Richard Cochrane90cfac2012-10-29 08:45:14 +000084#define CPSW_VERSION_1 0x19010a
85#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053086#define CPSW_VERSION_3 0x19010f
Mugunthan V N926489b2013-08-12 17:11:15 +053087#define CPSW_VERSION_4 0x190112
Richard Cochran549985e2012-11-14 09:07:56 +000088
89#define HOST_PORT_NUM 0
90#define SLIVER_SIZE 0x40
91
92#define CPSW1_HOST_PORT_OFFSET 0x028
93#define CPSW1_SLAVE_OFFSET 0x050
94#define CPSW1_SLAVE_SIZE 0x040
95#define CPSW1_CPDMA_OFFSET 0x100
96#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +053097#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +000098#define CPSW1_CPTS_OFFSET 0x500
99#define CPSW1_ALE_OFFSET 0x600
100#define CPSW1_SLIVER_OFFSET 0x700
101
102#define CPSW2_HOST_PORT_OFFSET 0x108
103#define CPSW2_SLAVE_OFFSET 0x200
104#define CPSW2_SLAVE_SIZE 0x100
105#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530106#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000107#define CPSW2_STATERAM_OFFSET 0xa00
108#define CPSW2_CPTS_OFFSET 0xc00
109#define CPSW2_ALE_OFFSET 0xd00
110#define CPSW2_SLIVER_OFFSET 0xd80
111#define CPSW2_BD_OFFSET 0x2000
112
Mugunthan V Ndf828592012-03-18 20:17:54 +0000113#define CPDMA_RXTHRESH 0x0c0
114#define CPDMA_RXFREE 0x0e0
115#define CPDMA_TXHDP 0x00
116#define CPDMA_RXHDP 0x20
117#define CPDMA_TXCP 0x40
118#define CPDMA_RXCP 0x60
119
Mugunthan V Ndf828592012-03-18 20:17:54 +0000120#define CPSW_POLL_WEIGHT 64
121#define CPSW_MIN_PACKET_SIZE 60
122#define CPSW_MAX_PACKET_SIZE (1500 + 14 + 4 + 4)
123
124#define RX_PRIORITY_MAPPING 0x76543210
125#define TX_PRIORITY_MAPPING 0x33221100
126#define CPDMA_TX_PRIORITY_MAP 0x76543210
127
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000128#define CPSW_VLAN_AWARE BIT(1)
129#define CPSW_ALE_VLAN_AWARE 1
130
John Ogness35717d82014-11-14 15:42:52 +0100131#define CPSW_FIFO_NORMAL_MODE (0 << 16)
132#define CPSW_FIFO_DUAL_MAC_MODE (1 << 16)
133#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000134
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000135#define CPSW_INTPACEEN (0x3f << 16)
136#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
137#define CPSW_CMINTMAX_CNT 63
138#define CPSW_CMINTMIN_CNT 2
139#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
140#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
141
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000142#define cpsw_slave_index(priv) \
143 ((priv->data.dual_emac) ? priv->emac_port : \
144 priv->data.active_slave)
145
Mugunthan V Ndf828592012-03-18 20:17:54 +0000146static int debug_level;
147module_param(debug_level, int, 0);
148MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
149
150static int ale_ageout = 10;
151module_param(ale_ageout, int, 0);
152MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
153
154static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
155module_param(rx_packet_max, int, 0);
156MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
157
Richard Cochran996a5c22012-10-29 08:45:12 +0000158struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000159 u32 id_ver;
160 u32 soft_reset;
161 u32 control;
162 u32 int_control;
163 u32 rx_thresh_en;
164 u32 rx_en;
165 u32 tx_en;
166 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000167 u32 mem_allign1[8];
168 u32 rx_thresh_stat;
169 u32 rx_stat;
170 u32 tx_stat;
171 u32 misc_stat;
172 u32 mem_allign2[8];
173 u32 rx_imax;
174 u32 tx_imax;
175
Mugunthan V Ndf828592012-03-18 20:17:54 +0000176};
177
Richard Cochran996a5c22012-10-29 08:45:12 +0000178struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000179 u32 id_ver;
180 u32 control;
181 u32 soft_reset;
182 u32 stat_port_en;
183 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000184 u32 soft_idle;
185 u32 thru_rate;
186 u32 gap_thresh;
187 u32 tx_start_wds;
188 u32 flow_control;
189 u32 vlan_ltype;
190 u32 ts_ltype;
191 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000192};
193
Richard Cochran9750a3a2012-10-29 08:45:15 +0000194/* CPSW_PORT_V1 */
195#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
196#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
197#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
198#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
199#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
200#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
201#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
202#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
203
204/* CPSW_PORT_V2 */
205#define CPSW2_CONTROL 0x00 /* Control Register */
206#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
207#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
208#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
209#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
210#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
211#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
212
213/* CPSW_PORT_V1 and V2 */
214#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
215#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
216#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
217
218/* CPSW_PORT_V2 only */
219#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
220#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
221#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
222#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
223#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
224#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
225#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
226#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
227
228/* Bit definitions for the CPSW2_CONTROL register */
229#define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */
230#define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */
231#define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */
232#define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */
233#define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */
234#define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */
235#define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */
236#define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */
237#define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */
238#define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */
George Cherian09c55372014-05-02 12:02:02 +0530239#define TS_TTL_NONZERO (1<<8) /* Time Sync Time To Live Non-zero enable */
240#define TS_ANNEX_F_EN (1<<6) /* Time Sync Annex F enable */
Richard Cochran9750a3a2012-10-29 08:45:15 +0000241#define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */
242#define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */
243#define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */
244#define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */
245#define TS_RX_EN (1<<0) /* Time Sync Receive Enable */
246
George Cherian09c55372014-05-02 12:02:02 +0530247#define CTRL_V2_TS_BITS \
248 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
249 TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000250
George Cherian09c55372014-05-02 12:02:02 +0530251#define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN)
252#define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN)
253#define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN)
254
255
256#define CTRL_V3_TS_BITS \
257 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
258 TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\
259 TS_LTYPE1_EN)
260
261#define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN)
262#define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN)
263#define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000264
265/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
266#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
267#define TS_SEQ_ID_OFFSET_MASK (0x3f)
268#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
269#define TS_MSG_TYPE_EN_MASK (0xffff)
270
271/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
272#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000273
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000274/* Bit definitions for the CPSW1_TS_CTL register */
275#define CPSW_V1_TS_RX_EN BIT(0)
276#define CPSW_V1_TS_TX_EN BIT(4)
277#define CPSW_V1_MSG_TYPE_OFS 16
278
279/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
280#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
281
Mugunthan V Ndf828592012-03-18 20:17:54 +0000282struct cpsw_host_regs {
283 u32 max_blks;
284 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000285 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000286 u32 port_vlan;
287 u32 tx_pri_map;
288 u32 cpdma_tx_pri_map;
289 u32 cpdma_rx_chan_map;
290};
291
292struct cpsw_sliver_regs {
293 u32 id_ver;
294 u32 mac_control;
295 u32 mac_status;
296 u32 soft_reset;
297 u32 rx_maxlen;
298 u32 __reserved_0;
299 u32 rx_pause;
300 u32 tx_pause;
301 u32 __reserved_1;
302 u32 rx_pri_map;
303};
304
Mugunthan V Nd9718542013-07-23 15:38:17 +0530305struct cpsw_hw_stats {
306 u32 rxgoodframes;
307 u32 rxbroadcastframes;
308 u32 rxmulticastframes;
309 u32 rxpauseframes;
310 u32 rxcrcerrors;
311 u32 rxaligncodeerrors;
312 u32 rxoversizedframes;
313 u32 rxjabberframes;
314 u32 rxundersizedframes;
315 u32 rxfragments;
316 u32 __pad_0[2];
317 u32 rxoctets;
318 u32 txgoodframes;
319 u32 txbroadcastframes;
320 u32 txmulticastframes;
321 u32 txpauseframes;
322 u32 txdeferredframes;
323 u32 txcollisionframes;
324 u32 txsinglecollframes;
325 u32 txmultcollframes;
326 u32 txexcessivecollisions;
327 u32 txlatecollisions;
328 u32 txunderrun;
329 u32 txcarriersenseerrors;
330 u32 txoctets;
331 u32 octetframes64;
332 u32 octetframes65t127;
333 u32 octetframes128t255;
334 u32 octetframes256t511;
335 u32 octetframes512t1023;
336 u32 octetframes1024tup;
337 u32 netoctets;
338 u32 rxsofoverruns;
339 u32 rxmofoverruns;
340 u32 rxdmaoverruns;
341};
342
Mugunthan V Ndf828592012-03-18 20:17:54 +0000343struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000344 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000345 struct cpsw_sliver_regs __iomem *sliver;
346 int slave_num;
347 u32 mac_control;
348 struct cpsw_slave_data *data;
349 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000350 struct net_device *ndev;
351 u32 port_vlan;
352 u32 open_stat;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000353};
354
Richard Cochran9750a3a2012-10-29 08:45:15 +0000355static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
356{
357 return __raw_readl(slave->regs + offset);
358}
359
360static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
361{
362 __raw_writel(val, slave->regs + offset);
363}
364
Mugunthan V Ndf828592012-03-18 20:17:54 +0000365struct cpsw_priv {
366 spinlock_t lock;
367 struct platform_device *pdev;
368 struct net_device *ndev;
Mugunthan V N32a74322015-08-04 16:06:20 +0530369 struct napi_struct napi_rx;
370 struct napi_struct napi_tx;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000371 struct device *dev;
372 struct cpsw_platform_data data;
Richard Cochran996a5c22012-10-29 08:45:12 +0000373 struct cpsw_ss_regs __iomem *regs;
374 struct cpsw_wr_regs __iomem *wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +0530375 u8 __iomem *hw_stats;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000376 struct cpsw_host_regs __iomem *host_port_regs;
377 u32 msg_enable;
Richard Cochrane90cfac2012-10-29 08:45:14 +0000378 u32 version;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000379 u32 coal_intvl;
380 u32 bus_freq_mhz;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000381 int rx_packet_max;
382 int host_port;
383 struct clk *clk;
384 u8 mac_addr[ETH_ALEN];
385 struct cpsw_slave *slaves;
386 struct cpdma_ctlr *dma;
387 struct cpdma_chan *txch, *rxch;
388 struct cpsw_ale *ale;
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530389 bool rx_pause;
390 bool tx_pause;
Mugunthan V N7da11602015-08-12 15:22:53 +0530391 bool quirk_irq;
392 bool rx_irq_disabled;
393 bool tx_irq_disabled;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000394 /* snapshot of IRQ numbers */
395 u32 irqs_table[4];
396 u32 num_irqs;
Mugunthan V N9232b162013-02-11 09:52:19 +0000397 struct cpts *cpts;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000398 u32 emac_port;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000399};
400
Mugunthan V Nd9718542013-07-23 15:38:17 +0530401struct cpsw_stats {
402 char stat_string[ETH_GSTRING_LEN];
403 int type;
404 int sizeof_stat;
405 int stat_offset;
406};
407
408enum {
409 CPSW_STATS,
410 CPDMA_RX_STATS,
411 CPDMA_TX_STATS,
412};
413
414#define CPSW_STAT(m) CPSW_STATS, \
415 sizeof(((struct cpsw_hw_stats *)0)->m), \
416 offsetof(struct cpsw_hw_stats, m)
417#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
418 sizeof(((struct cpdma_chan_stats *)0)->m), \
419 offsetof(struct cpdma_chan_stats, m)
420#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
421 sizeof(((struct cpdma_chan_stats *)0)->m), \
422 offsetof(struct cpdma_chan_stats, m)
423
424static const struct cpsw_stats cpsw_gstrings_stats[] = {
425 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
426 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
427 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
428 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
429 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
430 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
431 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
432 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
433 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
434 { "Rx Fragments", CPSW_STAT(rxfragments) },
435 { "Rx Octets", CPSW_STAT(rxoctets) },
436 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
437 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
438 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
439 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
440 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
441 { "Collisions", CPSW_STAT(txcollisionframes) },
442 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
443 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
444 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
445 { "Late Collisions", CPSW_STAT(txlatecollisions) },
446 { "Tx Underrun", CPSW_STAT(txunderrun) },
447 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
448 { "Tx Octets", CPSW_STAT(txoctets) },
449 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
450 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
451 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
452 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
453 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
454 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
455 { "Net Octets", CPSW_STAT(netoctets) },
456 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
457 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
458 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
459 { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) },
460 { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
461 { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
462 { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) },
463 { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
464 { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
465 { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
466 { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
467 { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
468 { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
469 { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) },
470 { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) },
471 { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
472 { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) },
473 { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) },
474 { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) },
475 { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) },
476 { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) },
477 { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) },
478 { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) },
479 { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) },
480 { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) },
481 { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) },
482 { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) },
483 { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) },
484 { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) },
485};
486
487#define CPSW_STATS_LEN ARRAY_SIZE(cpsw_gstrings_stats)
488
Mugunthan V Ndf828592012-03-18 20:17:54 +0000489#define napi_to_priv(napi) container_of(napi, struct cpsw_priv, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000490#define for_each_slave(priv, func, arg...) \
491 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000492 struct cpsw_slave *slave; \
493 int n; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000494 if (priv->data.dual_emac) \
495 (func)((priv)->slaves + priv->emac_port, ##arg);\
496 else \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000497 for (n = (priv)->data.slaves, \
498 slave = (priv)->slaves; \
499 n; n--) \
500 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000501 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000502#define cpsw_get_slave_ndev(priv, __slave_no__) \
Mugunthan V N1973db02015-07-07 18:30:39 +0530503 ((__slave_no__ < priv->data.slaves) ? \
504 priv->slaves[__slave_no__].ndev : NULL)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000505#define cpsw_get_slave_priv(priv, __slave_no__) \
Mugunthan V N1973db02015-07-07 18:30:39 +0530506 (((__slave_no__ < priv->data.slaves) && \
507 (priv->slaves[__slave_no__].ndev)) ? \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000508 netdev_priv(priv->slaves[__slave_no__].ndev) : NULL) \
509
510#define cpsw_dual_emac_src_port_detect(status, priv, ndev, skb) \
511 do { \
512 if (!priv->data.dual_emac) \
513 break; \
514 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
515 ndev = cpsw_get_slave_ndev(priv, 0); \
516 priv = netdev_priv(ndev); \
517 skb->dev = ndev; \
518 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
519 ndev = cpsw_get_slave_ndev(priv, 1); \
520 priv = netdev_priv(ndev); \
521 skb->dev = ndev; \
522 } \
523 } while (0)
524#define cpsw_add_mcast(priv, addr) \
525 do { \
526 if (priv->data.dual_emac) { \
527 struct cpsw_slave *slave = priv->slaves + \
528 priv->emac_port; \
529 int slave_port = cpsw_get_slave_port(priv, \
530 slave->slave_num); \
531 cpsw_ale_add_mcast(priv->ale, addr, \
532 1 << slave_port | 1 << priv->host_port, \
533 ALE_VLAN, slave->port_vlan, 0); \
534 } else { \
535 cpsw_ale_add_mcast(priv->ale, addr, \
536 ALE_ALL_PORTS << priv->host_port, \
537 0, 0, 0); \
538 } \
539 } while (0)
540
541static inline int cpsw_get_slave_port(struct cpsw_priv *priv, u32 slave_num)
542{
543 if (priv->host_port == 0)
544 return slave_num + 1;
545 else
546 return slave_num;
547}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000548
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530549static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
550{
551 struct cpsw_priv *priv = netdev_priv(ndev);
552 struct cpsw_ale *ale = priv->ale;
553 int i;
554
555 if (priv->data.dual_emac) {
556 bool flag = false;
557
558 /* Enabling promiscuous mode for one interface will be
559 * common for both the interface as the interface shares
560 * the same hardware resource.
561 */
Heiko Schocher0d961b32014-02-13 14:47:27 +0100562 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530563 if (priv->slaves[i].ndev->flags & IFF_PROMISC)
564 flag = true;
565
566 if (!enable && flag) {
567 enable = true;
568 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
569 }
570
571 if (enable) {
572 /* Enable Bypass */
573 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
574
575 dev_dbg(&ndev->dev, "promiscuity enabled\n");
576 } else {
577 /* Disable Bypass */
578 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
579 dev_dbg(&ndev->dev, "promiscuity disabled\n");
580 }
581 } else {
582 if (enable) {
583 unsigned long timeout = jiffies + HZ;
584
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400585 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
586 for (i = 0; i <= priv->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530587 cpsw_ale_control_set(ale, i,
588 ALE_PORT_NOLEARN, 1);
589 cpsw_ale_control_set(ale, i,
590 ALE_PORT_NO_SA_UPDATE, 1);
591 }
592
593 /* Clear All Untouched entries */
594 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
595 do {
596 cpu_relax();
597 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
598 break;
599 } while (time_after(timeout, jiffies));
600 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
601
602 /* Clear all mcast from ALE */
603 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS <<
Mugunthan V N25906052015-01-13 17:35:49 +0530604 priv->host_port, -1);
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530605
606 /* Flood All Unicast Packets to Host port */
607 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
608 dev_dbg(&ndev->dev, "promiscuity enabled\n");
609 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400610 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530611 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
612
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400613 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
614 for (i = 0; i <= priv->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530615 cpsw_ale_control_set(ale, i,
616 ALE_PORT_NOLEARN, 0);
617 cpsw_ale_control_set(ale, i,
618 ALE_PORT_NO_SA_UPDATE, 0);
619 }
620 dev_dbg(&ndev->dev, "promiscuity disabled\n");
621 }
622 }
623}
624
Mugunthan V N5c50a852012-10-29 08:45:11 +0000625static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
626{
627 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V N25906052015-01-13 17:35:49 +0530628 int vid;
629
630 if (priv->data.dual_emac)
631 vid = priv->slaves[priv->emac_port].port_vlan;
632 else
633 vid = priv->data.default_vlan;
Mugunthan V N5c50a852012-10-29 08:45:11 +0000634
635 if (ndev->flags & IFF_PROMISC) {
636 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530637 cpsw_set_promiscious(ndev, true);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400638 cpsw_ale_set_allmulti(priv->ale, IFF_ALLMULTI);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000639 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530640 } else {
641 /* Disable promiscuous mode */
642 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000643 }
644
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400645 /* Restore allmulti on vlans if necessary */
646 cpsw_ale_set_allmulti(priv->ale, priv->ndev->flags & IFF_ALLMULTI);
647
Mugunthan V N5c50a852012-10-29 08:45:11 +0000648 /* Clear all mcast from ALE */
Mugunthan V N25906052015-01-13 17:35:49 +0530649 cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS << priv->host_port,
650 vid);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000651
652 if (!netdev_mc_empty(ndev)) {
653 struct netdev_hw_addr *ha;
654
655 /* program multicast address list into ALE register */
656 netdev_for_each_mc_addr(ha, ndev) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000657 cpsw_add_mcast(priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000658 }
659 }
660}
661
Mugunthan V Ndf828592012-03-18 20:17:54 +0000662static void cpsw_intr_enable(struct cpsw_priv *priv)
663{
Richard Cochran996a5c22012-10-29 08:45:12 +0000664 __raw_writel(0xFF, &priv->wr_regs->tx_en);
665 __raw_writel(0xFF, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000666
667 cpdma_ctlr_int_ctrl(priv->dma, true);
668 return;
669}
670
671static void cpsw_intr_disable(struct cpsw_priv *priv)
672{
Richard Cochran996a5c22012-10-29 08:45:12 +0000673 __raw_writel(0, &priv->wr_regs->tx_en);
674 __raw_writel(0, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000675
676 cpdma_ctlr_int_ctrl(priv->dma, false);
677 return;
678}
679
Olof Johansson1a3b5052013-12-11 15:58:07 -0800680static void cpsw_tx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000681{
682 struct sk_buff *skb = token;
683 struct net_device *ndev = skb->dev;
684 struct cpsw_priv *priv = netdev_priv(ndev);
685
Mugunthan V Nfae50822013-01-17 06:31:34 +0000686 /* Check whether the queue is stopped due to stalled tx dma, if the
687 * queue is stopped then start the queue as we have free desc for tx
688 */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000689 if (unlikely(netif_queue_stopped(ndev)))
Mugunthan V Nb56d6b3f2013-03-27 04:41:59 +0000690 netif_wake_queue(ndev);
Mugunthan V N9232b162013-02-11 09:52:19 +0000691 cpts_tx_timestamp(priv->cpts, skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100692 ndev->stats.tx_packets++;
693 ndev->stats.tx_bytes += len;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000694 dev_kfree_skb_any(skb);
695}
696
Olof Johansson1a3b5052013-12-11 15:58:07 -0800697static void cpsw_rx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000698{
699 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000700 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000701 struct net_device *ndev = skb->dev;
702 struct cpsw_priv *priv = netdev_priv(ndev);
703 int ret = 0;
704
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000705 cpsw_dual_emac_src_port_detect(status, priv, ndev, skb);
706
Mugunthan V N16e5c572014-04-10 14:23:23 +0530707 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530708 bool ndev_status = false;
709 struct cpsw_slave *slave = priv->slaves;
710 int n;
711
712 if (priv->data.dual_emac) {
713 /* In dual emac mode check for all interfaces */
714 for (n = priv->data.slaves; n; n--, slave++)
715 if (netif_running(slave->ndev))
716 ndev_status = true;
717 }
718
719 if (ndev_status && (status >= 0)) {
720 /* The packet received is for the interface which
721 * is already down and the other interface is up
Joe Perchesdbedd442015-03-06 20:49:12 -0800722 * and running, instead of freeing which results
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530723 * in reducing of the number of rx descriptor in
724 * DMA engine, requeue skb back to cpdma.
725 */
726 new_skb = skb;
727 goto requeue;
728 }
729
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000730 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000731 dev_kfree_skb_any(skb);
732 return;
733 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000734
735 new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max);
736 if (new_skb) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000737 skb_put(skb, len);
Mugunthan V N9232b162013-02-11 09:52:19 +0000738 cpts_rx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000739 skb->protocol = eth_type_trans(skb, ndev);
740 netif_receive_skb(skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100741 ndev->stats.rx_bytes += len;
742 ndev->stats.rx_packets++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000743 } else {
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100744 ndev->stats.rx_dropped++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000745 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000746 }
747
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530748requeue:
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000749 ret = cpdma_chan_submit(priv->rxch, new_skb, new_skb->data,
750 skb_tailroom(new_skb), 0);
751 if (WARN_ON(ret < 0))
752 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000753}
754
Felipe Balbic03abd82015-01-16 10:11:12 -0600755static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000756{
757 struct cpsw_priv *priv = dev_id;
Felipe Balbi7ce67a32015-01-02 16:15:59 -0600758
Mugunthan V N32a74322015-08-04 16:06:20 +0530759 writel(0, &priv->wr_regs->tx_en);
Felipe Balbic03abd82015-01-16 10:11:12 -0600760 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
Felipe Balbic03abd82015-01-16 10:11:12 -0600761
Mugunthan V N7da11602015-08-12 15:22:53 +0530762 if (priv->quirk_irq) {
763 disable_irq_nosync(priv->irqs_table[1]);
764 priv->tx_irq_disabled = true;
765 }
766
Mugunthan V N32a74322015-08-04 16:06:20 +0530767 napi_schedule(&priv->napi_tx);
Felipe Balbic03abd82015-01-16 10:11:12 -0600768 return IRQ_HANDLED;
769}
770
771static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id)
772{
773 struct cpsw_priv *priv = dev_id;
774
775 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
Mugunthan V N870915f2015-08-04 16:06:18 +0530776 writel(0, &priv->wr_regs->rx_en);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000777
Mugunthan V N7da11602015-08-12 15:22:53 +0530778 if (priv->quirk_irq) {
779 disable_irq_nosync(priv->irqs_table[0]);
780 priv->rx_irq_disabled = true;
781 }
782
Mugunthan V N32a74322015-08-04 16:06:20 +0530783 napi_schedule(&priv->napi_rx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +0530784 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000785}
786
Mugunthan V N32a74322015-08-04 16:06:20 +0530787static int cpsw_tx_poll(struct napi_struct *napi_tx, int budget)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000788{
Mugunthan V N32a74322015-08-04 16:06:20 +0530789 struct cpsw_priv *priv = napi_to_priv(napi_tx);
790 int num_tx;
791
792 num_tx = cpdma_chan_process(priv->txch, budget);
793 if (num_tx < budget) {
794 napi_complete(napi_tx);
795 writel(0xff, &priv->wr_regs->tx_en);
Mugunthan V N7da11602015-08-12 15:22:53 +0530796 if (priv->quirk_irq && priv->tx_irq_disabled) {
797 priv->tx_irq_disabled = false;
798 enable_irq(priv->irqs_table[1]);
799 }
Mugunthan V N32a74322015-08-04 16:06:20 +0530800 }
801
802 if (num_tx)
803 cpsw_dbg(priv, intr, "poll %d tx pkts\n", num_tx);
804
805 return num_tx;
806}
807
808static int cpsw_rx_poll(struct napi_struct *napi_rx, int budget)
809{
810 struct cpsw_priv *priv = napi_to_priv(napi_rx);
Mugunthan V N1e353cd2015-07-21 16:00:42 +0530811 int num_rx;
Mugunthan V N510a1e722013-02-17 22:19:20 +0000812
Mugunthan V Ndf828592012-03-18 20:17:54 +0000813 num_rx = cpdma_chan_process(priv->rxch, budget);
Mugunthan V N510a1e722013-02-17 22:19:20 +0000814 if (num_rx < budget) {
Mugunthan V N32a74322015-08-04 16:06:20 +0530815 napi_complete(napi_rx);
Mugunthan V N870915f2015-08-04 16:06:18 +0530816 writel(0xff, &priv->wr_regs->rx_en);
Mugunthan V N7da11602015-08-12 15:22:53 +0530817 if (priv->quirk_irq && priv->rx_irq_disabled) {
818 priv->rx_irq_disabled = false;
819 enable_irq(priv->irqs_table[0]);
820 }
Mugunthan V N510a1e722013-02-17 22:19:20 +0000821 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000822
Mugunthan V N1e353cd2015-07-21 16:00:42 +0530823 if (num_rx)
824 cpsw_dbg(priv, intr, "poll %d rx pkts\n", num_rx);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000825
Mugunthan V Ndf828592012-03-18 20:17:54 +0000826 return num_rx;
827}
828
829static inline void soft_reset(const char *module, void __iomem *reg)
830{
831 unsigned long timeout = jiffies + HZ;
832
833 __raw_writel(1, reg);
834 do {
835 cpu_relax();
836 } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies));
837
838 WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module);
839}
840
841#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
842 ((mac)[2] << 16) | ((mac)[3] << 24))
843#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
844
845static void cpsw_set_slave_mac(struct cpsw_slave *slave,
846 struct cpsw_priv *priv)
847{
Richard Cochran9750a3a2012-10-29 08:45:15 +0000848 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
849 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000850}
851
852static void _cpsw_adjust_link(struct cpsw_slave *slave,
853 struct cpsw_priv *priv, bool *link)
854{
855 struct phy_device *phy = slave->phy;
856 u32 mac_control = 0;
857 u32 slave_port;
858
859 if (!phy)
860 return;
861
862 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
863
864 if (phy->link) {
865 mac_control = priv->data.mac_control;
866
867 /* enable forwarding */
868 cpsw_ale_control_set(priv->ale, slave_port,
869 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
870
871 if (phy->speed == 1000)
872 mac_control |= BIT(7); /* GIGABITEN */
873 if (phy->duplex)
874 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +0000875
876 /* set speed_in input in case RMII mode is used in 100Mbps */
877 if (phy->speed == 100)
878 mac_control |= BIT(15);
Mugunthan V Na81d8762013-12-13 18:42:55 +0530879 else if (phy->speed == 10)
880 mac_control |= BIT(18); /* In Band mode */
Daniel Mack342b7b72012-09-27 09:19:34 +0000881
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530882 if (priv->rx_pause)
883 mac_control |= BIT(3);
884
885 if (priv->tx_pause)
886 mac_control |= BIT(4);
887
Mugunthan V Ndf828592012-03-18 20:17:54 +0000888 *link = true;
889 } else {
890 mac_control = 0;
891 /* disable forwarding */
892 cpsw_ale_control_set(priv->ale, slave_port,
893 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
894 }
895
896 if (mac_control != slave->mac_control) {
897 phy_print_status(phy);
898 __raw_writel(mac_control, &slave->sliver->mac_control);
899 }
900
901 slave->mac_control = mac_control;
902}
903
904static void cpsw_adjust_link(struct net_device *ndev)
905{
906 struct cpsw_priv *priv = netdev_priv(ndev);
907 bool link = false;
908
909 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
910
911 if (link) {
912 netif_carrier_on(ndev);
913 if (netif_running(ndev))
914 netif_wake_queue(ndev);
915 } else {
916 netif_carrier_off(ndev);
917 netif_stop_queue(ndev);
918 }
919}
920
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000921static int cpsw_get_coalesce(struct net_device *ndev,
922 struct ethtool_coalesce *coal)
923{
924 struct cpsw_priv *priv = netdev_priv(ndev);
925
926 coal->rx_coalesce_usecs = priv->coal_intvl;
927 return 0;
928}
929
930static int cpsw_set_coalesce(struct net_device *ndev,
931 struct ethtool_coalesce *coal)
932{
933 struct cpsw_priv *priv = netdev_priv(ndev);
934 u32 int_ctrl;
935 u32 num_interrupts = 0;
936 u32 prescale = 0;
937 u32 addnl_dvdr = 1;
938 u32 coal_intvl = 0;
939
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000940 coal_intvl = coal->rx_coalesce_usecs;
941
942 int_ctrl = readl(&priv->wr_regs->int_control);
943 prescale = priv->bus_freq_mhz * 4;
944
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530945 if (!coal->rx_coalesce_usecs) {
946 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
947 goto update_return;
948 }
949
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000950 if (coal_intvl < CPSW_CMINTMIN_INTVL)
951 coal_intvl = CPSW_CMINTMIN_INTVL;
952
953 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
954 /* Interrupt pacer works with 4us Pulse, we can
955 * throttle further by dilating the 4us pulse.
956 */
957 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
958
959 if (addnl_dvdr > 1) {
960 prescale *= addnl_dvdr;
961 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
962 coal_intvl = (CPSW_CMINTMAX_INTVL
963 * addnl_dvdr);
964 } else {
965 addnl_dvdr = 1;
966 coal_intvl = CPSW_CMINTMAX_INTVL;
967 }
968 }
969
970 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
971 writel(num_interrupts, &priv->wr_regs->rx_imax);
972 writel(num_interrupts, &priv->wr_regs->tx_imax);
973
974 int_ctrl |= CPSW_INTPACEEN;
975 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
976 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530977
978update_return:
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000979 writel(int_ctrl, &priv->wr_regs->int_control);
980
981 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
982 if (priv->data.dual_emac) {
983 int i;
984
985 for (i = 0; i < priv->data.slaves; i++) {
986 priv = netdev_priv(priv->slaves[i].ndev);
987 priv->coal_intvl = coal_intvl;
988 }
989 } else {
990 priv->coal_intvl = coal_intvl;
991 }
992
993 return 0;
994}
995
Mugunthan V Nd9718542013-07-23 15:38:17 +0530996static int cpsw_get_sset_count(struct net_device *ndev, int sset)
997{
998 switch (sset) {
999 case ETH_SS_STATS:
1000 return CPSW_STATS_LEN;
1001 default:
1002 return -EOPNOTSUPP;
1003 }
1004}
1005
1006static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
1007{
1008 u8 *p = data;
1009 int i;
1010
1011 switch (stringset) {
1012 case ETH_SS_STATS:
1013 for (i = 0; i < CPSW_STATS_LEN; i++) {
1014 memcpy(p, cpsw_gstrings_stats[i].stat_string,
1015 ETH_GSTRING_LEN);
1016 p += ETH_GSTRING_LEN;
1017 }
1018 break;
1019 }
1020}
1021
1022static void cpsw_get_ethtool_stats(struct net_device *ndev,
1023 struct ethtool_stats *stats, u64 *data)
1024{
1025 struct cpsw_priv *priv = netdev_priv(ndev);
1026 struct cpdma_chan_stats rx_stats;
1027 struct cpdma_chan_stats tx_stats;
1028 u32 val;
1029 u8 *p;
1030 int i;
1031
1032 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
1033 cpdma_chan_get_stats(priv->rxch, &rx_stats);
1034 cpdma_chan_get_stats(priv->txch, &tx_stats);
1035
1036 for (i = 0; i < CPSW_STATS_LEN; i++) {
1037 switch (cpsw_gstrings_stats[i].type) {
1038 case CPSW_STATS:
1039 val = readl(priv->hw_stats +
1040 cpsw_gstrings_stats[i].stat_offset);
1041 data[i] = val;
1042 break;
1043
1044 case CPDMA_RX_STATS:
1045 p = (u8 *)&rx_stats +
1046 cpsw_gstrings_stats[i].stat_offset;
1047 data[i] = *(u32 *)p;
1048 break;
1049
1050 case CPDMA_TX_STATS:
1051 p = (u8 *)&tx_stats +
1052 cpsw_gstrings_stats[i].stat_offset;
1053 data[i] = *(u32 *)p;
1054 break;
1055 }
1056 }
1057}
1058
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001059static int cpsw_common_res_usage_state(struct cpsw_priv *priv)
1060{
1061 u32 i;
1062 u32 usage_count = 0;
1063
1064 if (!priv->data.dual_emac)
1065 return 0;
1066
1067 for (i = 0; i < priv->data.slaves; i++)
1068 if (priv->slaves[i].open_stat)
1069 usage_count++;
1070
1071 return usage_count;
1072}
1073
1074static inline int cpsw_tx_packet_submit(struct net_device *ndev,
1075 struct cpsw_priv *priv, struct sk_buff *skb)
1076{
1077 if (!priv->data.dual_emac)
1078 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001079 skb->len, 0);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001080
1081 if (ndev == cpsw_get_slave_ndev(priv, 0))
1082 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001083 skb->len, 1);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001084 else
1085 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001086 skb->len, 2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001087}
1088
1089static inline void cpsw_add_dual_emac_def_ale_entries(
1090 struct cpsw_priv *priv, struct cpsw_slave *slave,
1091 u32 slave_port)
1092{
1093 u32 port_mask = 1 << slave_port | 1 << priv->host_port;
1094
1095 if (priv->version == CPSW_VERSION_1)
1096 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1097 else
1098 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
1099 cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
1100 port_mask, port_mask, 0);
1101 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1102 port_mask, ALE_VLAN, slave->port_vlan, 0);
1103 cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
George McCollister568871492015-02-26 15:19:30 -06001104 priv->host_port, ALE_VLAN | ALE_SECURE, slave->port_vlan);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001105}
1106
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001107static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001108{
1109 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001110
1111 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1112 soft_reset(name, &slave->sliver->soft_reset);
1113}
1114
1115static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1116{
Mugunthan V Ndf828592012-03-18 20:17:54 +00001117 u32 slave_port;
1118
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001119 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001120
1121 /* setup priority mapping */
1122 __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001123
1124 switch (priv->version) {
1125 case CPSW_VERSION_1:
1126 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
1127 break;
1128 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05301129 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05301130 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +00001131 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
1132 break;
1133 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001134
1135 /* setup max packet size, and mac address */
1136 __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen);
1137 cpsw_set_slave_mac(slave, priv);
1138
1139 slave->mac_control = 0; /* no link yet */
1140
1141 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
1142
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001143 if (priv->data.dual_emac)
1144 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1145 else
1146 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1147 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001148
1149 slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001150 &cpsw_adjust_link, slave->data->phy_if);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001151 if (IS_ERR(slave->phy)) {
1152 dev_err(priv->dev, "phy %s not found on slave %d\n",
1153 slave->data->phy_id, slave->slave_num);
1154 slave->phy = NULL;
1155 } else {
1156 dev_info(priv->dev, "phy found : id is : 0x%x\n",
1157 slave->phy->phy_id);
1158 phy_start(slave->phy);
Mugunthan V N388367a2013-09-21 00:50:40 +05301159
1160 /* Configure GMII_SEL register */
1161 cpsw_phy_sel(&priv->pdev->dev, slave->phy->interface,
1162 slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001163 }
1164}
1165
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001166static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1167{
1168 const int vlan = priv->data.default_vlan;
1169 const int port = priv->host_port;
1170 u32 reg;
1171 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001172 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001173
1174 reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
1175 CPSW2_PORT_VLAN;
1176
1177 writel(vlan, &priv->host_port_regs->port_vlan);
1178
Daniel Mack0237c112013-02-26 04:06:20 +00001179 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001180 slave_write(priv->slaves + i, vlan, reg);
1181
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001182 if (priv->ndev->flags & IFF_ALLMULTI)
1183 unreg_mcast_mask = ALE_ALL_PORTS;
1184 else
1185 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1186
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001187 cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS << port,
1188 ALE_ALL_PORTS << port, ALE_ALL_PORTS << port,
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001189 unreg_mcast_mask << port);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001190}
1191
Mugunthan V Ndf828592012-03-18 20:17:54 +00001192static void cpsw_init_host_port(struct cpsw_priv *priv)
1193{
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001194 u32 control_reg;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001195 u32 fifo_mode;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001196
Mugunthan V Ndf828592012-03-18 20:17:54 +00001197 /* soft reset the controller and initialize ale */
1198 soft_reset("cpsw", &priv->regs->soft_reset);
1199 cpsw_ale_start(priv->ale);
1200
1201 /* switch to vlan unaware mode */
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001202 cpsw_ale_control_set(priv->ale, priv->host_port, ALE_VLAN_AWARE,
1203 CPSW_ALE_VLAN_AWARE);
1204 control_reg = readl(&priv->regs->control);
1205 control_reg |= CPSW_VLAN_AWARE;
1206 writel(control_reg, &priv->regs->control);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001207 fifo_mode = (priv->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
1208 CPSW_FIFO_NORMAL_MODE;
1209 writel(fifo_mode, &priv->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001210
1211 /* setup host port priority mapping */
1212 __raw_writel(CPDMA_TX_PRIORITY_MAP,
1213 &priv->host_port_regs->cpdma_tx_pri_map);
1214 __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map);
1215
1216 cpsw_ale_control_set(priv->ale, priv->host_port,
1217 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1218
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001219 if (!priv->data.dual_emac) {
1220 cpsw_ale_add_ucast(priv->ale, priv->mac_addr, priv->host_port,
1221 0, 0);
1222 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1223 1 << priv->host_port, 0, 0, ALE_MCAST_FWD_2);
1224 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001225}
1226
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001227static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv)
1228{
Schuyler Patton3995d262014-03-03 16:19:06 +05301229 u32 slave_port;
1230
1231 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
1232
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001233 if (!slave->phy)
1234 return;
1235 phy_stop(slave->phy);
1236 phy_disconnect(slave->phy);
1237 slave->phy = NULL;
Schuyler Patton3995d262014-03-03 16:19:06 +05301238 cpsw_ale_control_set(priv->ale, slave_port,
1239 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001240}
1241
Mugunthan V Ndf828592012-03-18 20:17:54 +00001242static int cpsw_ndo_open(struct net_device *ndev)
1243{
1244 struct cpsw_priv *priv = netdev_priv(ndev);
1245 int i, ret;
1246 u32 reg;
1247
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001248 if (!cpsw_common_res_usage_state(priv))
1249 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001250 netif_carrier_off(ndev);
1251
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001252 pm_runtime_get_sync(&priv->pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001253
Richard Cochran549985e2012-11-14 09:07:56 +00001254 reg = priv->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001255
1256 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1257 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1258 CPSW_RTL_VERSION(reg));
1259
1260 /* initialize host and slave ports */
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001261 if (!cpsw_common_res_usage_state(priv))
1262 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001263 for_each_slave(priv, cpsw_slave_open, priv);
1264
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001265 /* Add default VLAN */
Mugunthan V Ne6afea02014-06-18 17:21:48 +05301266 if (!priv->data.dual_emac)
1267 cpsw_add_default_vlan(priv);
1268 else
1269 cpsw_ale_add_vlan(priv->ale, priv->data.default_vlan,
1270 ALE_ALL_PORTS << priv->host_port,
1271 ALE_ALL_PORTS << priv->host_port, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001272
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001273 if (!cpsw_common_res_usage_state(priv)) {
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301274 struct cpsw_priv *priv_sl0 = cpsw_get_slave_priv(priv, 0);
1275
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001276 /* setup tx dma to fixed prio and zero offset */
1277 cpdma_control_set(priv->dma, CPDMA_TX_PRIO_FIXED, 1);
1278 cpdma_control_set(priv->dma, CPDMA_RX_BUFFER_OFFSET, 0);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001279
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001280 /* disable priority elevation */
1281 __raw_writel(0, &priv->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001282
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001283 /* enable statistics collection only on all ports */
1284 __raw_writel(0x7, &priv->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001285
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301286 /* Enable internal fifo flow control */
1287 writel(0x7, &priv->regs->flow_control);
1288
Mugunthan V N32a74322015-08-04 16:06:20 +05301289 napi_enable(&priv_sl0->napi_rx);
1290 napi_enable(&priv_sl0->napi_tx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301291
Mugunthan V N7da11602015-08-12 15:22:53 +05301292 if (priv_sl0->tx_irq_disabled) {
1293 priv_sl0->tx_irq_disabled = false;
1294 enable_irq(priv->irqs_table[1]);
1295 }
1296
1297 if (priv_sl0->rx_irq_disabled) {
1298 priv_sl0->rx_irq_disabled = false;
1299 enable_irq(priv->irqs_table[0]);
1300 }
1301
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001302 if (WARN_ON(!priv->data.rx_descs))
1303 priv->data.rx_descs = 128;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001304
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001305 for (i = 0; i < priv->data.rx_descs; i++) {
1306 struct sk_buff *skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001307
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001308 ret = -ENOMEM;
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001309 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1310 priv->rx_packet_max, GFP_KERNEL);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001311 if (!skb)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001312 goto err_cleanup;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001313 ret = cpdma_chan_submit(priv->rxch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001314 skb_tailroom(skb), 0);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001315 if (ret < 0) {
1316 kfree_skb(skb);
1317 goto err_cleanup;
1318 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001319 }
1320 /* continue even if we didn't manage to submit all
1321 * receive descs
1322 */
1323 cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001324
1325 if (cpts_register(&priv->pdev->dev, priv->cpts,
1326 priv->data.cpts_clock_mult,
1327 priv->data.cpts_clock_shift))
1328 dev_err(priv->dev, "error registering cpts device\n");
1329
Mugunthan V Ndf828592012-03-18 20:17:54 +00001330 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001331
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001332 /* Enable Interrupt pacing if configured */
1333 if (priv->coal_intvl != 0) {
1334 struct ethtool_coalesce coal;
1335
1336 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1337 cpsw_set_coalesce(ndev, &coal);
1338 }
1339
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301340 cpdma_ctlr_start(priv->dma);
1341 cpsw_intr_enable(priv);
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301342
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001343 if (priv->data.dual_emac)
1344 priv->slaves[priv->emac_port].open_stat = true;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001345 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001346
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001347err_cleanup:
1348 cpdma_ctlr_stop(priv->dma);
1349 for_each_slave(priv, cpsw_slave_stop, priv);
1350 pm_runtime_put_sync(&priv->pdev->dev);
1351 netif_carrier_off(priv->ndev);
1352 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001353}
1354
1355static int cpsw_ndo_stop(struct net_device *ndev)
1356{
1357 struct cpsw_priv *priv = netdev_priv(ndev);
1358
1359 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001360 netif_stop_queue(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001361 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001362
1363 if (cpsw_common_res_usage_state(priv) <= 1) {
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301364 struct cpsw_priv *priv_sl0 = cpsw_get_slave_priv(priv, 0);
1365
Mugunthan V N32a74322015-08-04 16:06:20 +05301366 napi_disable(&priv_sl0->napi_rx);
1367 napi_disable(&priv_sl0->napi_tx);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001368 cpts_unregister(priv->cpts);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001369 cpsw_intr_disable(priv);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001370 cpdma_ctlr_stop(priv->dma);
1371 cpsw_ale_stop(priv->ale);
1372 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001373 for_each_slave(priv, cpsw_slave_stop, priv);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001374 pm_runtime_put_sync(&priv->pdev->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001375 if (priv->data.dual_emac)
1376 priv->slaves[priv->emac_port].open_stat = false;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001377 return 0;
1378}
1379
1380static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1381 struct net_device *ndev)
1382{
1383 struct cpsw_priv *priv = netdev_priv(ndev);
1384 int ret;
1385
1386 ndev->trans_start = jiffies;
1387
1388 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1389 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001390 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001391 return NETDEV_TX_OK;
1392 }
1393
Mugunthan V N9232b162013-02-11 09:52:19 +00001394 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
1395 priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001396 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1397
1398 skb_tx_timestamp(skb);
1399
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001400 ret = cpsw_tx_packet_submit(ndev, priv, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001401 if (unlikely(ret != 0)) {
1402 cpsw_err(priv, tx_err, "desc submit failed\n");
1403 goto fail;
1404 }
1405
Mugunthan V Nfae50822013-01-17 06:31:34 +00001406 /* If there is no more tx desc left free then we need to
1407 * tell the kernel to stop sending us tx frames.
1408 */
Daniel Mackd35162f2013-03-12 06:31:19 +00001409 if (unlikely(!cpdma_check_free_tx_desc(priv->txch)))
Mugunthan V Nfae50822013-01-17 06:31:34 +00001410 netif_stop_queue(ndev);
1411
Mugunthan V Ndf828592012-03-18 20:17:54 +00001412 return NETDEV_TX_OK;
1413fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001414 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001415 netif_stop_queue(ndev);
1416 return NETDEV_TX_BUSY;
1417}
1418
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001419#ifdef CONFIG_TI_CPTS
1420
1421static void cpsw_hwtstamp_v1(struct cpsw_priv *priv)
1422{
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001423 struct cpsw_slave *slave = &priv->slaves[priv->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001424 u32 ts_en, seq_id;
1425
Mugunthan V N9232b162013-02-11 09:52:19 +00001426 if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001427 slave_write(slave, 0, CPSW1_TS_CTL);
1428 return;
1429 }
1430
1431 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1432 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1433
Mugunthan V N9232b162013-02-11 09:52:19 +00001434 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001435 ts_en |= CPSW_V1_TS_TX_EN;
1436
Mugunthan V N9232b162013-02-11 09:52:19 +00001437 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001438 ts_en |= CPSW_V1_TS_RX_EN;
1439
1440 slave_write(slave, ts_en, CPSW1_TS_CTL);
1441 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1442}
1443
1444static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1445{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001446 struct cpsw_slave *slave;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001447 u32 ctrl, mtype;
1448
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001449 if (priv->data.dual_emac)
1450 slave = &priv->slaves[priv->emac_port];
1451 else
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001452 slave = &priv->slaves[priv->data.active_slave];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001453
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001454 ctrl = slave_read(slave, CPSW2_CONTROL);
George Cherian09c55372014-05-02 12:02:02 +05301455 switch (priv->version) {
1456 case CPSW_VERSION_2:
1457 ctrl &= ~CTRL_V2_ALL_TS_MASK;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001458
George Cherian09c55372014-05-02 12:02:02 +05301459 if (priv->cpts->tx_enable)
1460 ctrl |= CTRL_V2_TX_TS_BITS;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001461
George Cherian09c55372014-05-02 12:02:02 +05301462 if (priv->cpts->rx_enable)
1463 ctrl |= CTRL_V2_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001464 break;
George Cherian09c55372014-05-02 12:02:02 +05301465 case CPSW_VERSION_3:
1466 default:
1467 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1468
1469 if (priv->cpts->tx_enable)
1470 ctrl |= CTRL_V3_TX_TS_BITS;
1471
1472 if (priv->cpts->rx_enable)
1473 ctrl |= CTRL_V3_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001474 break;
George Cherian09c55372014-05-02 12:02:02 +05301475 }
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001476
1477 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1478
1479 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1480 slave_write(slave, ctrl, CPSW2_CONTROL);
1481 __raw_writel(ETH_P_1588, &priv->regs->ts_ltype);
1482}
1483
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001484static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001485{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001486 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N9232b162013-02-11 09:52:19 +00001487 struct cpts *cpts = priv->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001488 struct hwtstamp_config cfg;
1489
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001490 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301491 priv->version != CPSW_VERSION_2 &&
1492 priv->version != CPSW_VERSION_3)
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001493 return -EOPNOTSUPP;
1494
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001495 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1496 return -EFAULT;
1497
1498 /* reserved for future extensions */
1499 if (cfg.flags)
1500 return -EINVAL;
1501
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001502 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001503 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001504
1505 switch (cfg.rx_filter) {
1506 case HWTSTAMP_FILTER_NONE:
1507 cpts->rx_enable = 0;
1508 break;
1509 case HWTSTAMP_FILTER_ALL:
1510 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1511 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1512 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1513 return -ERANGE;
1514 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1515 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1516 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1517 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1518 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1519 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1520 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1521 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1522 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1523 cpts->rx_enable = 1;
1524 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1525 break;
1526 default:
1527 return -ERANGE;
1528 }
1529
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001530 cpts->tx_enable = cfg.tx_type == HWTSTAMP_TX_ON;
1531
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001532 switch (priv->version) {
1533 case CPSW_VERSION_1:
1534 cpsw_hwtstamp_v1(priv);
1535 break;
1536 case CPSW_VERSION_2:
George Cherianf7d403c2014-05-02 12:02:01 +05301537 case CPSW_VERSION_3:
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001538 cpsw_hwtstamp_v2(priv);
1539 break;
1540 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001541 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001542 }
1543
1544 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1545}
1546
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001547static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1548{
1549 struct cpsw_priv *priv = netdev_priv(dev);
1550 struct cpts *cpts = priv->cpts;
1551 struct hwtstamp_config cfg;
1552
1553 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301554 priv->version != CPSW_VERSION_2 &&
1555 priv->version != CPSW_VERSION_3)
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001556 return -EOPNOTSUPP;
1557
1558 cfg.flags = 0;
1559 cfg.tx_type = cpts->tx_enable ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1560 cfg.rx_filter = (cpts->rx_enable ?
1561 HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE);
1562
1563 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1564}
1565
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001566#endif /*CONFIG_TI_CPTS*/
1567
1568static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1569{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001570 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001571 int slave_no = cpsw_slave_index(priv);
1572
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001573 if (!netif_running(dev))
1574 return -EINVAL;
1575
Mugunthan V N11f2c982013-03-11 23:16:38 +00001576 switch (cmd) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001577#ifdef CONFIG_TI_CPTS
Mugunthan V N11f2c982013-03-11 23:16:38 +00001578 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001579 return cpsw_hwtstamp_set(dev, req);
1580 case SIOCGHWTSTAMP:
1581 return cpsw_hwtstamp_get(dev, req);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001582#endif
Mugunthan V N11f2c982013-03-11 23:16:38 +00001583 }
1584
Stefan Sørensenc1b59942014-02-16 14:54:25 +01001585 if (!priv->slaves[slave_no].phy)
1586 return -EOPNOTSUPP;
1587 return phy_mii_ioctl(priv->slaves[slave_no].phy, req, cmd);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001588}
1589
Mugunthan V Ndf828592012-03-18 20:17:54 +00001590static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1591{
1592 struct cpsw_priv *priv = netdev_priv(ndev);
1593
1594 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001595 ndev->stats.tx_errors++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001596 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001597 cpdma_chan_stop(priv->txch);
1598 cpdma_chan_start(priv->txch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001599 cpsw_intr_enable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001600}
1601
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301602static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1603{
1604 struct cpsw_priv *priv = netdev_priv(ndev);
1605 struct sockaddr *addr = (struct sockaddr *)p;
1606 int flags = 0;
1607 u16 vid = 0;
1608
1609 if (!is_valid_ether_addr(addr->sa_data))
1610 return -EADDRNOTAVAIL;
1611
1612 if (priv->data.dual_emac) {
1613 vid = priv->slaves[priv->emac_port].port_vlan;
1614 flags = ALE_VLAN;
1615 }
1616
1617 cpsw_ale_del_ucast(priv->ale, priv->mac_addr, priv->host_port,
1618 flags, vid);
1619 cpsw_ale_add_ucast(priv->ale, addr->sa_data, priv->host_port,
1620 flags, vid);
1621
1622 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1623 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1624 for_each_slave(priv, cpsw_set_slave_mac, priv);
1625
1626 return 0;
1627}
1628
Mugunthan V Ndf828592012-03-18 20:17:54 +00001629#ifdef CONFIG_NET_POLL_CONTROLLER
1630static void cpsw_ndo_poll_controller(struct net_device *ndev)
1631{
1632 struct cpsw_priv *priv = netdev_priv(ndev);
1633
1634 cpsw_intr_disable(priv);
Felipe Balbi92cb13f2015-01-19 11:52:36 -06001635 cpsw_rx_interrupt(priv->irqs_table[0], priv);
1636 cpsw_tx_interrupt(priv->irqs_table[1], priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001637 cpsw_intr_enable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001638}
1639#endif
1640
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001641static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1642 unsigned short vid)
1643{
1644 int ret;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301645 int unreg_mcast_mask = 0;
1646 u32 port_mask;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001647
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301648 if (priv->data.dual_emac) {
1649 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001650
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301651 if (priv->ndev->flags & IFF_ALLMULTI)
1652 unreg_mcast_mask = port_mask;
1653 } else {
1654 port_mask = ALE_ALL_PORTS;
1655
1656 if (priv->ndev->flags & IFF_ALLMULTI)
1657 unreg_mcast_mask = ALE_ALL_PORTS;
1658 else
1659 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1660 }
1661
1662 ret = cpsw_ale_add_vlan(priv->ale, vid, port_mask, 0, port_mask,
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001663 unreg_mcast_mask << priv->host_port);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001664 if (ret != 0)
1665 return ret;
1666
1667 ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
1668 priv->host_port, ALE_VLAN, vid);
1669 if (ret != 0)
1670 goto clean_vid;
1671
1672 ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301673 port_mask, ALE_VLAN, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001674 if (ret != 0)
1675 goto clean_vlan_ucast;
1676 return 0;
1677
1678clean_vlan_ucast:
1679 cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1680 priv->host_port, ALE_VLAN, vid);
1681clean_vid:
1682 cpsw_ale_del_vlan(priv->ale, vid, 0);
1683 return ret;
1684}
1685
1686static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001687 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001688{
1689 struct cpsw_priv *priv = netdev_priv(ndev);
1690
1691 if (vid == priv->data.default_vlan)
1692 return 0;
1693
Mugunthan V N02a54162015-01-22 15:19:22 +05301694 if (priv->data.dual_emac) {
1695 /* In dual EMAC, reserved VLAN id should not be used for
1696 * creating VLAN interfaces as this can break the dual
1697 * EMAC port separation
1698 */
1699 int i;
1700
1701 for (i = 0; i < priv->data.slaves; i++) {
1702 if (vid == priv->slaves[i].port_vlan)
1703 return -EINVAL;
1704 }
1705 }
1706
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001707 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
1708 return cpsw_add_vlan_ale_entry(priv, vid);
1709}
1710
1711static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001712 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001713{
1714 struct cpsw_priv *priv = netdev_priv(ndev);
1715 int ret;
1716
1717 if (vid == priv->data.default_vlan)
1718 return 0;
1719
Mugunthan V N02a54162015-01-22 15:19:22 +05301720 if (priv->data.dual_emac) {
1721 int i;
1722
1723 for (i = 0; i < priv->data.slaves; i++) {
1724 if (vid == priv->slaves[i].port_vlan)
1725 return -EINVAL;
1726 }
1727 }
1728
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001729 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1730 ret = cpsw_ale_del_vlan(priv->ale, vid, 0);
1731 if (ret != 0)
1732 return ret;
1733
1734 ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1735 priv->host_port, ALE_VLAN, vid);
1736 if (ret != 0)
1737 return ret;
1738
1739 return cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast,
1740 0, ALE_VLAN, vid);
1741}
1742
Mugunthan V Ndf828592012-03-18 20:17:54 +00001743static const struct net_device_ops cpsw_netdev_ops = {
1744 .ndo_open = cpsw_ndo_open,
1745 .ndo_stop = cpsw_ndo_stop,
1746 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301747 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001748 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001749 .ndo_validate_addr = eth_validate_addr,
David S. Miller5c473ed2012-03-20 00:33:59 -04001750 .ndo_change_mtu = eth_change_mtu,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001751 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00001752 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001753#ifdef CONFIG_NET_POLL_CONTROLLER
1754 .ndo_poll_controller = cpsw_ndo_poll_controller,
1755#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001756 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
1757 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001758};
1759
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301760static int cpsw_get_regs_len(struct net_device *ndev)
1761{
1762 struct cpsw_priv *priv = netdev_priv(ndev);
1763
1764 return priv->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
1765}
1766
1767static void cpsw_get_regs(struct net_device *ndev,
1768 struct ethtool_regs *regs, void *p)
1769{
1770 struct cpsw_priv *priv = netdev_priv(ndev);
1771 u32 *reg = p;
1772
1773 /* update CPSW IP version */
1774 regs->version = priv->version;
1775
1776 cpsw_ale_dump(priv->ale, reg);
1777}
1778
Mugunthan V Ndf828592012-03-18 20:17:54 +00001779static void cpsw_get_drvinfo(struct net_device *ndev,
1780 struct ethtool_drvinfo *info)
1781{
1782 struct cpsw_priv *priv = netdev_priv(ndev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001783
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301784 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00001785 strlcpy(info->version, "1.0", sizeof(info->version));
1786 strlcpy(info->bus_info, priv->pdev->name, sizeof(info->bus_info));
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301787 info->regdump_len = cpsw_get_regs_len(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001788}
1789
1790static u32 cpsw_get_msglevel(struct net_device *ndev)
1791{
1792 struct cpsw_priv *priv = netdev_priv(ndev);
1793 return priv->msg_enable;
1794}
1795
1796static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
1797{
1798 struct cpsw_priv *priv = netdev_priv(ndev);
1799 priv->msg_enable = value;
1800}
1801
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001802static int cpsw_get_ts_info(struct net_device *ndev,
1803 struct ethtool_ts_info *info)
1804{
1805#ifdef CONFIG_TI_CPTS
1806 struct cpsw_priv *priv = netdev_priv(ndev);
1807
1808 info->so_timestamping =
1809 SOF_TIMESTAMPING_TX_HARDWARE |
1810 SOF_TIMESTAMPING_TX_SOFTWARE |
1811 SOF_TIMESTAMPING_RX_HARDWARE |
1812 SOF_TIMESTAMPING_RX_SOFTWARE |
1813 SOF_TIMESTAMPING_SOFTWARE |
1814 SOF_TIMESTAMPING_RAW_HARDWARE;
Mugunthan V N9232b162013-02-11 09:52:19 +00001815 info->phc_index = priv->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001816 info->tx_types =
1817 (1 << HWTSTAMP_TX_OFF) |
1818 (1 << HWTSTAMP_TX_ON);
1819 info->rx_filters =
1820 (1 << HWTSTAMP_FILTER_NONE) |
1821 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
1822#else
1823 info->so_timestamping =
1824 SOF_TIMESTAMPING_TX_SOFTWARE |
1825 SOF_TIMESTAMPING_RX_SOFTWARE |
1826 SOF_TIMESTAMPING_SOFTWARE;
1827 info->phc_index = -1;
1828 info->tx_types = 0;
1829 info->rx_filters = 0;
1830#endif
1831 return 0;
1832}
1833
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001834static int cpsw_get_settings(struct net_device *ndev,
1835 struct ethtool_cmd *ecmd)
1836{
1837 struct cpsw_priv *priv = netdev_priv(ndev);
1838 int slave_no = cpsw_slave_index(priv);
1839
1840 if (priv->slaves[slave_no].phy)
1841 return phy_ethtool_gset(priv->slaves[slave_no].phy, ecmd);
1842 else
1843 return -EOPNOTSUPP;
1844}
1845
1846static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
1847{
1848 struct cpsw_priv *priv = netdev_priv(ndev);
1849 int slave_no = cpsw_slave_index(priv);
1850
1851 if (priv->slaves[slave_no].phy)
1852 return phy_ethtool_sset(priv->slaves[slave_no].phy, ecmd);
1853 else
1854 return -EOPNOTSUPP;
1855}
1856
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001857static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1858{
1859 struct cpsw_priv *priv = netdev_priv(ndev);
1860 int slave_no = cpsw_slave_index(priv);
1861
1862 wol->supported = 0;
1863 wol->wolopts = 0;
1864
1865 if (priv->slaves[slave_no].phy)
1866 phy_ethtool_get_wol(priv->slaves[slave_no].phy, wol);
1867}
1868
1869static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1870{
1871 struct cpsw_priv *priv = netdev_priv(ndev);
1872 int slave_no = cpsw_slave_index(priv);
1873
1874 if (priv->slaves[slave_no].phy)
1875 return phy_ethtool_set_wol(priv->slaves[slave_no].phy, wol);
1876 else
1877 return -EOPNOTSUPP;
1878}
1879
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301880static void cpsw_get_pauseparam(struct net_device *ndev,
1881 struct ethtool_pauseparam *pause)
1882{
1883 struct cpsw_priv *priv = netdev_priv(ndev);
1884
1885 pause->autoneg = AUTONEG_DISABLE;
1886 pause->rx_pause = priv->rx_pause ? true : false;
1887 pause->tx_pause = priv->tx_pause ? true : false;
1888}
1889
1890static int cpsw_set_pauseparam(struct net_device *ndev,
1891 struct ethtool_pauseparam *pause)
1892{
1893 struct cpsw_priv *priv = netdev_priv(ndev);
1894 bool link;
1895
1896 priv->rx_pause = pause->rx_pause ? true : false;
1897 priv->tx_pause = pause->tx_pause ? true : false;
1898
1899 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
1900
1901 return 0;
1902}
1903
Mugunthan V Ndf828592012-03-18 20:17:54 +00001904static const struct ethtool_ops cpsw_ethtool_ops = {
1905 .get_drvinfo = cpsw_get_drvinfo,
1906 .get_msglevel = cpsw_get_msglevel,
1907 .set_msglevel = cpsw_set_msglevel,
1908 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001909 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001910 .get_settings = cpsw_get_settings,
1911 .set_settings = cpsw_set_settings,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001912 .get_coalesce = cpsw_get_coalesce,
1913 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05301914 .get_sset_count = cpsw_get_sset_count,
1915 .get_strings = cpsw_get_strings,
1916 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301917 .get_pauseparam = cpsw_get_pauseparam,
1918 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001919 .get_wol = cpsw_get_wol,
1920 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301921 .get_regs_len = cpsw_get_regs_len,
1922 .get_regs = cpsw_get_regs,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001923};
1924
Richard Cochran549985e2012-11-14 09:07:56 +00001925static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv,
1926 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001927{
1928 void __iomem *regs = priv->regs;
1929 int slave_num = slave->slave_num;
1930 struct cpsw_slave_data *data = priv->data.slave_data + slave_num;
1931
1932 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00001933 slave->regs = regs + slave_reg_ofs;
1934 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001935 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001936}
1937
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001938static int cpsw_probe_dt(struct cpsw_platform_data *data,
1939 struct platform_device *pdev)
1940{
1941 struct device_node *node = pdev->dev.of_node;
1942 struct device_node *slave_node;
1943 int i = 0, ret;
1944 u32 prop;
1945
1946 if (!node)
1947 return -EINVAL;
1948
1949 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301950 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001951 return -EINVAL;
1952 }
1953 data->slaves = prop;
1954
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001955 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301956 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301957 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001958 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001959 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001960
Richard Cochran00ab94e2012-10-29 08:45:19 +00001961 if (of_property_read_u32(node, "cpts_clock_mult", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301962 dev_err(&pdev->dev, "Missing cpts_clock_mult property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301963 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00001964 }
1965 data->cpts_clock_mult = prop;
1966
1967 if (of_property_read_u32(node, "cpts_clock_shift", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301968 dev_err(&pdev->dev, "Missing cpts_clock_shift property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301969 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00001970 }
1971 data->cpts_clock_shift = prop;
1972
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301973 data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
1974 * sizeof(struct cpsw_slave_data),
1975 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00001976 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301977 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001978
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001979 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301980 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301981 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001982 }
1983 data->channels = prop;
1984
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001985 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301986 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301987 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001988 }
1989 data->ale_entries = prop;
1990
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001991 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301992 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301993 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001994 }
1995 data->bd_ram_size = prop;
1996
1997 if (of_property_read_u32(node, "rx_descs", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301998 dev_err(&pdev->dev, "Missing rx_descs property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301999 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002000 }
2001 data->rx_descs = prop;
2002
2003 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302004 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302005 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002006 }
2007 data->mac_control = prop;
2008
Markus Pargmann281abd92013-10-04 14:44:40 +02002009 if (of_property_read_bool(node, "dual_emac"))
2010 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002011
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002012 /*
2013 * Populate all the child nodes here...
2014 */
2015 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2016 /* We do not want to force this, as in some cases may not have child */
2017 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05302018 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002019
Markus Pargmannf468b102013-10-04 14:44:39 +02002020 for_each_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00002021 struct cpsw_slave_data *slave_data = data->slave_data + i;
2022 const void *mac_addr = NULL;
2023 u32 phyid;
2024 int lenp;
2025 const __be32 *parp;
2026 struct device_node *mdio_node;
2027 struct platform_device *mdio;
2028
Markus Pargmannf468b102013-10-04 14:44:39 +02002029 /* This is no slave child node, continue */
2030 if (strcmp(slave_node->name, "slave"))
2031 continue;
2032
Richard Cochran549985e2012-11-14 09:07:56 +00002033 parp = of_get_property(slave_node, "phy_id", &lenp);
Lothar Waßmannce162942013-03-21 02:20:11 +00002034 if ((parp == NULL) || (lenp != (sizeof(void *) * 2))) {
George Cherian88c99ff2014-05-12 10:21:19 +05302035 dev_err(&pdev->dev, "Missing slave[%d] phy_id property\n", i);
Mugunthan V N47276fc2014-10-24 18:51:33 +05302036 goto no_phy_slave;
Richard Cochran549985e2012-11-14 09:07:56 +00002037 }
2038 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2039 phyid = be32_to_cpup(parp+1);
2040 mdio = of_find_device_by_node(mdio_node);
Johan Hovold60e71ab2014-05-08 10:09:24 +02002041 of_node_put(mdio_node);
Johan Hovold6954cc12014-05-08 10:09:23 +02002042 if (!mdio) {
Markus Pargmann56fdb2e2014-09-29 08:53:16 +02002043 dev_err(&pdev->dev, "Missing mdio platform device\n");
Johan Hovold6954cc12014-05-08 10:09:23 +02002044 return -EINVAL;
Stefan Roesef8d56d82014-01-29 11:32:37 +01002045 }
Johan Hovold59993f482014-05-08 10:09:22 +02002046 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2047 PHY_ID_FMT, mdio->name, phyid);
Richard Cochran549985e2012-11-14 09:07:56 +00002048
Mugunthan V N47276fc2014-10-24 18:51:33 +05302049 slave_data->phy_if = of_get_phy_mode(slave_node);
2050 if (slave_data->phy_if < 0) {
2051 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2052 i);
2053 return slave_data->phy_if;
2054 }
2055
2056no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00002057 mac_addr = of_get_mac_address(slave_node);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002058 if (mac_addr) {
Richard Cochran549985e2012-11-14 09:07:56 +00002059 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002060 } else {
Mugunthan V Nb6745f62015-09-21 15:56:50 +05302061 ret = ti_cm_get_macid(&pdev->dev, i,
2062 slave_data->mac_addr);
2063 if (ret)
2064 return ret;
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002065 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002066 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00002067 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002068 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302069 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002070 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05302071 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2072 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002073 } else {
2074 slave_data->dual_emac_res_vlan = prop;
2075 }
2076 }
2077
Richard Cochran549985e2012-11-14 09:07:56 +00002078 i++;
Mugunthan V N3a27bfa2013-12-02 12:53:39 +05302079 if (i == data->slaves)
2080 break;
Richard Cochran549985e2012-11-14 09:07:56 +00002081 }
2082
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002083 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002084}
2085
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002086static int cpsw_probe_dual_emac(struct platform_device *pdev,
2087 struct cpsw_priv *priv)
2088{
2089 struct cpsw_platform_data *data = &priv->data;
2090 struct net_device *ndev;
2091 struct cpsw_priv *priv_sl2;
2092 int ret = 0, i;
2093
2094 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2095 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302096 dev_err(&pdev->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002097 return -ENOMEM;
2098 }
2099
2100 priv_sl2 = netdev_priv(ndev);
2101 spin_lock_init(&priv_sl2->lock);
2102 priv_sl2->data = *data;
2103 priv_sl2->pdev = pdev;
2104 priv_sl2->ndev = ndev;
2105 priv_sl2->dev = &ndev->dev;
2106 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2107 priv_sl2->rx_packet_max = max(rx_packet_max, 128);
2108
2109 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2110 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2111 ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302112 dev_info(&pdev->dev, "cpsw: Detected MACID = %pM\n", priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002113 } else {
2114 random_ether_addr(priv_sl2->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302115 dev_info(&pdev->dev, "cpsw: Random MACID = %pM\n", priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002116 }
2117 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2118
2119 priv_sl2->slaves = priv->slaves;
2120 priv_sl2->clk = priv->clk;
2121
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002122 priv_sl2->coal_intvl = 0;
2123 priv_sl2->bus_freq_mhz = priv->bus_freq_mhz;
2124
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002125 priv_sl2->regs = priv->regs;
2126 priv_sl2->host_port = priv->host_port;
2127 priv_sl2->host_port_regs = priv->host_port_regs;
2128 priv_sl2->wr_regs = priv->wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302129 priv_sl2->hw_stats = priv->hw_stats;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002130 priv_sl2->dma = priv->dma;
2131 priv_sl2->txch = priv->txch;
2132 priv_sl2->rxch = priv->rxch;
2133 priv_sl2->ale = priv->ale;
2134 priv_sl2->emac_port = 1;
2135 priv->slaves[1].ndev = ndev;
2136 priv_sl2->cpts = priv->cpts;
2137 priv_sl2->version = priv->version;
2138
2139 for (i = 0; i < priv->num_irqs; i++) {
2140 priv_sl2->irqs_table[i] = priv->irqs_table[i];
2141 priv_sl2->num_irqs = priv->num_irqs;
2142 }
Patrick McHardyf6469682013-04-19 02:04:27 +00002143 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002144
2145 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002146 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002147
2148 /* register the network device */
2149 SET_NETDEV_DEV(ndev, &pdev->dev);
2150 ret = register_netdev(ndev);
2151 if (ret) {
George Cherian88c99ff2014-05-12 10:21:19 +05302152 dev_err(&pdev->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002153 free_netdev(ndev);
2154 ret = -ENODEV;
2155 }
2156
2157 return ret;
2158}
2159
Mugunthan V N7da11602015-08-12 15:22:53 +05302160#define CPSW_QUIRK_IRQ BIT(0)
2161
2162static struct platform_device_id cpsw_devtype[] = {
2163 {
2164 /* keep it for existing comaptibles */
2165 .name = "cpsw",
2166 .driver_data = CPSW_QUIRK_IRQ,
2167 }, {
2168 .name = "am335x-cpsw",
2169 .driver_data = CPSW_QUIRK_IRQ,
2170 }, {
2171 .name = "am4372-cpsw",
2172 .driver_data = 0,
2173 }, {
2174 .name = "dra7-cpsw",
2175 .driver_data = 0,
2176 }, {
2177 /* sentinel */
2178 }
2179};
2180MODULE_DEVICE_TABLE(platform, cpsw_devtype);
2181
2182enum ti_cpsw_type {
2183 CPSW = 0,
2184 AM335X_CPSW,
2185 AM4372_CPSW,
2186 DRA7_CPSW,
2187};
2188
2189static const struct of_device_id cpsw_of_mtable[] = {
2190 { .compatible = "ti,cpsw", .data = &cpsw_devtype[CPSW], },
2191 { .compatible = "ti,am335x-cpsw", .data = &cpsw_devtype[AM335X_CPSW], },
2192 { .compatible = "ti,am4372-cpsw", .data = &cpsw_devtype[AM4372_CPSW], },
2193 { .compatible = "ti,dra7-cpsw", .data = &cpsw_devtype[DRA7_CPSW], },
2194 { /* sentinel */ },
2195};
2196MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
2197
Bill Pemberton663e12e2012-12-03 09:23:45 -05002198static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002199{
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002200 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002201 struct net_device *ndev;
2202 struct cpsw_priv *priv;
2203 struct cpdma_params dma_params;
2204 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302205 void __iomem *ss_regs;
2206 struct resource *res, *ss_res;
Mugunthan V N7da11602015-08-12 15:22:53 +05302207 const struct of_device_id *of_id;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302208 struct gpio_descs *mode;
Richard Cochran549985e2012-11-14 09:07:56 +00002209 u32 slave_offset, sliver_offset, slave_size;
Felipe Balbi5087b912015-01-16 10:11:11 -06002210 int ret = 0, i;
2211 int irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002212
Mugunthan V Ndf828592012-03-18 20:17:54 +00002213 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2214 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302215 dev_err(&pdev->dev, "error allocating net_device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002216 return -ENOMEM;
2217 }
2218
2219 platform_set_drvdata(pdev, ndev);
2220 priv = netdev_priv(ndev);
2221 spin_lock_init(&priv->lock);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002222 priv->pdev = pdev;
2223 priv->ndev = ndev;
2224 priv->dev = &ndev->dev;
2225 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2226 priv->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V N9232b162013-02-11 09:52:19 +00002227 priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL);
Sebastian Siewiorab8e99d2013-06-17 19:31:52 +02002228 if (!priv->cpts) {
George Cherian88c99ff2014-05-12 10:21:19 +05302229 dev_err(&pdev->dev, "error allocating cpts\n");
Markus Pargmann4d507df2014-09-29 08:53:14 +02002230 ret = -ENOMEM;
Mugunthan V N9232b162013-02-11 09:52:19 +00002231 goto clean_ndev_ret;
2232 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002233
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302234 mode = devm_gpiod_get_array_optional(&pdev->dev, "mode", GPIOD_OUT_LOW);
2235 if (IS_ERR(mode)) {
2236 ret = PTR_ERR(mode);
2237 dev_err(&pdev->dev, "gpio request failed, ret %d\n", ret);
2238 goto clean_ndev_ret;
2239 }
2240
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002241 /*
2242 * This may be required here for child devices.
2243 */
2244 pm_runtime_enable(&pdev->dev);
2245
Mugunthan V N739683b2013-06-06 23:45:14 +05302246 /* Select default pin state */
2247 pinctrl_pm_select_default_state(&pdev->dev);
2248
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002249 if (cpsw_probe_dt(&priv->data, pdev)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302250 dev_err(&pdev->dev, "cpsw: platform data missing\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002251 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302252 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002253 }
2254 data = &priv->data;
2255
Mugunthan V Ndf828592012-03-18 20:17:54 +00002256 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
2257 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302258 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002259 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00002260 eth_random_addr(priv->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302261 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002262 }
2263
2264 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
2265
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302266 priv->slaves = devm_kzalloc(&pdev->dev,
2267 sizeof(struct cpsw_slave) * data->slaves,
2268 GFP_KERNEL);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002269 if (!priv->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302270 ret = -ENOMEM;
2271 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002272 }
2273 for (i = 0; i < data->slaves; i++)
2274 priv->slaves[i].slave_num = i;
2275
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002276 priv->slaves[0].ndev = ndev;
2277 priv->emac_port = 0;
2278
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302279 priv->clk = devm_clk_get(&pdev->dev, "fck");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002280 if (IS_ERR(priv->clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302281 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002282 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302283 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002284 }
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002285 priv->coal_intvl = 0;
2286 priv->bus_freq_mhz = clk_get_rate(priv->clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002287
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302288 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2289 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
2290 if (IS_ERR(ss_regs)) {
2291 ret = PTR_ERR(ss_regs);
2292 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002293 }
Richard Cochran549985e2012-11-14 09:07:56 +00002294 priv->regs = ss_regs;
Richard Cochran549985e2012-11-14 09:07:56 +00002295 priv->host_port = HOST_PORT_NUM;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002296
Mugunthan V Nf280e892013-12-11 22:09:05 -06002297 /* Need to enable clocks with runtime PM api to access module
2298 * registers
2299 */
2300 pm_runtime_get_sync(&pdev->dev);
2301 priv->version = readl(&priv->regs->id_ver);
2302 pm_runtime_put_sync(&pdev->dev);
2303
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302304 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2305 priv->wr_regs = devm_ioremap_resource(&pdev->dev, res);
2306 if (IS_ERR(priv->wr_regs)) {
2307 ret = PTR_ERR(priv->wr_regs);
2308 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002309 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002310
2311 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00002312 memset(&ale_params, 0, sizeof(ale_params));
2313
2314 switch (priv->version) {
2315 case CPSW_VERSION_1:
2316 priv->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302317 priv->cpts->reg = ss_regs + CPSW1_CPTS_OFFSET;
2318 priv->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002319 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
2320 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
2321 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
2322 slave_offset = CPSW1_SLAVE_OFFSET;
2323 slave_size = CPSW1_SLAVE_SIZE;
2324 sliver_offset = CPSW1_SLIVER_OFFSET;
2325 dma_params.desc_mem_phys = 0;
2326 break;
2327 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05302328 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05302329 case CPSW_VERSION_4:
Richard Cochran549985e2012-11-14 09:07:56 +00002330 priv->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302331 priv->cpts->reg = ss_regs + CPSW2_CPTS_OFFSET;
2332 priv->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002333 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
2334 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
2335 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
2336 slave_offset = CPSW2_SLAVE_OFFSET;
2337 slave_size = CPSW2_SLAVE_SIZE;
2338 sliver_offset = CPSW2_SLIVER_OFFSET;
2339 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302340 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00002341 break;
2342 default:
2343 dev_err(priv->dev, "unknown version 0x%08x\n", priv->version);
2344 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302345 goto clean_runtime_disable_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00002346 }
2347 for (i = 0; i < priv->data.slaves; i++) {
2348 struct cpsw_slave *slave = &priv->slaves[i];
2349 cpsw_slave_init(slave, priv, slave_offset, sliver_offset);
2350 slave_offset += slave_size;
2351 sliver_offset += SLIVER_SIZE;
2352 }
2353
Mugunthan V Ndf828592012-03-18 20:17:54 +00002354 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00002355 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
2356 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
2357 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
2358 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
2359 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002360
2361 dma_params.num_chan = data->channels;
2362 dma_params.has_soft_reset = true;
2363 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
2364 dma_params.desc_mem_size = data->bd_ram_size;
2365 dma_params.desc_align = 16;
2366 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00002367 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002368
2369 priv->dma = cpdma_ctlr_create(&dma_params);
2370 if (!priv->dma) {
2371 dev_err(priv->dev, "error initializing dma\n");
2372 ret = -ENOMEM;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302373 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002374 }
2375
2376 priv->txch = cpdma_chan_create(priv->dma, tx_chan_num(0),
2377 cpsw_tx_handler);
2378 priv->rxch = cpdma_chan_create(priv->dma, rx_chan_num(0),
2379 cpsw_rx_handler);
2380
2381 if (WARN_ON(!priv->txch || !priv->rxch)) {
2382 dev_err(priv->dev, "error initializing dma channels\n");
2383 ret = -ENOMEM;
2384 goto clean_dma_ret;
2385 }
2386
Mugunthan V Ndf828592012-03-18 20:17:54 +00002387 ale_params.dev = &ndev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002388 ale_params.ale_ageout = ale_ageout;
2389 ale_params.ale_entries = data->ale_entries;
2390 ale_params.ale_ports = data->slaves;
2391
2392 priv->ale = cpsw_ale_create(&ale_params);
2393 if (!priv->ale) {
2394 dev_err(priv->dev, "error initializing ale engine\n");
2395 ret = -ENODEV;
2396 goto clean_dma_ret;
2397 }
2398
Felipe Balbic03abd82015-01-16 10:11:12 -06002399 ndev->irq = platform_get_irq(pdev, 1);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002400 if (ndev->irq < 0) {
2401 dev_err(priv->dev, "error getting irq resource\n");
2402 ret = -ENOENT;
2403 goto clean_ale_ret;
2404 }
2405
Mugunthan V N7da11602015-08-12 15:22:53 +05302406 of_id = of_match_device(cpsw_of_mtable, &pdev->dev);
2407 if (of_id) {
2408 pdev->id_entry = of_id->data;
2409 if (pdev->id_entry->driver_data)
2410 priv->quirk_irq = true;
2411 }
2412
Felipe Balbic03abd82015-01-16 10:11:12 -06002413 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
2414 * MISC IRQs which are always kept disabled with this driver so
2415 * we will not request them.
2416 *
2417 * If anyone wants to implement support for those, make sure to
2418 * first request and append them to irqs_table array.
2419 */
Daniel Mackc2b32e52014-09-04 09:00:23 +02002420
Felipe Balbic03abd82015-01-16 10:11:12 -06002421 /* RX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06002422 irq = platform_get_irq(pdev, 1);
2423 if (irq < 0)
2424 goto clean_ale_ret;
2425
Felipe Balbic03abd82015-01-16 10:11:12 -06002426 priv->irqs_table[0] = irq;
2427 ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
Felipe Balbi5087b912015-01-16 10:11:11 -06002428 0, dev_name(&pdev->dev), priv);
2429 if (ret < 0) {
2430 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2431 goto clean_ale_ret;
2432 }
2433
Felipe Balbic03abd82015-01-16 10:11:12 -06002434 /* TX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06002435 irq = platform_get_irq(pdev, 2);
2436 if (irq < 0)
2437 goto clean_ale_ret;
2438
Felipe Balbic03abd82015-01-16 10:11:12 -06002439 priv->irqs_table[1] = irq;
2440 ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt,
Felipe Balbi5087b912015-01-16 10:11:11 -06002441 0, dev_name(&pdev->dev), priv);
2442 if (ret < 0) {
2443 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2444 goto clean_ale_ret;
2445 }
Felipe Balbic03abd82015-01-16 10:11:12 -06002446 priv->num_irqs = 2;
Daniel Mackc2b32e52014-09-04 09:00:23 +02002447
Patrick McHardyf6469682013-04-19 02:04:27 +00002448 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002449
2450 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002451 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V N32a74322015-08-04 16:06:20 +05302452 netif_napi_add(ndev, &priv->napi_rx, cpsw_rx_poll, CPSW_POLL_WEIGHT);
2453 netif_napi_add(ndev, &priv->napi_tx, cpsw_tx_poll, CPSW_POLL_WEIGHT);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002454
2455 /* register the network device */
2456 SET_NETDEV_DEV(ndev, &pdev->dev);
2457 ret = register_netdev(ndev);
2458 if (ret) {
2459 dev_err(priv->dev, "error registering net device\n");
2460 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302461 goto clean_ale_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002462 }
2463
Olof Johansson1a3b5052013-12-11 15:58:07 -08002464 cpsw_notice(priv, probe, "initialized device (regs %pa, irq %d)\n",
2465 &ss_res->start, ndev->irq);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002466
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002467 if (priv->data.dual_emac) {
2468 ret = cpsw_probe_dual_emac(pdev, priv);
2469 if (ret) {
2470 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302471 goto clean_ale_ret;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002472 }
2473 }
2474
Mugunthan V Ndf828592012-03-18 20:17:54 +00002475 return 0;
2476
Mugunthan V Ndf828592012-03-18 20:17:54 +00002477clean_ale_ret:
2478 cpsw_ale_destroy(priv->ale);
2479clean_dma_ret:
2480 cpdma_chan_destroy(priv->txch);
2481 cpdma_chan_destroy(priv->rxch);
2482 cpdma_ctlr_destroy(priv->dma);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302483clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002484 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002485clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002486 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002487 return ret;
2488}
2489
Mugunthan V N030b16a2014-10-13 22:21:07 +05302490static int cpsw_remove_child_device(struct device *dev, void *c)
2491{
2492 struct platform_device *pdev = to_platform_device(dev);
2493
2494 of_device_unregister(pdev);
2495
2496 return 0;
2497}
2498
Bill Pemberton663e12e2012-12-03 09:23:45 -05002499static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002500{
2501 struct net_device *ndev = platform_get_drvdata(pdev);
2502 struct cpsw_priv *priv = netdev_priv(ndev);
2503
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002504 if (priv->data.dual_emac)
2505 unregister_netdev(cpsw_get_slave_ndev(priv, 1));
2506 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002507
Mugunthan V Ndf828592012-03-18 20:17:54 +00002508 cpsw_ale_destroy(priv->ale);
2509 cpdma_chan_destroy(priv->txch);
2510 cpdma_chan_destroy(priv->rxch);
2511 cpdma_ctlr_destroy(priv->dma);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002512 pm_runtime_disable(&pdev->dev);
Mugunthan V N030b16a2014-10-13 22:21:07 +05302513 device_for_each_child(&pdev->dev, NULL, cpsw_remove_child_device);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002514 if (priv->data.dual_emac)
2515 free_netdev(cpsw_get_slave_ndev(priv, 1));
Mugunthan V Ndf828592012-03-18 20:17:54 +00002516 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002517 return 0;
2518}
2519
Grygorii Strashko8963a502015-02-27 13:19:45 +02002520#ifdef CONFIG_PM_SLEEP
Mugunthan V Ndf828592012-03-18 20:17:54 +00002521static int cpsw_suspend(struct device *dev)
2522{
2523 struct platform_device *pdev = to_platform_device(dev);
2524 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V Nb90fc272013-06-21 19:15:09 +05302525 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002526
Mugunthan V N618073e2014-09-11 22:52:38 +05302527 if (priv->data.dual_emac) {
2528 int i;
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002529
Mugunthan V N618073e2014-09-11 22:52:38 +05302530 for (i = 0; i < priv->data.slaves; i++) {
2531 if (netif_running(priv->slaves[i].ndev))
2532 cpsw_ndo_stop(priv->slaves[i].ndev);
2533 soft_reset_slave(priv->slaves + i);
2534 }
2535 } else {
2536 if (netif_running(ndev))
2537 cpsw_ndo_stop(ndev);
2538 for_each_slave(priv, soft_reset_slave);
2539 }
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002540
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002541 pm_runtime_put_sync(&pdev->dev);
2542
Mugunthan V N739683b2013-06-06 23:45:14 +05302543 /* Select sleep pin state */
2544 pinctrl_pm_select_sleep_state(&pdev->dev);
2545
Mugunthan V Ndf828592012-03-18 20:17:54 +00002546 return 0;
2547}
2548
2549static int cpsw_resume(struct device *dev)
2550{
2551 struct platform_device *pdev = to_platform_device(dev);
2552 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302553 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002554
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002555 pm_runtime_get_sync(&pdev->dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05302556
2557 /* Select default pin state */
2558 pinctrl_pm_select_default_state(&pdev->dev);
2559
Mugunthan V N618073e2014-09-11 22:52:38 +05302560 if (priv->data.dual_emac) {
2561 int i;
2562
2563 for (i = 0; i < priv->data.slaves; i++) {
2564 if (netif_running(priv->slaves[i].ndev))
2565 cpsw_ndo_open(priv->slaves[i].ndev);
2566 }
2567 } else {
2568 if (netif_running(ndev))
2569 cpsw_ndo_open(ndev);
2570 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002571 return 0;
2572}
Grygorii Strashko8963a502015-02-27 13:19:45 +02002573#endif
Mugunthan V Ndf828592012-03-18 20:17:54 +00002574
Grygorii Strashko8963a502015-02-27 13:19:45 +02002575static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002576
2577static struct platform_driver cpsw_driver = {
2578 .driver = {
2579 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00002580 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05302581 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002582 },
2583 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05002584 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002585};
2586
2587static int __init cpsw_init(void)
2588{
2589 return platform_driver_register(&cpsw_driver);
2590}
2591late_initcall(cpsw_init);
2592
2593static void __exit cpsw_exit(void)
2594{
2595 platform_driver_unregister(&cpsw_driver);
2596}
2597module_exit(cpsw_exit);
2598
2599MODULE_LICENSE("GPL");
2600MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
2601MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
2602MODULE_DESCRIPTION("TI CPSW Ethernet driver");