blob: 0b6958d6834e738ca6403b8e27aee3e632622a10 [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>
Heiko Schocher9e42f712015-10-17 06:04:35 +020034#include <linux/of_mdio.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000035#include <linux/of_net.h>
36#include <linux/of_device.h>
Mugunthan V N3b72c2f2013-02-05 08:26:48 +000037#include <linux/if_vlan.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000038
Mugunthan V N739683b2013-06-06 23:45:14 +053039#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000040
Mugunthan V Ndbe34722013-08-19 17:47:40 +053041#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000042#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000043#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000044#include "davinci_cpdma.h"
45
46#define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \
47 NETIF_MSG_DRV | NETIF_MSG_LINK | \
48 NETIF_MSG_IFUP | NETIF_MSG_INTR | \
49 NETIF_MSG_PROBE | NETIF_MSG_TIMER | \
50 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \
51 NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \
52 NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \
53 NETIF_MSG_RX_STATUS)
54
55#define cpsw_info(priv, type, format, ...) \
56do { \
57 if (netif_msg_##type(priv) && net_ratelimit()) \
58 dev_info(priv->dev, format, ## __VA_ARGS__); \
59} while (0)
60
61#define cpsw_err(priv, type, format, ...) \
62do { \
63 if (netif_msg_##type(priv) && net_ratelimit()) \
64 dev_err(priv->dev, format, ## __VA_ARGS__); \
65} while (0)
66
67#define cpsw_dbg(priv, type, format, ...) \
68do { \
69 if (netif_msg_##type(priv) && net_ratelimit()) \
70 dev_dbg(priv->dev, format, ## __VA_ARGS__); \
71} while (0)
72
73#define cpsw_notice(priv, type, format, ...) \
74do { \
75 if (netif_msg_##type(priv) && net_ratelimit()) \
76 dev_notice(priv->dev, format, ## __VA_ARGS__); \
77} while (0)
78
Mugunthan V N5c50a852012-10-29 08:45:11 +000079#define ALE_ALL_PORTS 0x7
80
Mugunthan V Ndf828592012-03-18 20:17:54 +000081#define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7)
82#define CPSW_MINOR_VERSION(reg) (reg & 0xff)
83#define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f)
84
Richard Cochrane90cfac2012-10-29 08:45:14 +000085#define CPSW_VERSION_1 0x19010a
86#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053087#define CPSW_VERSION_3 0x19010f
Mugunthan V N926489b2013-08-12 17:11:15 +053088#define CPSW_VERSION_4 0x190112
Richard Cochran549985e2012-11-14 09:07:56 +000089
90#define HOST_PORT_NUM 0
91#define SLIVER_SIZE 0x40
92
93#define CPSW1_HOST_PORT_OFFSET 0x028
94#define CPSW1_SLAVE_OFFSET 0x050
95#define CPSW1_SLAVE_SIZE 0x040
96#define CPSW1_CPDMA_OFFSET 0x100
97#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +053098#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +000099#define CPSW1_CPTS_OFFSET 0x500
100#define CPSW1_ALE_OFFSET 0x600
101#define CPSW1_SLIVER_OFFSET 0x700
102
103#define CPSW2_HOST_PORT_OFFSET 0x108
104#define CPSW2_SLAVE_OFFSET 0x200
105#define CPSW2_SLAVE_SIZE 0x100
106#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530107#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000108#define CPSW2_STATERAM_OFFSET 0xa00
109#define CPSW2_CPTS_OFFSET 0xc00
110#define CPSW2_ALE_OFFSET 0xd00
111#define CPSW2_SLIVER_OFFSET 0xd80
112#define CPSW2_BD_OFFSET 0x2000
113
Mugunthan V Ndf828592012-03-18 20:17:54 +0000114#define CPDMA_RXTHRESH 0x0c0
115#define CPDMA_RXFREE 0x0e0
116#define CPDMA_TXHDP 0x00
117#define CPDMA_RXHDP 0x20
118#define CPDMA_TXCP 0x40
119#define CPDMA_RXCP 0x60
120
Mugunthan V Ndf828592012-03-18 20:17:54 +0000121#define CPSW_POLL_WEIGHT 64
122#define CPSW_MIN_PACKET_SIZE 60
123#define CPSW_MAX_PACKET_SIZE (1500 + 14 + 4 + 4)
124
125#define RX_PRIORITY_MAPPING 0x76543210
126#define TX_PRIORITY_MAPPING 0x33221100
127#define CPDMA_TX_PRIORITY_MAP 0x76543210
128
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000129#define CPSW_VLAN_AWARE BIT(1)
130#define CPSW_ALE_VLAN_AWARE 1
131
John Ogness35717d82014-11-14 15:42:52 +0100132#define CPSW_FIFO_NORMAL_MODE (0 << 16)
133#define CPSW_FIFO_DUAL_MAC_MODE (1 << 16)
134#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000135
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000136#define CPSW_INTPACEEN (0x3f << 16)
137#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
138#define CPSW_CMINTMAX_CNT 63
139#define CPSW_CMINTMIN_CNT 2
140#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
141#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
142
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000143#define cpsw_slave_index(priv) \
144 ((priv->data.dual_emac) ? priv->emac_port : \
145 priv->data.active_slave)
146
Mugunthan V Ndf828592012-03-18 20:17:54 +0000147static int debug_level;
148module_param(debug_level, int, 0);
149MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
150
151static int ale_ageout = 10;
152module_param(ale_ageout, int, 0);
153MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
154
155static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
156module_param(rx_packet_max, int, 0);
157MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
158
Richard Cochran996a5c22012-10-29 08:45:12 +0000159struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000160 u32 id_ver;
161 u32 soft_reset;
162 u32 control;
163 u32 int_control;
164 u32 rx_thresh_en;
165 u32 rx_en;
166 u32 tx_en;
167 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000168 u32 mem_allign1[8];
169 u32 rx_thresh_stat;
170 u32 rx_stat;
171 u32 tx_stat;
172 u32 misc_stat;
173 u32 mem_allign2[8];
174 u32 rx_imax;
175 u32 tx_imax;
176
Mugunthan V Ndf828592012-03-18 20:17:54 +0000177};
178
Richard Cochran996a5c22012-10-29 08:45:12 +0000179struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000180 u32 id_ver;
181 u32 control;
182 u32 soft_reset;
183 u32 stat_port_en;
184 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000185 u32 soft_idle;
186 u32 thru_rate;
187 u32 gap_thresh;
188 u32 tx_start_wds;
189 u32 flow_control;
190 u32 vlan_ltype;
191 u32 ts_ltype;
192 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000193};
194
Richard Cochran9750a3a2012-10-29 08:45:15 +0000195/* CPSW_PORT_V1 */
196#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
197#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
198#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
199#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
200#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
201#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
202#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
203#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
204
205/* CPSW_PORT_V2 */
206#define CPSW2_CONTROL 0x00 /* Control Register */
207#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
208#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
209#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
210#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
211#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
212#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
213
214/* CPSW_PORT_V1 and V2 */
215#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
216#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
217#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
218
219/* CPSW_PORT_V2 only */
220#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
221#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
222#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
223#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
224#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
225#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
226#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
227#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
228
229/* Bit definitions for the CPSW2_CONTROL register */
230#define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */
231#define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */
232#define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */
233#define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */
234#define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */
235#define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */
236#define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */
237#define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */
238#define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */
239#define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */
George Cherian09c55372014-05-02 12:02:02 +0530240#define TS_TTL_NONZERO (1<<8) /* Time Sync Time To Live Non-zero enable */
241#define TS_ANNEX_F_EN (1<<6) /* Time Sync Annex F enable */
Richard Cochran9750a3a2012-10-29 08:45:15 +0000242#define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */
243#define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */
244#define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */
245#define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */
246#define TS_RX_EN (1<<0) /* Time Sync Receive Enable */
247
George Cherian09c55372014-05-02 12:02:02 +0530248#define CTRL_V2_TS_BITS \
249 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
250 TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000251
George Cherian09c55372014-05-02 12:02:02 +0530252#define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN)
253#define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN)
254#define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN)
255
256
257#define CTRL_V3_TS_BITS \
258 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
259 TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\
260 TS_LTYPE1_EN)
261
262#define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN)
263#define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN)
264#define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000265
266/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
267#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
268#define TS_SEQ_ID_OFFSET_MASK (0x3f)
269#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
270#define TS_MSG_TYPE_EN_MASK (0xffff)
271
272/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
273#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000274
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000275/* Bit definitions for the CPSW1_TS_CTL register */
276#define CPSW_V1_TS_RX_EN BIT(0)
277#define CPSW_V1_TS_TX_EN BIT(4)
278#define CPSW_V1_MSG_TYPE_OFS 16
279
280/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
281#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
282
Mugunthan V Ndf828592012-03-18 20:17:54 +0000283struct cpsw_host_regs {
284 u32 max_blks;
285 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000286 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000287 u32 port_vlan;
288 u32 tx_pri_map;
289 u32 cpdma_tx_pri_map;
290 u32 cpdma_rx_chan_map;
291};
292
293struct cpsw_sliver_regs {
294 u32 id_ver;
295 u32 mac_control;
296 u32 mac_status;
297 u32 soft_reset;
298 u32 rx_maxlen;
299 u32 __reserved_0;
300 u32 rx_pause;
301 u32 tx_pause;
302 u32 __reserved_1;
303 u32 rx_pri_map;
304};
305
Mugunthan V Nd9718542013-07-23 15:38:17 +0530306struct cpsw_hw_stats {
307 u32 rxgoodframes;
308 u32 rxbroadcastframes;
309 u32 rxmulticastframes;
310 u32 rxpauseframes;
311 u32 rxcrcerrors;
312 u32 rxaligncodeerrors;
313 u32 rxoversizedframes;
314 u32 rxjabberframes;
315 u32 rxundersizedframes;
316 u32 rxfragments;
317 u32 __pad_0[2];
318 u32 rxoctets;
319 u32 txgoodframes;
320 u32 txbroadcastframes;
321 u32 txmulticastframes;
322 u32 txpauseframes;
323 u32 txdeferredframes;
324 u32 txcollisionframes;
325 u32 txsinglecollframes;
326 u32 txmultcollframes;
327 u32 txexcessivecollisions;
328 u32 txlatecollisions;
329 u32 txunderrun;
330 u32 txcarriersenseerrors;
331 u32 txoctets;
332 u32 octetframes64;
333 u32 octetframes65t127;
334 u32 octetframes128t255;
335 u32 octetframes256t511;
336 u32 octetframes512t1023;
337 u32 octetframes1024tup;
338 u32 netoctets;
339 u32 rxsofoverruns;
340 u32 rxmofoverruns;
341 u32 rxdmaoverruns;
342};
343
Mugunthan V Ndf828592012-03-18 20:17:54 +0000344struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000345 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000346 struct cpsw_sliver_regs __iomem *sliver;
347 int slave_num;
348 u32 mac_control;
349 struct cpsw_slave_data *data;
350 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000351 struct net_device *ndev;
352 u32 port_vlan;
353 u32 open_stat;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000354};
355
Richard Cochran9750a3a2012-10-29 08:45:15 +0000356static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
357{
358 return __raw_readl(slave->regs + offset);
359}
360
361static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
362{
363 __raw_writel(val, slave->regs + offset);
364}
365
Mugunthan V Ndf828592012-03-18 20:17:54 +0000366struct cpsw_priv {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000367 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;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000382 u8 mac_addr[ETH_ALEN];
383 struct cpsw_slave *slaves;
384 struct cpdma_ctlr *dma;
385 struct cpdma_chan *txch, *rxch;
386 struct cpsw_ale *ale;
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530387 bool rx_pause;
388 bool tx_pause;
Mugunthan V N7da11602015-08-12 15:22:53 +0530389 bool quirk_irq;
390 bool rx_irq_disabled;
391 bool tx_irq_disabled;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000392 /* snapshot of IRQ numbers */
393 u32 irqs_table[4];
394 u32 num_irqs;
Mugunthan V N9232b162013-02-11 09:52:19 +0000395 struct cpts *cpts;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000396 u32 emac_port;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000397};
398
Mugunthan V Nd9718542013-07-23 15:38:17 +0530399struct cpsw_stats {
400 char stat_string[ETH_GSTRING_LEN];
401 int type;
402 int sizeof_stat;
403 int stat_offset;
404};
405
406enum {
407 CPSW_STATS,
408 CPDMA_RX_STATS,
409 CPDMA_TX_STATS,
410};
411
412#define CPSW_STAT(m) CPSW_STATS, \
413 sizeof(((struct cpsw_hw_stats *)0)->m), \
414 offsetof(struct cpsw_hw_stats, m)
415#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
416 sizeof(((struct cpdma_chan_stats *)0)->m), \
417 offsetof(struct cpdma_chan_stats, m)
418#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
419 sizeof(((struct cpdma_chan_stats *)0)->m), \
420 offsetof(struct cpdma_chan_stats, m)
421
422static const struct cpsw_stats cpsw_gstrings_stats[] = {
423 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
424 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
425 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
426 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
427 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
428 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
429 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
430 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
431 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
432 { "Rx Fragments", CPSW_STAT(rxfragments) },
433 { "Rx Octets", CPSW_STAT(rxoctets) },
434 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
435 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
436 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
437 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
438 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
439 { "Collisions", CPSW_STAT(txcollisionframes) },
440 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
441 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
442 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
443 { "Late Collisions", CPSW_STAT(txlatecollisions) },
444 { "Tx Underrun", CPSW_STAT(txunderrun) },
445 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
446 { "Tx Octets", CPSW_STAT(txoctets) },
447 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
448 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
449 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
450 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
451 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
452 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
453 { "Net Octets", CPSW_STAT(netoctets) },
454 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
455 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
456 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
457 { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) },
458 { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
459 { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
460 { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) },
461 { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
462 { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
463 { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
464 { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
465 { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
466 { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
467 { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) },
468 { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) },
469 { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
470 { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) },
471 { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) },
472 { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) },
473 { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) },
474 { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) },
475 { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) },
476 { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) },
477 { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) },
478 { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) },
479 { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) },
480 { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) },
481 { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) },
482 { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) },
483};
484
485#define CPSW_STATS_LEN ARRAY_SIZE(cpsw_gstrings_stats)
486
Mugunthan V Ndf828592012-03-18 20:17:54 +0000487#define napi_to_priv(napi) container_of(napi, struct cpsw_priv, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000488#define for_each_slave(priv, func, arg...) \
489 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000490 struct cpsw_slave *slave; \
491 int n; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000492 if (priv->data.dual_emac) \
493 (func)((priv)->slaves + priv->emac_port, ##arg);\
494 else \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000495 for (n = (priv)->data.slaves, \
496 slave = (priv)->slaves; \
497 n; n--) \
498 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000499 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000500#define cpsw_get_slave_ndev(priv, __slave_no__) \
Mugunthan V N1973db02015-07-07 18:30:39 +0530501 ((__slave_no__ < priv->data.slaves) ? \
502 priv->slaves[__slave_no__].ndev : NULL)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000503#define cpsw_get_slave_priv(priv, __slave_no__) \
Mugunthan V N1973db02015-07-07 18:30:39 +0530504 (((__slave_no__ < priv->data.slaves) && \
505 (priv->slaves[__slave_no__].ndev)) ? \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000506 netdev_priv(priv->slaves[__slave_no__].ndev) : NULL) \
507
508#define cpsw_dual_emac_src_port_detect(status, priv, ndev, skb) \
509 do { \
510 if (!priv->data.dual_emac) \
511 break; \
512 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
513 ndev = cpsw_get_slave_ndev(priv, 0); \
514 priv = netdev_priv(ndev); \
515 skb->dev = ndev; \
516 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
517 ndev = cpsw_get_slave_ndev(priv, 1); \
518 priv = netdev_priv(ndev); \
519 skb->dev = ndev; \
520 } \
521 } while (0)
522#define cpsw_add_mcast(priv, addr) \
523 do { \
524 if (priv->data.dual_emac) { \
525 struct cpsw_slave *slave = priv->slaves + \
526 priv->emac_port; \
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300527 int slave_port = cpsw_get_slave_port( \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000528 slave->slave_num); \
529 cpsw_ale_add_mcast(priv->ale, addr, \
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300530 1 << slave_port | ALE_PORT_HOST, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000531 ALE_VLAN, slave->port_vlan, 0); \
532 } else { \
533 cpsw_ale_add_mcast(priv->ale, addr, \
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300534 ALE_ALL_PORTS, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000535 0, 0, 0); \
536 } \
537 } while (0)
538
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300539static inline int cpsw_get_slave_port(u32 slave_num)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000540{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300541 return slave_num + 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000542}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000543
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530544static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
545{
546 struct cpsw_priv *priv = netdev_priv(ndev);
547 struct cpsw_ale *ale = priv->ale;
548 int i;
549
550 if (priv->data.dual_emac) {
551 bool flag = false;
552
553 /* Enabling promiscuous mode for one interface will be
554 * common for both the interface as the interface shares
555 * the same hardware resource.
556 */
Heiko Schocher0d961b32014-02-13 14:47:27 +0100557 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530558 if (priv->slaves[i].ndev->flags & IFF_PROMISC)
559 flag = true;
560
561 if (!enable && flag) {
562 enable = true;
563 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
564 }
565
566 if (enable) {
567 /* Enable Bypass */
568 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
569
570 dev_dbg(&ndev->dev, "promiscuity enabled\n");
571 } else {
572 /* Disable Bypass */
573 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
574 dev_dbg(&ndev->dev, "promiscuity disabled\n");
575 }
576 } else {
577 if (enable) {
578 unsigned long timeout = jiffies + HZ;
579
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400580 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
581 for (i = 0; i <= priv->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530582 cpsw_ale_control_set(ale, i,
583 ALE_PORT_NOLEARN, 1);
584 cpsw_ale_control_set(ale, i,
585 ALE_PORT_NO_SA_UPDATE, 1);
586 }
587
588 /* Clear All Untouched entries */
589 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
590 do {
591 cpu_relax();
592 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
593 break;
594 } while (time_after(timeout, jiffies));
595 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
596
597 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300598 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1);
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530599
600 /* Flood All Unicast Packets to Host port */
601 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
602 dev_dbg(&ndev->dev, "promiscuity enabled\n");
603 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400604 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530605 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
606
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400607 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
608 for (i = 0; i <= priv->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530609 cpsw_ale_control_set(ale, i,
610 ALE_PORT_NOLEARN, 0);
611 cpsw_ale_control_set(ale, i,
612 ALE_PORT_NO_SA_UPDATE, 0);
613 }
614 dev_dbg(&ndev->dev, "promiscuity disabled\n");
615 }
616 }
617}
618
Mugunthan V N5c50a852012-10-29 08:45:11 +0000619static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
620{
621 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V N25906052015-01-13 17:35:49 +0530622 int vid;
623
624 if (priv->data.dual_emac)
625 vid = priv->slaves[priv->emac_port].port_vlan;
626 else
627 vid = priv->data.default_vlan;
Mugunthan V N5c50a852012-10-29 08:45:11 +0000628
629 if (ndev->flags & IFF_PROMISC) {
630 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530631 cpsw_set_promiscious(ndev, true);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400632 cpsw_ale_set_allmulti(priv->ale, IFF_ALLMULTI);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000633 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530634 } else {
635 /* Disable promiscuous mode */
636 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000637 }
638
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400639 /* Restore allmulti on vlans if necessary */
640 cpsw_ale_set_allmulti(priv->ale, priv->ndev->flags & IFF_ALLMULTI);
641
Mugunthan V N5c50a852012-10-29 08:45:11 +0000642 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300643 cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS, vid);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000644
645 if (!netdev_mc_empty(ndev)) {
646 struct netdev_hw_addr *ha;
647
648 /* program multicast address list into ALE register */
649 netdev_for_each_mc_addr(ha, ndev) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000650 cpsw_add_mcast(priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000651 }
652 }
653}
654
Mugunthan V Ndf828592012-03-18 20:17:54 +0000655static void cpsw_intr_enable(struct cpsw_priv *priv)
656{
Richard Cochran996a5c22012-10-29 08:45:12 +0000657 __raw_writel(0xFF, &priv->wr_regs->tx_en);
658 __raw_writel(0xFF, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000659
660 cpdma_ctlr_int_ctrl(priv->dma, true);
661 return;
662}
663
664static void cpsw_intr_disable(struct cpsw_priv *priv)
665{
Richard Cochran996a5c22012-10-29 08:45:12 +0000666 __raw_writel(0, &priv->wr_regs->tx_en);
667 __raw_writel(0, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000668
669 cpdma_ctlr_int_ctrl(priv->dma, false);
670 return;
671}
672
Olof Johansson1a3b5052013-12-11 15:58:07 -0800673static void cpsw_tx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000674{
675 struct sk_buff *skb = token;
676 struct net_device *ndev = skb->dev;
677 struct cpsw_priv *priv = netdev_priv(ndev);
678
Mugunthan V Nfae50822013-01-17 06:31:34 +0000679 /* Check whether the queue is stopped due to stalled tx dma, if the
680 * queue is stopped then start the queue as we have free desc for tx
681 */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000682 if (unlikely(netif_queue_stopped(ndev)))
Mugunthan V Nb56d6b3f2013-03-27 04:41:59 +0000683 netif_wake_queue(ndev);
Mugunthan V N9232b162013-02-11 09:52:19 +0000684 cpts_tx_timestamp(priv->cpts, skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100685 ndev->stats.tx_packets++;
686 ndev->stats.tx_bytes += len;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000687 dev_kfree_skb_any(skb);
688}
689
Olof Johansson1a3b5052013-12-11 15:58:07 -0800690static void cpsw_rx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000691{
692 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000693 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000694 struct net_device *ndev = skb->dev;
695 struct cpsw_priv *priv = netdev_priv(ndev);
696 int ret = 0;
697
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000698 cpsw_dual_emac_src_port_detect(status, priv, ndev, skb);
699
Mugunthan V N16e5c572014-04-10 14:23:23 +0530700 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530701 bool ndev_status = false;
702 struct cpsw_slave *slave = priv->slaves;
703 int n;
704
705 if (priv->data.dual_emac) {
706 /* In dual emac mode check for all interfaces */
707 for (n = priv->data.slaves; n; n--, slave++)
708 if (netif_running(slave->ndev))
709 ndev_status = true;
710 }
711
712 if (ndev_status && (status >= 0)) {
713 /* The packet received is for the interface which
714 * is already down and the other interface is up
Joe Perchesdbedd442015-03-06 20:49:12 -0800715 * and running, instead of freeing which results
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530716 * in reducing of the number of rx descriptor in
717 * DMA engine, requeue skb back to cpdma.
718 */
719 new_skb = skb;
720 goto requeue;
721 }
722
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000723 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000724 dev_kfree_skb_any(skb);
725 return;
726 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000727
728 new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max);
729 if (new_skb) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000730 skb_put(skb, len);
Mugunthan V N9232b162013-02-11 09:52:19 +0000731 cpts_rx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000732 skb->protocol = eth_type_trans(skb, ndev);
733 netif_receive_skb(skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100734 ndev->stats.rx_bytes += len;
735 ndev->stats.rx_packets++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000736 } else {
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100737 ndev->stats.rx_dropped++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000738 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000739 }
740
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530741requeue:
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000742 ret = cpdma_chan_submit(priv->rxch, new_skb, new_skb->data,
743 skb_tailroom(new_skb), 0);
744 if (WARN_ON(ret < 0))
745 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000746}
747
Felipe Balbic03abd82015-01-16 10:11:12 -0600748static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000749{
750 struct cpsw_priv *priv = dev_id;
Felipe Balbi7ce67a32015-01-02 16:15:59 -0600751
Mugunthan V N32a74322015-08-04 16:06:20 +0530752 writel(0, &priv->wr_regs->tx_en);
Felipe Balbic03abd82015-01-16 10:11:12 -0600753 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
Felipe Balbic03abd82015-01-16 10:11:12 -0600754
Mugunthan V N7da11602015-08-12 15:22:53 +0530755 if (priv->quirk_irq) {
756 disable_irq_nosync(priv->irqs_table[1]);
757 priv->tx_irq_disabled = true;
758 }
759
Mugunthan V N32a74322015-08-04 16:06:20 +0530760 napi_schedule(&priv->napi_tx);
Felipe Balbic03abd82015-01-16 10:11:12 -0600761 return IRQ_HANDLED;
762}
763
764static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id)
765{
766 struct cpsw_priv *priv = dev_id;
767
768 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
Mugunthan V N870915f2015-08-04 16:06:18 +0530769 writel(0, &priv->wr_regs->rx_en);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000770
Mugunthan V N7da11602015-08-12 15:22:53 +0530771 if (priv->quirk_irq) {
772 disable_irq_nosync(priv->irqs_table[0]);
773 priv->rx_irq_disabled = true;
774 }
775
Mugunthan V N32a74322015-08-04 16:06:20 +0530776 napi_schedule(&priv->napi_rx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +0530777 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000778}
779
Mugunthan V N32a74322015-08-04 16:06:20 +0530780static int cpsw_tx_poll(struct napi_struct *napi_tx, int budget)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000781{
Mugunthan V N32a74322015-08-04 16:06:20 +0530782 struct cpsw_priv *priv = napi_to_priv(napi_tx);
783 int num_tx;
784
785 num_tx = cpdma_chan_process(priv->txch, budget);
786 if (num_tx < budget) {
787 napi_complete(napi_tx);
788 writel(0xff, &priv->wr_regs->tx_en);
Mugunthan V N7da11602015-08-12 15:22:53 +0530789 if (priv->quirk_irq && priv->tx_irq_disabled) {
790 priv->tx_irq_disabled = false;
791 enable_irq(priv->irqs_table[1]);
792 }
Mugunthan V N32a74322015-08-04 16:06:20 +0530793 }
794
Mugunthan V N32a74322015-08-04 16:06:20 +0530795 return num_tx;
796}
797
798static int cpsw_rx_poll(struct napi_struct *napi_rx, int budget)
799{
800 struct cpsw_priv *priv = napi_to_priv(napi_rx);
Mugunthan V N1e353cd2015-07-21 16:00:42 +0530801 int num_rx;
Mugunthan V N510a1e722013-02-17 22:19:20 +0000802
Mugunthan V Ndf828592012-03-18 20:17:54 +0000803 num_rx = cpdma_chan_process(priv->rxch, budget);
Mugunthan V N510a1e722013-02-17 22:19:20 +0000804 if (num_rx < budget) {
Mugunthan V N32a74322015-08-04 16:06:20 +0530805 napi_complete(napi_rx);
Mugunthan V N870915f2015-08-04 16:06:18 +0530806 writel(0xff, &priv->wr_regs->rx_en);
Mugunthan V N7da11602015-08-12 15:22:53 +0530807 if (priv->quirk_irq && priv->rx_irq_disabled) {
808 priv->rx_irq_disabled = false;
809 enable_irq(priv->irqs_table[0]);
810 }
Mugunthan V N510a1e722013-02-17 22:19:20 +0000811 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000812
Mugunthan V Ndf828592012-03-18 20:17:54 +0000813 return num_rx;
814}
815
816static inline void soft_reset(const char *module, void __iomem *reg)
817{
818 unsigned long timeout = jiffies + HZ;
819
820 __raw_writel(1, reg);
821 do {
822 cpu_relax();
823 } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies));
824
825 WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module);
826}
827
828#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
829 ((mac)[2] << 16) | ((mac)[3] << 24))
830#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
831
832static void cpsw_set_slave_mac(struct cpsw_slave *slave,
833 struct cpsw_priv *priv)
834{
Richard Cochran9750a3a2012-10-29 08:45:15 +0000835 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
836 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000837}
838
839static void _cpsw_adjust_link(struct cpsw_slave *slave,
840 struct cpsw_priv *priv, bool *link)
841{
842 struct phy_device *phy = slave->phy;
843 u32 mac_control = 0;
844 u32 slave_port;
845
846 if (!phy)
847 return;
848
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300849 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000850
851 if (phy->link) {
852 mac_control = priv->data.mac_control;
853
854 /* enable forwarding */
855 cpsw_ale_control_set(priv->ale, slave_port,
856 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
857
858 if (phy->speed == 1000)
859 mac_control |= BIT(7); /* GIGABITEN */
860 if (phy->duplex)
861 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +0000862
863 /* set speed_in input in case RMII mode is used in 100Mbps */
864 if (phy->speed == 100)
865 mac_control |= BIT(15);
Mugunthan V Na81d8762013-12-13 18:42:55 +0530866 else if (phy->speed == 10)
867 mac_control |= BIT(18); /* In Band mode */
Daniel Mack342b7b72012-09-27 09:19:34 +0000868
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530869 if (priv->rx_pause)
870 mac_control |= BIT(3);
871
872 if (priv->tx_pause)
873 mac_control |= BIT(4);
874
Mugunthan V Ndf828592012-03-18 20:17:54 +0000875 *link = true;
876 } else {
877 mac_control = 0;
878 /* disable forwarding */
879 cpsw_ale_control_set(priv->ale, slave_port,
880 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
881 }
882
883 if (mac_control != slave->mac_control) {
884 phy_print_status(phy);
885 __raw_writel(mac_control, &slave->sliver->mac_control);
886 }
887
888 slave->mac_control = mac_control;
889}
890
891static void cpsw_adjust_link(struct net_device *ndev)
892{
893 struct cpsw_priv *priv = netdev_priv(ndev);
894 bool link = false;
895
896 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
897
898 if (link) {
899 netif_carrier_on(ndev);
900 if (netif_running(ndev))
901 netif_wake_queue(ndev);
902 } else {
903 netif_carrier_off(ndev);
904 netif_stop_queue(ndev);
905 }
906}
907
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000908static int cpsw_get_coalesce(struct net_device *ndev,
909 struct ethtool_coalesce *coal)
910{
911 struct cpsw_priv *priv = netdev_priv(ndev);
912
913 coal->rx_coalesce_usecs = priv->coal_intvl;
914 return 0;
915}
916
917static int cpsw_set_coalesce(struct net_device *ndev,
918 struct ethtool_coalesce *coal)
919{
920 struct cpsw_priv *priv = netdev_priv(ndev);
921 u32 int_ctrl;
922 u32 num_interrupts = 0;
923 u32 prescale = 0;
924 u32 addnl_dvdr = 1;
925 u32 coal_intvl = 0;
926
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000927 coal_intvl = coal->rx_coalesce_usecs;
928
929 int_ctrl = readl(&priv->wr_regs->int_control);
930 prescale = priv->bus_freq_mhz * 4;
931
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530932 if (!coal->rx_coalesce_usecs) {
933 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
934 goto update_return;
935 }
936
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000937 if (coal_intvl < CPSW_CMINTMIN_INTVL)
938 coal_intvl = CPSW_CMINTMIN_INTVL;
939
940 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
941 /* Interrupt pacer works with 4us Pulse, we can
942 * throttle further by dilating the 4us pulse.
943 */
944 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
945
946 if (addnl_dvdr > 1) {
947 prescale *= addnl_dvdr;
948 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
949 coal_intvl = (CPSW_CMINTMAX_INTVL
950 * addnl_dvdr);
951 } else {
952 addnl_dvdr = 1;
953 coal_intvl = CPSW_CMINTMAX_INTVL;
954 }
955 }
956
957 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
958 writel(num_interrupts, &priv->wr_regs->rx_imax);
959 writel(num_interrupts, &priv->wr_regs->tx_imax);
960
961 int_ctrl |= CPSW_INTPACEEN;
962 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
963 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530964
965update_return:
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000966 writel(int_ctrl, &priv->wr_regs->int_control);
967
968 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
969 if (priv->data.dual_emac) {
970 int i;
971
972 for (i = 0; i < priv->data.slaves; i++) {
973 priv = netdev_priv(priv->slaves[i].ndev);
974 priv->coal_intvl = coal_intvl;
975 }
976 } else {
977 priv->coal_intvl = coal_intvl;
978 }
979
980 return 0;
981}
982
Mugunthan V Nd9718542013-07-23 15:38:17 +0530983static int cpsw_get_sset_count(struct net_device *ndev, int sset)
984{
985 switch (sset) {
986 case ETH_SS_STATS:
987 return CPSW_STATS_LEN;
988 default:
989 return -EOPNOTSUPP;
990 }
991}
992
993static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
994{
995 u8 *p = data;
996 int i;
997
998 switch (stringset) {
999 case ETH_SS_STATS:
1000 for (i = 0; i < CPSW_STATS_LEN; i++) {
1001 memcpy(p, cpsw_gstrings_stats[i].stat_string,
1002 ETH_GSTRING_LEN);
1003 p += ETH_GSTRING_LEN;
1004 }
1005 break;
1006 }
1007}
1008
1009static void cpsw_get_ethtool_stats(struct net_device *ndev,
1010 struct ethtool_stats *stats, u64 *data)
1011{
1012 struct cpsw_priv *priv = netdev_priv(ndev);
1013 struct cpdma_chan_stats rx_stats;
1014 struct cpdma_chan_stats tx_stats;
1015 u32 val;
1016 u8 *p;
1017 int i;
1018
1019 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
1020 cpdma_chan_get_stats(priv->rxch, &rx_stats);
1021 cpdma_chan_get_stats(priv->txch, &tx_stats);
1022
1023 for (i = 0; i < CPSW_STATS_LEN; i++) {
1024 switch (cpsw_gstrings_stats[i].type) {
1025 case CPSW_STATS:
1026 val = readl(priv->hw_stats +
1027 cpsw_gstrings_stats[i].stat_offset);
1028 data[i] = val;
1029 break;
1030
1031 case CPDMA_RX_STATS:
1032 p = (u8 *)&rx_stats +
1033 cpsw_gstrings_stats[i].stat_offset;
1034 data[i] = *(u32 *)p;
1035 break;
1036
1037 case CPDMA_TX_STATS:
1038 p = (u8 *)&tx_stats +
1039 cpsw_gstrings_stats[i].stat_offset;
1040 data[i] = *(u32 *)p;
1041 break;
1042 }
1043 }
1044}
1045
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001046static int cpsw_common_res_usage_state(struct cpsw_priv *priv)
1047{
1048 u32 i;
1049 u32 usage_count = 0;
1050
1051 if (!priv->data.dual_emac)
1052 return 0;
1053
1054 for (i = 0; i < priv->data.slaves; i++)
1055 if (priv->slaves[i].open_stat)
1056 usage_count++;
1057
1058 return usage_count;
1059}
1060
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001061static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv,
1062 struct sk_buff *skb)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001063{
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001064 return cpdma_chan_submit(priv->txch, skb, skb->data, skb->len,
1065 priv->emac_port + priv->data.dual_emac);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001066}
1067
1068static inline void cpsw_add_dual_emac_def_ale_entries(
1069 struct cpsw_priv *priv, struct cpsw_slave *slave,
1070 u32 slave_port)
1071{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001072 u32 port_mask = 1 << slave_port | ALE_PORT_HOST;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001073
1074 if (priv->version == CPSW_VERSION_1)
1075 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1076 else
1077 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
1078 cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
1079 port_mask, port_mask, 0);
1080 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1081 port_mask, ALE_VLAN, slave->port_vlan, 0);
1082 cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001083 HOST_PORT_NUM, ALE_VLAN | ALE_SECURE, slave->port_vlan);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001084}
1085
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001086static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001087{
1088 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001089
1090 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1091 soft_reset(name, &slave->sliver->soft_reset);
1092}
1093
1094static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1095{
Mugunthan V Ndf828592012-03-18 20:17:54 +00001096 u32 slave_port;
1097
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001098 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001099
1100 /* setup priority mapping */
1101 __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001102
1103 switch (priv->version) {
1104 case CPSW_VERSION_1:
1105 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
1106 break;
1107 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05301108 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05301109 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +00001110 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
1111 break;
1112 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001113
1114 /* setup max packet size, and mac address */
1115 __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen);
1116 cpsw_set_slave_mac(slave, priv);
1117
1118 slave->mac_control = 0; /* no link yet */
1119
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001120 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001121
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001122 if (priv->data.dual_emac)
1123 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1124 else
1125 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1126 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001127
David Rivshind733f7542016-04-27 21:32:31 -04001128 if (slave->data->phy_node) {
David Rivshin552165b2016-04-27 21:25:25 -04001129 slave->phy = of_phy_connect(priv->ndev, slave->data->phy_node,
Heiko Schocher9e42f712015-10-17 06:04:35 +02001130 &cpsw_adjust_link, 0, slave->data->phy_if);
David Rivshind733f7542016-04-27 21:32:31 -04001131 if (!slave->phy) {
1132 dev_err(priv->dev, "phy \"%s\" not found on slave %d\n",
1133 slave->data->phy_node->full_name,
1134 slave->slave_num);
1135 return;
1136 }
1137 } else {
Heiko Schocher9e42f712015-10-17 06:04:35 +02001138 slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001139 &cpsw_adjust_link, slave->data->phy_if);
David Rivshind733f7542016-04-27 21:32:31 -04001140 if (IS_ERR(slave->phy)) {
1141 dev_err(priv->dev,
1142 "phy \"%s\" not found on slave %d, err %ld\n",
1143 slave->data->phy_id, slave->slave_num,
1144 PTR_ERR(slave->phy));
1145 slave->phy = NULL;
1146 return;
1147 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001148 }
David Rivshind733f7542016-04-27 21:32:31 -04001149
1150 phy_attached_info(slave->phy);
1151
1152 phy_start(slave->phy);
1153
1154 /* Configure GMII_SEL register */
1155 cpsw_phy_sel(&priv->pdev->dev, slave->phy->interface, slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001156}
1157
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001158static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1159{
1160 const int vlan = priv->data.default_vlan;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001161 u32 reg;
1162 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001163 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001164
1165 reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
1166 CPSW2_PORT_VLAN;
1167
1168 writel(vlan, &priv->host_port_regs->port_vlan);
1169
Daniel Mack0237c112013-02-26 04:06:20 +00001170 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001171 slave_write(priv->slaves + i, vlan, reg);
1172
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001173 if (priv->ndev->flags & IFF_ALLMULTI)
1174 unreg_mcast_mask = ALE_ALL_PORTS;
1175 else
1176 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1177
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001178 cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS,
1179 ALE_ALL_PORTS, ALE_ALL_PORTS,
1180 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001181}
1182
Mugunthan V Ndf828592012-03-18 20:17:54 +00001183static void cpsw_init_host_port(struct cpsw_priv *priv)
1184{
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001185 u32 control_reg;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001186 u32 fifo_mode;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001187
Mugunthan V Ndf828592012-03-18 20:17:54 +00001188 /* soft reset the controller and initialize ale */
1189 soft_reset("cpsw", &priv->regs->soft_reset);
1190 cpsw_ale_start(priv->ale);
1191
1192 /* switch to vlan unaware mode */
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001193 cpsw_ale_control_set(priv->ale, HOST_PORT_NUM, ALE_VLAN_AWARE,
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001194 CPSW_ALE_VLAN_AWARE);
1195 control_reg = readl(&priv->regs->control);
1196 control_reg |= CPSW_VLAN_AWARE;
1197 writel(control_reg, &priv->regs->control);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001198 fifo_mode = (priv->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
1199 CPSW_FIFO_NORMAL_MODE;
1200 writel(fifo_mode, &priv->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001201
1202 /* setup host port priority mapping */
1203 __raw_writel(CPDMA_TX_PRIORITY_MAP,
1204 &priv->host_port_regs->cpdma_tx_pri_map);
1205 __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map);
1206
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001207 cpsw_ale_control_set(priv->ale, HOST_PORT_NUM,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001208 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1209
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001210 if (!priv->data.dual_emac) {
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001211 cpsw_ale_add_ucast(priv->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001212 0, 0);
1213 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001214 ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001215 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001216}
1217
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001218static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv)
1219{
Schuyler Patton3995d262014-03-03 16:19:06 +05301220 u32 slave_port;
1221
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001222 slave_port = cpsw_get_slave_port(slave->slave_num);
Schuyler Patton3995d262014-03-03 16:19:06 +05301223
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001224 if (!slave->phy)
1225 return;
1226 phy_stop(slave->phy);
1227 phy_disconnect(slave->phy);
1228 slave->phy = NULL;
Schuyler Patton3995d262014-03-03 16:19:06 +05301229 cpsw_ale_control_set(priv->ale, slave_port,
1230 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Grygorii Strashko1f95ba02016-06-24 21:23:41 +03001231 soft_reset_slave(slave);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001232}
1233
Mugunthan V Ndf828592012-03-18 20:17:54 +00001234static int cpsw_ndo_open(struct net_device *ndev)
1235{
1236 struct cpsw_priv *priv = netdev_priv(ndev);
1237 int i, ret;
1238 u32 reg;
1239
Grygorii Strashko108a6532016-06-24 21:23:42 +03001240 ret = pm_runtime_get_sync(&priv->pdev->dev);
1241 if (ret < 0) {
1242 pm_runtime_put_noidle(&priv->pdev->dev);
1243 return ret;
1244 }
Grygorii Strashko3fa88c52016-04-19 21:09:49 +03001245
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001246 if (!cpsw_common_res_usage_state(priv))
1247 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001248 netif_carrier_off(ndev);
1249
Richard Cochran549985e2012-11-14 09:07:56 +00001250 reg = priv->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001251
1252 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1253 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1254 CPSW_RTL_VERSION(reg));
1255
1256 /* initialize host and slave ports */
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001257 if (!cpsw_common_res_usage_state(priv))
1258 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001259 for_each_slave(priv, cpsw_slave_open, priv);
1260
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001261 /* Add default VLAN */
Mugunthan V Ne6afea02014-06-18 17:21:48 +05301262 if (!priv->data.dual_emac)
1263 cpsw_add_default_vlan(priv);
1264 else
1265 cpsw_ale_add_vlan(priv->ale, priv->data.default_vlan,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001266 ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001267
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001268 if (!cpsw_common_res_usage_state(priv)) {
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301269 struct cpsw_priv *priv_sl0 = cpsw_get_slave_priv(priv, 0);
Ivan Khoronzhuk17933312016-06-17 13:25:39 +03001270 int buf_num;
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301271
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001272 /* setup tx dma to fixed prio and zero offset */
1273 cpdma_control_set(priv->dma, CPDMA_TX_PRIO_FIXED, 1);
1274 cpdma_control_set(priv->dma, CPDMA_RX_BUFFER_OFFSET, 0);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001275
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001276 /* disable priority elevation */
1277 __raw_writel(0, &priv->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001278
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001279 /* enable statistics collection only on all ports */
1280 __raw_writel(0x7, &priv->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001281
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301282 /* Enable internal fifo flow control */
1283 writel(0x7, &priv->regs->flow_control);
1284
Mugunthan V N32a74322015-08-04 16:06:20 +05301285 napi_enable(&priv_sl0->napi_rx);
1286 napi_enable(&priv_sl0->napi_tx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301287
Mugunthan V N7da11602015-08-12 15:22:53 +05301288 if (priv_sl0->tx_irq_disabled) {
1289 priv_sl0->tx_irq_disabled = false;
1290 enable_irq(priv->irqs_table[1]);
1291 }
1292
1293 if (priv_sl0->rx_irq_disabled) {
1294 priv_sl0->rx_irq_disabled = false;
1295 enable_irq(priv->irqs_table[0]);
1296 }
1297
Ivan Khoronzhuk17933312016-06-17 13:25:39 +03001298 buf_num = cpdma_chan_get_rx_buf_num(priv->dma);
1299 for (i = 0; i < buf_num; i++) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001300 struct sk_buff *skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001301
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001302 ret = -ENOMEM;
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001303 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1304 priv->rx_packet_max, GFP_KERNEL);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001305 if (!skb)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001306 goto err_cleanup;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001307 ret = cpdma_chan_submit(priv->rxch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001308 skb_tailroom(skb), 0);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001309 if (ret < 0) {
1310 kfree_skb(skb);
1311 goto err_cleanup;
1312 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001313 }
1314 /* continue even if we didn't manage to submit all
1315 * receive descs
1316 */
1317 cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001318
1319 if (cpts_register(&priv->pdev->dev, priv->cpts,
1320 priv->data.cpts_clock_mult,
1321 priv->data.cpts_clock_shift))
1322 dev_err(priv->dev, "error registering cpts device\n");
1323
Mugunthan V Ndf828592012-03-18 20:17:54 +00001324 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001325
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001326 /* Enable Interrupt pacing if configured */
1327 if (priv->coal_intvl != 0) {
1328 struct ethtool_coalesce coal;
1329
Ivan Khoronzhuk8478b6c2016-06-02 16:14:52 +03001330 coal.rx_coalesce_usecs = priv->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001331 cpsw_set_coalesce(ndev, &coal);
1332 }
1333
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301334 cpdma_ctlr_start(priv->dma);
1335 cpsw_intr_enable(priv);
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301336
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001337 if (priv->data.dual_emac)
1338 priv->slaves[priv->emac_port].open_stat = true;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001339 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001340
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001341err_cleanup:
1342 cpdma_ctlr_stop(priv->dma);
1343 for_each_slave(priv, cpsw_slave_stop, priv);
1344 pm_runtime_put_sync(&priv->pdev->dev);
1345 netif_carrier_off(priv->ndev);
1346 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001347}
1348
1349static int cpsw_ndo_stop(struct net_device *ndev)
1350{
1351 struct cpsw_priv *priv = netdev_priv(ndev);
1352
1353 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001354 netif_stop_queue(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001355 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001356
1357 if (cpsw_common_res_usage_state(priv) <= 1) {
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301358 struct cpsw_priv *priv_sl0 = cpsw_get_slave_priv(priv, 0);
1359
Mugunthan V N32a74322015-08-04 16:06:20 +05301360 napi_disable(&priv_sl0->napi_rx);
1361 napi_disable(&priv_sl0->napi_tx);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001362 cpts_unregister(priv->cpts);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001363 cpsw_intr_disable(priv);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001364 cpdma_ctlr_stop(priv->dma);
1365 cpsw_ale_stop(priv->ale);
1366 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001367 for_each_slave(priv, cpsw_slave_stop, priv);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001368 pm_runtime_put_sync(&priv->pdev->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001369 if (priv->data.dual_emac)
1370 priv->slaves[priv->emac_port].open_stat = false;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001371 return 0;
1372}
1373
1374static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1375 struct net_device *ndev)
1376{
1377 struct cpsw_priv *priv = netdev_priv(ndev);
1378 int ret;
1379
Florian Westphal860e9532016-05-03 16:33:13 +02001380 netif_trans_update(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001381
1382 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1383 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001384 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001385 return NETDEV_TX_OK;
1386 }
1387
Mugunthan V N9232b162013-02-11 09:52:19 +00001388 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
1389 priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001390 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1391
1392 skb_tx_timestamp(skb);
1393
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001394 ret = cpsw_tx_packet_submit(priv, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001395 if (unlikely(ret != 0)) {
1396 cpsw_err(priv, tx_err, "desc submit failed\n");
1397 goto fail;
1398 }
1399
Mugunthan V Nfae50822013-01-17 06:31:34 +00001400 /* If there is no more tx desc left free then we need to
1401 * tell the kernel to stop sending us tx frames.
1402 */
Daniel Mackd35162f2013-03-12 06:31:19 +00001403 if (unlikely(!cpdma_check_free_tx_desc(priv->txch)))
Mugunthan V Nfae50822013-01-17 06:31:34 +00001404 netif_stop_queue(ndev);
1405
Mugunthan V Ndf828592012-03-18 20:17:54 +00001406 return NETDEV_TX_OK;
1407fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001408 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001409 netif_stop_queue(ndev);
1410 return NETDEV_TX_BUSY;
1411}
1412
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001413#ifdef CONFIG_TI_CPTS
1414
1415static void cpsw_hwtstamp_v1(struct cpsw_priv *priv)
1416{
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001417 struct cpsw_slave *slave = &priv->slaves[priv->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001418 u32 ts_en, seq_id;
1419
Mugunthan V N9232b162013-02-11 09:52:19 +00001420 if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001421 slave_write(slave, 0, CPSW1_TS_CTL);
1422 return;
1423 }
1424
1425 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1426 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1427
Mugunthan V N9232b162013-02-11 09:52:19 +00001428 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001429 ts_en |= CPSW_V1_TS_TX_EN;
1430
Mugunthan V N9232b162013-02-11 09:52:19 +00001431 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001432 ts_en |= CPSW_V1_TS_RX_EN;
1433
1434 slave_write(slave, ts_en, CPSW1_TS_CTL);
1435 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1436}
1437
1438static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1439{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001440 struct cpsw_slave *slave;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001441 u32 ctrl, mtype;
1442
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001443 if (priv->data.dual_emac)
1444 slave = &priv->slaves[priv->emac_port];
1445 else
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001446 slave = &priv->slaves[priv->data.active_slave];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001447
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001448 ctrl = slave_read(slave, CPSW2_CONTROL);
George Cherian09c55372014-05-02 12:02:02 +05301449 switch (priv->version) {
1450 case CPSW_VERSION_2:
1451 ctrl &= ~CTRL_V2_ALL_TS_MASK;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001452
George Cherian09c55372014-05-02 12:02:02 +05301453 if (priv->cpts->tx_enable)
1454 ctrl |= CTRL_V2_TX_TS_BITS;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001455
George Cherian09c55372014-05-02 12:02:02 +05301456 if (priv->cpts->rx_enable)
1457 ctrl |= CTRL_V2_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001458 break;
George Cherian09c55372014-05-02 12:02:02 +05301459 case CPSW_VERSION_3:
1460 default:
1461 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1462
1463 if (priv->cpts->tx_enable)
1464 ctrl |= CTRL_V3_TX_TS_BITS;
1465
1466 if (priv->cpts->rx_enable)
1467 ctrl |= CTRL_V3_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001468 break;
George Cherian09c55372014-05-02 12:02:02 +05301469 }
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001470
1471 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1472
1473 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1474 slave_write(slave, ctrl, CPSW2_CONTROL);
1475 __raw_writel(ETH_P_1588, &priv->regs->ts_ltype);
1476}
1477
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001478static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001479{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001480 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N9232b162013-02-11 09:52:19 +00001481 struct cpts *cpts = priv->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001482 struct hwtstamp_config cfg;
1483
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001484 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301485 priv->version != CPSW_VERSION_2 &&
1486 priv->version != CPSW_VERSION_3)
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001487 return -EOPNOTSUPP;
1488
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001489 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1490 return -EFAULT;
1491
1492 /* reserved for future extensions */
1493 if (cfg.flags)
1494 return -EINVAL;
1495
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001496 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001497 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001498
1499 switch (cfg.rx_filter) {
1500 case HWTSTAMP_FILTER_NONE:
1501 cpts->rx_enable = 0;
1502 break;
1503 case HWTSTAMP_FILTER_ALL:
1504 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1505 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1506 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1507 return -ERANGE;
1508 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1509 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1510 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1511 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1512 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1513 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1514 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1515 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1516 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1517 cpts->rx_enable = 1;
1518 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1519 break;
1520 default:
1521 return -ERANGE;
1522 }
1523
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001524 cpts->tx_enable = cfg.tx_type == HWTSTAMP_TX_ON;
1525
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001526 switch (priv->version) {
1527 case CPSW_VERSION_1:
1528 cpsw_hwtstamp_v1(priv);
1529 break;
1530 case CPSW_VERSION_2:
George Cherianf7d403c2014-05-02 12:02:01 +05301531 case CPSW_VERSION_3:
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001532 cpsw_hwtstamp_v2(priv);
1533 break;
1534 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001535 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001536 }
1537
1538 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1539}
1540
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001541static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1542{
1543 struct cpsw_priv *priv = netdev_priv(dev);
1544 struct cpts *cpts = priv->cpts;
1545 struct hwtstamp_config cfg;
1546
1547 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301548 priv->version != CPSW_VERSION_2 &&
1549 priv->version != CPSW_VERSION_3)
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001550 return -EOPNOTSUPP;
1551
1552 cfg.flags = 0;
1553 cfg.tx_type = cpts->tx_enable ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1554 cfg.rx_filter = (cpts->rx_enable ?
1555 HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE);
1556
1557 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1558}
1559
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001560#endif /*CONFIG_TI_CPTS*/
1561
1562static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1563{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001564 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001565 int slave_no = cpsw_slave_index(priv);
1566
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001567 if (!netif_running(dev))
1568 return -EINVAL;
1569
Mugunthan V N11f2c982013-03-11 23:16:38 +00001570 switch (cmd) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001571#ifdef CONFIG_TI_CPTS
Mugunthan V N11f2c982013-03-11 23:16:38 +00001572 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001573 return cpsw_hwtstamp_set(dev, req);
1574 case SIOCGHWTSTAMP:
1575 return cpsw_hwtstamp_get(dev, req);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001576#endif
Mugunthan V N11f2c982013-03-11 23:16:38 +00001577 }
1578
Stefan Sørensenc1b59942014-02-16 14:54:25 +01001579 if (!priv->slaves[slave_no].phy)
1580 return -EOPNOTSUPP;
1581 return phy_mii_ioctl(priv->slaves[slave_no].phy, req, cmd);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001582}
1583
Mugunthan V Ndf828592012-03-18 20:17:54 +00001584static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1585{
1586 struct cpsw_priv *priv = netdev_priv(ndev);
1587
1588 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001589 ndev->stats.tx_errors++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001590 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001591 cpdma_chan_stop(priv->txch);
1592 cpdma_chan_start(priv->txch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001593 cpsw_intr_enable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001594}
1595
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301596static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1597{
1598 struct cpsw_priv *priv = netdev_priv(ndev);
1599 struct sockaddr *addr = (struct sockaddr *)p;
1600 int flags = 0;
1601 u16 vid = 0;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001602 int ret;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301603
1604 if (!is_valid_ether_addr(addr->sa_data))
1605 return -EADDRNOTAVAIL;
1606
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001607 ret = pm_runtime_get_sync(&priv->pdev->dev);
1608 if (ret < 0) {
1609 pm_runtime_put_noidle(&priv->pdev->dev);
1610 return ret;
1611 }
1612
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301613 if (priv->data.dual_emac) {
1614 vid = priv->slaves[priv->emac_port].port_vlan;
1615 flags = ALE_VLAN;
1616 }
1617
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001618 cpsw_ale_del_ucast(priv->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301619 flags, vid);
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001620 cpsw_ale_add_ucast(priv->ale, addr->sa_data, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301621 flags, vid);
1622
1623 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1624 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1625 for_each_slave(priv, cpsw_set_slave_mac, priv);
1626
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001627 pm_runtime_put(&priv->pdev->dev);
1628
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301629 return 0;
1630}
1631
Mugunthan V Ndf828592012-03-18 20:17:54 +00001632#ifdef CONFIG_NET_POLL_CONTROLLER
1633static void cpsw_ndo_poll_controller(struct net_device *ndev)
1634{
1635 struct cpsw_priv *priv = netdev_priv(ndev);
1636
1637 cpsw_intr_disable(priv);
Felipe Balbi92cb13f2015-01-19 11:52:36 -06001638 cpsw_rx_interrupt(priv->irqs_table[0], priv);
1639 cpsw_tx_interrupt(priv->irqs_table[1], priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001640 cpsw_intr_enable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001641}
1642#endif
1643
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001644static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1645 unsigned short vid)
1646{
1647 int ret;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301648 int unreg_mcast_mask = 0;
1649 u32 port_mask;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001650
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301651 if (priv->data.dual_emac) {
1652 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001653
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301654 if (priv->ndev->flags & IFF_ALLMULTI)
1655 unreg_mcast_mask = port_mask;
1656 } else {
1657 port_mask = ALE_ALL_PORTS;
1658
1659 if (priv->ndev->flags & IFF_ALLMULTI)
1660 unreg_mcast_mask = ALE_ALL_PORTS;
1661 else
1662 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1663 }
1664
1665 ret = cpsw_ale_add_vlan(priv->ale, vid, port_mask, 0, port_mask,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001666 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001667 if (ret != 0)
1668 return ret;
1669
1670 ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001671 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001672 if (ret != 0)
1673 goto clean_vid;
1674
1675 ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301676 port_mask, ALE_VLAN, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001677 if (ret != 0)
1678 goto clean_vlan_ucast;
1679 return 0;
1680
1681clean_vlan_ucast:
1682 cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001683 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001684clean_vid:
1685 cpsw_ale_del_vlan(priv->ale, vid, 0);
1686 return ret;
1687}
1688
1689static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001690 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001691{
1692 struct cpsw_priv *priv = netdev_priv(ndev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001693 int ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001694
1695 if (vid == priv->data.default_vlan)
1696 return 0;
1697
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001698 ret = pm_runtime_get_sync(&priv->pdev->dev);
1699 if (ret < 0) {
1700 pm_runtime_put_noidle(&priv->pdev->dev);
1701 return ret;
1702 }
1703
Mugunthan V N02a54162015-01-22 15:19:22 +05301704 if (priv->data.dual_emac) {
1705 /* In dual EMAC, reserved VLAN id should not be used for
1706 * creating VLAN interfaces as this can break the dual
1707 * EMAC port separation
1708 */
1709 int i;
1710
1711 for (i = 0; i < priv->data.slaves; i++) {
1712 if (vid == priv->slaves[i].port_vlan)
1713 return -EINVAL;
1714 }
1715 }
1716
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001717 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001718 ret = cpsw_add_vlan_ale_entry(priv, vid);
1719
1720 pm_runtime_put(&priv->pdev->dev);
1721 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001722}
1723
1724static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001725 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001726{
1727 struct cpsw_priv *priv = netdev_priv(ndev);
1728 int ret;
1729
1730 if (vid == priv->data.default_vlan)
1731 return 0;
1732
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001733 ret = pm_runtime_get_sync(&priv->pdev->dev);
1734 if (ret < 0) {
1735 pm_runtime_put_noidle(&priv->pdev->dev);
1736 return ret;
1737 }
1738
Mugunthan V N02a54162015-01-22 15:19:22 +05301739 if (priv->data.dual_emac) {
1740 int i;
1741
1742 for (i = 0; i < priv->data.slaves; i++) {
1743 if (vid == priv->slaves[i].port_vlan)
1744 return -EINVAL;
1745 }
1746 }
1747
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001748 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1749 ret = cpsw_ale_del_vlan(priv->ale, vid, 0);
1750 if (ret != 0)
1751 return ret;
1752
1753 ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001754 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001755 if (ret != 0)
1756 return ret;
1757
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001758 ret = cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast,
1759 0, ALE_VLAN, vid);
1760 pm_runtime_put(&priv->pdev->dev);
1761 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001762}
1763
Mugunthan V Ndf828592012-03-18 20:17:54 +00001764static const struct net_device_ops cpsw_netdev_ops = {
1765 .ndo_open = cpsw_ndo_open,
1766 .ndo_stop = cpsw_ndo_stop,
1767 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301768 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001769 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001770 .ndo_validate_addr = eth_validate_addr,
David S. Miller5c473ed2012-03-20 00:33:59 -04001771 .ndo_change_mtu = eth_change_mtu,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001772 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00001773 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001774#ifdef CONFIG_NET_POLL_CONTROLLER
1775 .ndo_poll_controller = cpsw_ndo_poll_controller,
1776#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001777 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
1778 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001779};
1780
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301781static int cpsw_get_regs_len(struct net_device *ndev)
1782{
1783 struct cpsw_priv *priv = netdev_priv(ndev);
1784
1785 return priv->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
1786}
1787
1788static void cpsw_get_regs(struct net_device *ndev,
1789 struct ethtool_regs *regs, void *p)
1790{
1791 struct cpsw_priv *priv = netdev_priv(ndev);
1792 u32 *reg = p;
1793
1794 /* update CPSW IP version */
1795 regs->version = priv->version;
1796
1797 cpsw_ale_dump(priv->ale, reg);
1798}
1799
Mugunthan V Ndf828592012-03-18 20:17:54 +00001800static void cpsw_get_drvinfo(struct net_device *ndev,
1801 struct ethtool_drvinfo *info)
1802{
1803 struct cpsw_priv *priv = netdev_priv(ndev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001804
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301805 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00001806 strlcpy(info->version, "1.0", sizeof(info->version));
1807 strlcpy(info->bus_info, priv->pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001808}
1809
1810static u32 cpsw_get_msglevel(struct net_device *ndev)
1811{
1812 struct cpsw_priv *priv = netdev_priv(ndev);
1813 return priv->msg_enable;
1814}
1815
1816static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
1817{
1818 struct cpsw_priv *priv = netdev_priv(ndev);
1819 priv->msg_enable = value;
1820}
1821
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001822static int cpsw_get_ts_info(struct net_device *ndev,
1823 struct ethtool_ts_info *info)
1824{
1825#ifdef CONFIG_TI_CPTS
1826 struct cpsw_priv *priv = netdev_priv(ndev);
1827
1828 info->so_timestamping =
1829 SOF_TIMESTAMPING_TX_HARDWARE |
1830 SOF_TIMESTAMPING_TX_SOFTWARE |
1831 SOF_TIMESTAMPING_RX_HARDWARE |
1832 SOF_TIMESTAMPING_RX_SOFTWARE |
1833 SOF_TIMESTAMPING_SOFTWARE |
1834 SOF_TIMESTAMPING_RAW_HARDWARE;
Mugunthan V N9232b162013-02-11 09:52:19 +00001835 info->phc_index = priv->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001836 info->tx_types =
1837 (1 << HWTSTAMP_TX_OFF) |
1838 (1 << HWTSTAMP_TX_ON);
1839 info->rx_filters =
1840 (1 << HWTSTAMP_FILTER_NONE) |
1841 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
1842#else
1843 info->so_timestamping =
1844 SOF_TIMESTAMPING_TX_SOFTWARE |
1845 SOF_TIMESTAMPING_RX_SOFTWARE |
1846 SOF_TIMESTAMPING_SOFTWARE;
1847 info->phc_index = -1;
1848 info->tx_types = 0;
1849 info->rx_filters = 0;
1850#endif
1851 return 0;
1852}
1853
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001854static int cpsw_get_settings(struct net_device *ndev,
1855 struct ethtool_cmd *ecmd)
1856{
1857 struct cpsw_priv *priv = netdev_priv(ndev);
1858 int slave_no = cpsw_slave_index(priv);
1859
1860 if (priv->slaves[slave_no].phy)
1861 return phy_ethtool_gset(priv->slaves[slave_no].phy, ecmd);
1862 else
1863 return -EOPNOTSUPP;
1864}
1865
1866static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
1867{
1868 struct cpsw_priv *priv = netdev_priv(ndev);
1869 int slave_no = cpsw_slave_index(priv);
1870
1871 if (priv->slaves[slave_no].phy)
1872 return phy_ethtool_sset(priv->slaves[slave_no].phy, ecmd);
1873 else
1874 return -EOPNOTSUPP;
1875}
1876
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001877static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1878{
1879 struct cpsw_priv *priv = netdev_priv(ndev);
1880 int slave_no = cpsw_slave_index(priv);
1881
1882 wol->supported = 0;
1883 wol->wolopts = 0;
1884
1885 if (priv->slaves[slave_no].phy)
1886 phy_ethtool_get_wol(priv->slaves[slave_no].phy, wol);
1887}
1888
1889static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1890{
1891 struct cpsw_priv *priv = netdev_priv(ndev);
1892 int slave_no = cpsw_slave_index(priv);
1893
1894 if (priv->slaves[slave_no].phy)
1895 return phy_ethtool_set_wol(priv->slaves[slave_no].phy, wol);
1896 else
1897 return -EOPNOTSUPP;
1898}
1899
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301900static void cpsw_get_pauseparam(struct net_device *ndev,
1901 struct ethtool_pauseparam *pause)
1902{
1903 struct cpsw_priv *priv = netdev_priv(ndev);
1904
1905 pause->autoneg = AUTONEG_DISABLE;
1906 pause->rx_pause = priv->rx_pause ? true : false;
1907 pause->tx_pause = priv->tx_pause ? true : false;
1908}
1909
1910static int cpsw_set_pauseparam(struct net_device *ndev,
1911 struct ethtool_pauseparam *pause)
1912{
1913 struct cpsw_priv *priv = netdev_priv(ndev);
1914 bool link;
1915
1916 priv->rx_pause = pause->rx_pause ? true : false;
1917 priv->tx_pause = pause->tx_pause ? true : false;
1918
1919 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301920 return 0;
1921}
1922
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001923static int cpsw_ethtool_op_begin(struct net_device *ndev)
1924{
1925 struct cpsw_priv *priv = netdev_priv(ndev);
1926 int ret;
1927
1928 ret = pm_runtime_get_sync(&priv->pdev->dev);
1929 if (ret < 0) {
1930 cpsw_err(priv, drv, "ethtool begin failed %d\n", ret);
1931 pm_runtime_put_noidle(&priv->pdev->dev);
1932 }
1933
1934 return ret;
1935}
1936
1937static void cpsw_ethtool_op_complete(struct net_device *ndev)
1938{
1939 struct cpsw_priv *priv = netdev_priv(ndev);
1940 int ret;
1941
1942 ret = pm_runtime_put(&priv->pdev->dev);
1943 if (ret < 0)
1944 cpsw_err(priv, drv, "ethtool complete failed %d\n", ret);
1945}
1946
Mugunthan V Ndf828592012-03-18 20:17:54 +00001947static const struct ethtool_ops cpsw_ethtool_ops = {
1948 .get_drvinfo = cpsw_get_drvinfo,
1949 .get_msglevel = cpsw_get_msglevel,
1950 .set_msglevel = cpsw_set_msglevel,
1951 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001952 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001953 .get_settings = cpsw_get_settings,
1954 .set_settings = cpsw_set_settings,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001955 .get_coalesce = cpsw_get_coalesce,
1956 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05301957 .get_sset_count = cpsw_get_sset_count,
1958 .get_strings = cpsw_get_strings,
1959 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301960 .get_pauseparam = cpsw_get_pauseparam,
1961 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001962 .get_wol = cpsw_get_wol,
1963 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301964 .get_regs_len = cpsw_get_regs_len,
1965 .get_regs = cpsw_get_regs,
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001966 .begin = cpsw_ethtool_op_begin,
1967 .complete = cpsw_ethtool_op_complete,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001968};
1969
Richard Cochran549985e2012-11-14 09:07:56 +00001970static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv,
1971 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001972{
1973 void __iomem *regs = priv->regs;
1974 int slave_num = slave->slave_num;
1975 struct cpsw_slave_data *data = priv->data.slave_data + slave_num;
1976
1977 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00001978 slave->regs = regs + slave_reg_ofs;
1979 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001980 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001981}
1982
David Rivshin552165b2016-04-27 21:25:25 -04001983static int cpsw_probe_dt(struct cpsw_platform_data *data,
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001984 struct platform_device *pdev)
1985{
1986 struct device_node *node = pdev->dev.of_node;
1987 struct device_node *slave_node;
1988 int i = 0, ret;
1989 u32 prop;
1990
1991 if (!node)
1992 return -EINVAL;
1993
1994 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301995 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001996 return -EINVAL;
1997 }
1998 data->slaves = prop;
1999
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002000 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302001 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302002 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002003 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002004 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002005
Richard Cochran00ab94e2012-10-29 08:45:19 +00002006 if (of_property_read_u32(node, "cpts_clock_mult", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302007 dev_err(&pdev->dev, "Missing cpts_clock_mult property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302008 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00002009 }
2010 data->cpts_clock_mult = prop;
2011
2012 if (of_property_read_u32(node, "cpts_clock_shift", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302013 dev_err(&pdev->dev, "Missing cpts_clock_shift property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302014 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00002015 }
2016 data->cpts_clock_shift = prop;
2017
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302018 data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
2019 * sizeof(struct cpsw_slave_data),
2020 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00002021 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302022 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002023
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002024 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302025 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302026 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002027 }
2028 data->channels = prop;
2029
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002030 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302031 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302032 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002033 }
2034 data->ale_entries = prop;
2035
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002036 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302037 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302038 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002039 }
2040 data->bd_ram_size = prop;
2041
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002042 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302043 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302044 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002045 }
2046 data->mac_control = prop;
2047
Markus Pargmann281abd92013-10-04 14:44:40 +02002048 if (of_property_read_bool(node, "dual_emac"))
2049 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002050
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002051 /*
2052 * Populate all the child nodes here...
2053 */
2054 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2055 /* We do not want to force this, as in some cases may not have child */
2056 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05302057 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002058
Ben Hutchings8658aaf2016-06-21 01:16:31 +01002059 for_each_available_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00002060 struct cpsw_slave_data *slave_data = data->slave_data + i;
2061 const void *mac_addr = NULL;
Richard Cochran549985e2012-11-14 09:07:56 +00002062 int lenp;
2063 const __be32 *parp;
Richard Cochran549985e2012-11-14 09:07:56 +00002064
Markus Pargmannf468b102013-10-04 14:44:39 +02002065 /* This is no slave child node, continue */
2066 if (strcmp(slave_node->name, "slave"))
2067 continue;
2068
David Rivshin552165b2016-04-27 21:25:25 -04002069 slave_data->phy_node = of_parse_phandle(slave_node,
2070 "phy-handle", 0);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002071 parp = of_get_property(slave_node, "phy_id", &lenp);
David Rivshinae092b52016-04-27 21:38:26 -04002072 if (slave_data->phy_node) {
2073 dev_dbg(&pdev->dev,
2074 "slave[%d] using phy-handle=\"%s\"\n",
2075 i, slave_data->phy_node->full_name);
2076 } else if (of_phy_is_fixed_link(slave_node)) {
David Rivshindfc0a6d2015-12-16 23:02:11 -05002077 /* In the case of a fixed PHY, the DT node associated
2078 * to the PHY is the Ethernet MAC DT node.
2079 */
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002080 ret = of_phy_register_fixed_link(slave_node);
2081 if (ret)
2082 return ret;
David Rivshin06cd6d62016-04-27 21:45:45 -04002083 slave_data->phy_node = of_node_get(slave_node);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002084 } else if (parp) {
2085 u32 phyid;
2086 struct device_node *mdio_node;
2087 struct platform_device *mdio;
2088
2089 if (lenp != (sizeof(__be32) * 2)) {
2090 dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
2091 goto no_phy_slave;
2092 }
2093 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2094 phyid = be32_to_cpup(parp+1);
2095 mdio = of_find_device_by_node(mdio_node);
2096 of_node_put(mdio_node);
2097 if (!mdio) {
2098 dev_err(&pdev->dev, "Missing mdio platform device\n");
2099 return -EINVAL;
2100 }
2101 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2102 PHY_ID_FMT, mdio->name, phyid);
2103 } else {
David Rivshinae092b52016-04-27 21:38:26 -04002104 dev_err(&pdev->dev,
2105 "No slave[%d] phy_id, phy-handle, or fixed-link property\n",
2106 i);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002107 goto no_phy_slave;
2108 }
Mugunthan V N47276fc2014-10-24 18:51:33 +05302109 slave_data->phy_if = of_get_phy_mode(slave_node);
2110 if (slave_data->phy_if < 0) {
2111 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2112 i);
2113 return slave_data->phy_if;
2114 }
2115
2116no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00002117 mac_addr = of_get_mac_address(slave_node);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002118 if (mac_addr) {
Richard Cochran549985e2012-11-14 09:07:56 +00002119 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002120 } else {
Mugunthan V Nb6745f62015-09-21 15:56:50 +05302121 ret = ti_cm_get_macid(&pdev->dev, i,
2122 slave_data->mac_addr);
2123 if (ret)
2124 return ret;
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002125 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002126 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00002127 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002128 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302129 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002130 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05302131 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2132 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002133 } else {
2134 slave_data->dual_emac_res_vlan = prop;
2135 }
2136 }
2137
Richard Cochran549985e2012-11-14 09:07:56 +00002138 i++;
Mugunthan V N3a27bfa2013-12-02 12:53:39 +05302139 if (i == data->slaves)
2140 break;
Richard Cochran549985e2012-11-14 09:07:56 +00002141 }
2142
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002143 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002144}
2145
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002146static int cpsw_probe_dual_emac(struct platform_device *pdev,
2147 struct cpsw_priv *priv)
2148{
2149 struct cpsw_platform_data *data = &priv->data;
2150 struct net_device *ndev;
2151 struct cpsw_priv *priv_sl2;
2152 int ret = 0, i;
2153
2154 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2155 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302156 dev_err(&pdev->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002157 return -ENOMEM;
2158 }
2159
2160 priv_sl2 = netdev_priv(ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002161 priv_sl2->data = *data;
2162 priv_sl2->pdev = pdev;
2163 priv_sl2->ndev = ndev;
2164 priv_sl2->dev = &ndev->dev;
2165 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2166 priv_sl2->rx_packet_max = max(rx_packet_max, 128);
2167
2168 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2169 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2170 ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302171 dev_info(&pdev->dev, "cpsw: Detected MACID = %pM\n", priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002172 } else {
2173 random_ether_addr(priv_sl2->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302174 dev_info(&pdev->dev, "cpsw: Random MACID = %pM\n", priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002175 }
2176 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2177
2178 priv_sl2->slaves = priv->slaves;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002179 priv_sl2->coal_intvl = 0;
2180 priv_sl2->bus_freq_mhz = priv->bus_freq_mhz;
2181
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002182 priv_sl2->regs = priv->regs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002183 priv_sl2->host_port_regs = priv->host_port_regs;
2184 priv_sl2->wr_regs = priv->wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302185 priv_sl2->hw_stats = priv->hw_stats;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002186 priv_sl2->dma = priv->dma;
2187 priv_sl2->txch = priv->txch;
2188 priv_sl2->rxch = priv->rxch;
2189 priv_sl2->ale = priv->ale;
2190 priv_sl2->emac_port = 1;
2191 priv->slaves[1].ndev = ndev;
2192 priv_sl2->cpts = priv->cpts;
2193 priv_sl2->version = priv->version;
2194
2195 for (i = 0; i < priv->num_irqs; i++) {
2196 priv_sl2->irqs_table[i] = priv->irqs_table[i];
2197 priv_sl2->num_irqs = priv->num_irqs;
2198 }
Patrick McHardyf6469682013-04-19 02:04:27 +00002199 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002200
2201 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002202 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002203
2204 /* register the network device */
2205 SET_NETDEV_DEV(ndev, &pdev->dev);
2206 ret = register_netdev(ndev);
2207 if (ret) {
George Cherian88c99ff2014-05-12 10:21:19 +05302208 dev_err(&pdev->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002209 free_netdev(ndev);
2210 ret = -ENODEV;
2211 }
2212
2213 return ret;
2214}
2215
Mugunthan V N7da11602015-08-12 15:22:53 +05302216#define CPSW_QUIRK_IRQ BIT(0)
2217
2218static struct platform_device_id cpsw_devtype[] = {
2219 {
2220 /* keep it for existing comaptibles */
2221 .name = "cpsw",
2222 .driver_data = CPSW_QUIRK_IRQ,
2223 }, {
2224 .name = "am335x-cpsw",
2225 .driver_data = CPSW_QUIRK_IRQ,
2226 }, {
2227 .name = "am4372-cpsw",
2228 .driver_data = 0,
2229 }, {
2230 .name = "dra7-cpsw",
2231 .driver_data = 0,
2232 }, {
2233 /* sentinel */
2234 }
2235};
2236MODULE_DEVICE_TABLE(platform, cpsw_devtype);
2237
2238enum ti_cpsw_type {
2239 CPSW = 0,
2240 AM335X_CPSW,
2241 AM4372_CPSW,
2242 DRA7_CPSW,
2243};
2244
2245static const struct of_device_id cpsw_of_mtable[] = {
2246 { .compatible = "ti,cpsw", .data = &cpsw_devtype[CPSW], },
2247 { .compatible = "ti,am335x-cpsw", .data = &cpsw_devtype[AM335X_CPSW], },
2248 { .compatible = "ti,am4372-cpsw", .data = &cpsw_devtype[AM4372_CPSW], },
2249 { .compatible = "ti,dra7-cpsw", .data = &cpsw_devtype[DRA7_CPSW], },
2250 { /* sentinel */ },
2251};
2252MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
2253
Bill Pemberton663e12e2012-12-03 09:23:45 -05002254static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002255{
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002256 struct clk *clk;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002257 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002258 struct net_device *ndev;
2259 struct cpsw_priv *priv;
2260 struct cpdma_params dma_params;
2261 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302262 void __iomem *ss_regs;
2263 struct resource *res, *ss_res;
Mugunthan V N7da11602015-08-12 15:22:53 +05302264 const struct of_device_id *of_id;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302265 struct gpio_descs *mode;
Richard Cochran549985e2012-11-14 09:07:56 +00002266 u32 slave_offset, sliver_offset, slave_size;
Felipe Balbi5087b912015-01-16 10:11:11 -06002267 int ret = 0, i;
2268 int irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002269
Mugunthan V Ndf828592012-03-18 20:17:54 +00002270 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2271 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302272 dev_err(&pdev->dev, "error allocating net_device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002273 return -ENOMEM;
2274 }
2275
2276 platform_set_drvdata(pdev, ndev);
2277 priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002278 priv->pdev = pdev;
2279 priv->ndev = ndev;
2280 priv->dev = &ndev->dev;
2281 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2282 priv->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V N9232b162013-02-11 09:52:19 +00002283 priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL);
Sebastian Siewiorab8e99d2013-06-17 19:31:52 +02002284 if (!priv->cpts) {
George Cherian88c99ff2014-05-12 10:21:19 +05302285 dev_err(&pdev->dev, "error allocating cpts\n");
Markus Pargmann4d507df2014-09-29 08:53:14 +02002286 ret = -ENOMEM;
Mugunthan V N9232b162013-02-11 09:52:19 +00002287 goto clean_ndev_ret;
2288 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002289
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302290 mode = devm_gpiod_get_array_optional(&pdev->dev, "mode", GPIOD_OUT_LOW);
2291 if (IS_ERR(mode)) {
2292 ret = PTR_ERR(mode);
2293 dev_err(&pdev->dev, "gpio request failed, ret %d\n", ret);
2294 goto clean_ndev_ret;
2295 }
2296
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002297 /*
2298 * This may be required here for child devices.
2299 */
2300 pm_runtime_enable(&pdev->dev);
2301
Mugunthan V N739683b2013-06-06 23:45:14 +05302302 /* Select default pin state */
2303 pinctrl_pm_select_default_state(&pdev->dev);
2304
David Rivshin552165b2016-04-27 21:25:25 -04002305 if (cpsw_probe_dt(&priv->data, pdev)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302306 dev_err(&pdev->dev, "cpsw: platform data missing\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002307 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302308 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002309 }
2310 data = &priv->data;
2311
Mugunthan V Ndf828592012-03-18 20:17:54 +00002312 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
2313 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302314 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002315 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00002316 eth_random_addr(priv->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302317 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002318 }
2319
2320 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
2321
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302322 priv->slaves = devm_kzalloc(&pdev->dev,
2323 sizeof(struct cpsw_slave) * data->slaves,
2324 GFP_KERNEL);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002325 if (!priv->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302326 ret = -ENOMEM;
2327 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002328 }
2329 for (i = 0; i < data->slaves; i++)
2330 priv->slaves[i].slave_num = i;
2331
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002332 priv->slaves[0].ndev = ndev;
2333 priv->emac_port = 0;
2334
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002335 clk = devm_clk_get(&pdev->dev, "fck");
2336 if (IS_ERR(clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302337 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002338 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302339 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002340 }
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002341 priv->coal_intvl = 0;
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002342 priv->bus_freq_mhz = clk_get_rate(clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002343
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302344 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2345 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
2346 if (IS_ERR(ss_regs)) {
2347 ret = PTR_ERR(ss_regs);
2348 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002349 }
Richard Cochran549985e2012-11-14 09:07:56 +00002350 priv->regs = ss_regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002351
Mugunthan V Nf280e892013-12-11 22:09:05 -06002352 /* Need to enable clocks with runtime PM api to access module
2353 * registers
2354 */
Grygorii Strashko108a6532016-06-24 21:23:42 +03002355 ret = pm_runtime_get_sync(&pdev->dev);
2356 if (ret < 0) {
2357 pm_runtime_put_noidle(&pdev->dev);
2358 goto clean_runtime_disable_ret;
2359 }
Mugunthan V Nf280e892013-12-11 22:09:05 -06002360 priv->version = readl(&priv->regs->id_ver);
2361 pm_runtime_put_sync(&pdev->dev);
2362
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302363 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2364 priv->wr_regs = devm_ioremap_resource(&pdev->dev, res);
2365 if (IS_ERR(priv->wr_regs)) {
2366 ret = PTR_ERR(priv->wr_regs);
2367 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002368 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002369
2370 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00002371 memset(&ale_params, 0, sizeof(ale_params));
2372
2373 switch (priv->version) {
2374 case CPSW_VERSION_1:
2375 priv->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302376 priv->cpts->reg = ss_regs + CPSW1_CPTS_OFFSET;
2377 priv->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002378 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
2379 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
2380 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
2381 slave_offset = CPSW1_SLAVE_OFFSET;
2382 slave_size = CPSW1_SLAVE_SIZE;
2383 sliver_offset = CPSW1_SLIVER_OFFSET;
2384 dma_params.desc_mem_phys = 0;
2385 break;
2386 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05302387 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05302388 case CPSW_VERSION_4:
Richard Cochran549985e2012-11-14 09:07:56 +00002389 priv->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302390 priv->cpts->reg = ss_regs + CPSW2_CPTS_OFFSET;
2391 priv->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002392 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
2393 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
2394 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
2395 slave_offset = CPSW2_SLAVE_OFFSET;
2396 slave_size = CPSW2_SLAVE_SIZE;
2397 sliver_offset = CPSW2_SLIVER_OFFSET;
2398 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302399 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00002400 break;
2401 default:
2402 dev_err(priv->dev, "unknown version 0x%08x\n", priv->version);
2403 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302404 goto clean_runtime_disable_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00002405 }
2406 for (i = 0; i < priv->data.slaves; i++) {
2407 struct cpsw_slave *slave = &priv->slaves[i];
2408 cpsw_slave_init(slave, priv, slave_offset, sliver_offset);
2409 slave_offset += slave_size;
2410 sliver_offset += SLIVER_SIZE;
2411 }
2412
Mugunthan V Ndf828592012-03-18 20:17:54 +00002413 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00002414 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
2415 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
2416 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
2417 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
2418 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002419
2420 dma_params.num_chan = data->channels;
2421 dma_params.has_soft_reset = true;
2422 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
2423 dma_params.desc_mem_size = data->bd_ram_size;
2424 dma_params.desc_align = 16;
2425 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00002426 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002427
2428 priv->dma = cpdma_ctlr_create(&dma_params);
2429 if (!priv->dma) {
2430 dev_err(priv->dev, "error initializing dma\n");
2431 ret = -ENOMEM;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302432 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002433 }
2434
2435 priv->txch = cpdma_chan_create(priv->dma, tx_chan_num(0),
2436 cpsw_tx_handler);
2437 priv->rxch = cpdma_chan_create(priv->dma, rx_chan_num(0),
2438 cpsw_rx_handler);
2439
2440 if (WARN_ON(!priv->txch || !priv->rxch)) {
2441 dev_err(priv->dev, "error initializing dma channels\n");
2442 ret = -ENOMEM;
2443 goto clean_dma_ret;
2444 }
2445
Mugunthan V Ndf828592012-03-18 20:17:54 +00002446 ale_params.dev = &ndev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002447 ale_params.ale_ageout = ale_ageout;
2448 ale_params.ale_entries = data->ale_entries;
2449 ale_params.ale_ports = data->slaves;
2450
2451 priv->ale = cpsw_ale_create(&ale_params);
2452 if (!priv->ale) {
2453 dev_err(priv->dev, "error initializing ale engine\n");
2454 ret = -ENODEV;
2455 goto clean_dma_ret;
2456 }
2457
Felipe Balbic03abd82015-01-16 10:11:12 -06002458 ndev->irq = platform_get_irq(pdev, 1);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002459 if (ndev->irq < 0) {
2460 dev_err(priv->dev, "error getting irq resource\n");
Julia Lawallc1e33342015-12-26 20:12:13 +01002461 ret = ndev->irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002462 goto clean_ale_ret;
2463 }
2464
Mugunthan V N7da11602015-08-12 15:22:53 +05302465 of_id = of_match_device(cpsw_of_mtable, &pdev->dev);
2466 if (of_id) {
2467 pdev->id_entry = of_id->data;
2468 if (pdev->id_entry->driver_data)
2469 priv->quirk_irq = true;
2470 }
2471
Felipe Balbic03abd82015-01-16 10:11:12 -06002472 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
2473 * MISC IRQs which are always kept disabled with this driver so
2474 * we will not request them.
2475 *
2476 * If anyone wants to implement support for those, make sure to
2477 * first request and append them to irqs_table array.
2478 */
Daniel Mackc2b32e52014-09-04 09:00:23 +02002479
Felipe Balbic03abd82015-01-16 10:11:12 -06002480 /* RX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06002481 irq = platform_get_irq(pdev, 1);
Julia Lawallc1e33342015-12-26 20:12:13 +01002482 if (irq < 0) {
2483 ret = irq;
Felipe Balbi5087b912015-01-16 10:11:11 -06002484 goto clean_ale_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01002485 }
Felipe Balbi5087b912015-01-16 10:11:11 -06002486
Felipe Balbic03abd82015-01-16 10:11:12 -06002487 priv->irqs_table[0] = irq;
2488 ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
Felipe Balbi5087b912015-01-16 10:11:11 -06002489 0, dev_name(&pdev->dev), priv);
2490 if (ret < 0) {
2491 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2492 goto clean_ale_ret;
2493 }
2494
Felipe Balbic03abd82015-01-16 10:11:12 -06002495 /* TX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06002496 irq = platform_get_irq(pdev, 2);
Julia Lawallc1e33342015-12-26 20:12:13 +01002497 if (irq < 0) {
2498 ret = irq;
Felipe Balbi5087b912015-01-16 10:11:11 -06002499 goto clean_ale_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01002500 }
Felipe Balbi5087b912015-01-16 10:11:11 -06002501
Felipe Balbic03abd82015-01-16 10:11:12 -06002502 priv->irqs_table[1] = irq;
2503 ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt,
Felipe Balbi5087b912015-01-16 10:11:11 -06002504 0, dev_name(&pdev->dev), priv);
2505 if (ret < 0) {
2506 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2507 goto clean_ale_ret;
2508 }
Felipe Balbic03abd82015-01-16 10:11:12 -06002509 priv->num_irqs = 2;
Daniel Mackc2b32e52014-09-04 09:00:23 +02002510
Patrick McHardyf6469682013-04-19 02:04:27 +00002511 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002512
2513 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002514 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V N32a74322015-08-04 16:06:20 +05302515 netif_napi_add(ndev, &priv->napi_rx, cpsw_rx_poll, CPSW_POLL_WEIGHT);
Eric Dumazetd64b5e82015-11-18 06:31:00 -08002516 netif_tx_napi_add(ndev, &priv->napi_tx, cpsw_tx_poll, CPSW_POLL_WEIGHT);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002517
2518 /* register the network device */
2519 SET_NETDEV_DEV(ndev, &pdev->dev);
2520 ret = register_netdev(ndev);
2521 if (ret) {
2522 dev_err(priv->dev, "error registering net device\n");
2523 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302524 goto clean_ale_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002525 }
2526
Olof Johansson1a3b5052013-12-11 15:58:07 -08002527 cpsw_notice(priv, probe, "initialized device (regs %pa, irq %d)\n",
2528 &ss_res->start, ndev->irq);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002529
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002530 if (priv->data.dual_emac) {
2531 ret = cpsw_probe_dual_emac(pdev, priv);
2532 if (ret) {
2533 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302534 goto clean_ale_ret;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002535 }
2536 }
2537
Mugunthan V Ndf828592012-03-18 20:17:54 +00002538 return 0;
2539
Mugunthan V Ndf828592012-03-18 20:17:54 +00002540clean_ale_ret:
2541 cpsw_ale_destroy(priv->ale);
2542clean_dma_ret:
Mugunthan V Ndf828592012-03-18 20:17:54 +00002543 cpdma_ctlr_destroy(priv->dma);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302544clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002545 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002546clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002547 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002548 return ret;
2549}
2550
Bill Pemberton663e12e2012-12-03 09:23:45 -05002551static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002552{
2553 struct net_device *ndev = platform_get_drvdata(pdev);
2554 struct cpsw_priv *priv = netdev_priv(ndev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03002555 int ret;
2556
2557 ret = pm_runtime_get_sync(&pdev->dev);
2558 if (ret < 0) {
2559 pm_runtime_put_noidle(&pdev->dev);
2560 return ret;
2561 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002562
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002563 if (priv->data.dual_emac)
2564 unregister_netdev(cpsw_get_slave_ndev(priv, 1));
2565 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002566
Mugunthan V Ndf828592012-03-18 20:17:54 +00002567 cpsw_ale_destroy(priv->ale);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002568 cpdma_ctlr_destroy(priv->dma);
Grygorii Strashko3bf2cb32016-07-28 20:50:36 +03002569 of_platform_depopulate(&pdev->dev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03002570 pm_runtime_put_sync(&pdev->dev);
2571 pm_runtime_disable(&pdev->dev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002572 if (priv->data.dual_emac)
2573 free_netdev(cpsw_get_slave_ndev(priv, 1));
Mugunthan V Ndf828592012-03-18 20:17:54 +00002574 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002575 return 0;
2576}
2577
Grygorii Strashko8963a502015-02-27 13:19:45 +02002578#ifdef CONFIG_PM_SLEEP
Mugunthan V Ndf828592012-03-18 20:17:54 +00002579static int cpsw_suspend(struct device *dev)
2580{
2581 struct platform_device *pdev = to_platform_device(dev);
2582 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V Nb90fc272013-06-21 19:15:09 +05302583 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002584
Mugunthan V N618073e2014-09-11 22:52:38 +05302585 if (priv->data.dual_emac) {
2586 int i;
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002587
Mugunthan V N618073e2014-09-11 22:52:38 +05302588 for (i = 0; i < priv->data.slaves; i++) {
2589 if (netif_running(priv->slaves[i].ndev))
2590 cpsw_ndo_stop(priv->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302591 }
2592 } else {
2593 if (netif_running(ndev))
2594 cpsw_ndo_stop(ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302595 }
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002596
Mugunthan V N739683b2013-06-06 23:45:14 +05302597 /* Select sleep pin state */
2598 pinctrl_pm_select_sleep_state(&pdev->dev);
2599
Mugunthan V Ndf828592012-03-18 20:17:54 +00002600 return 0;
2601}
2602
2603static int cpsw_resume(struct device *dev)
2604{
2605 struct platform_device *pdev = to_platform_device(dev);
2606 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302607 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002608
Mugunthan V N739683b2013-06-06 23:45:14 +05302609 /* Select default pin state */
2610 pinctrl_pm_select_default_state(&pdev->dev);
2611
Mugunthan V N618073e2014-09-11 22:52:38 +05302612 if (priv->data.dual_emac) {
2613 int i;
2614
2615 for (i = 0; i < priv->data.slaves; i++) {
2616 if (netif_running(priv->slaves[i].ndev))
2617 cpsw_ndo_open(priv->slaves[i].ndev);
2618 }
2619 } else {
2620 if (netif_running(ndev))
2621 cpsw_ndo_open(ndev);
2622 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002623 return 0;
2624}
Grygorii Strashko8963a502015-02-27 13:19:45 +02002625#endif
Mugunthan V Ndf828592012-03-18 20:17:54 +00002626
Grygorii Strashko8963a502015-02-27 13:19:45 +02002627static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002628
2629static struct platform_driver cpsw_driver = {
2630 .driver = {
2631 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00002632 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05302633 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002634 },
2635 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05002636 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002637};
2638
Grygorii Strashko6fb3b6b52015-10-23 14:41:12 +03002639module_platform_driver(cpsw_driver);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002640
2641MODULE_LICENSE("GPL");
2642MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
2643MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
2644MODULE_DESCRIPTION("TI CPSW Ethernet driver");