blob: 3ccf577dd46dde40f41b3669047550c190334298 [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
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300366struct cpsw_common {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000367 struct platform_device *pdev;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300368};
369
370struct cpsw_priv {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000371 struct net_device *ndev;
Mugunthan V N32a74322015-08-04 16:06:20 +0530372 struct napi_struct napi_rx;
373 struct napi_struct napi_tx;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000374 struct device *dev;
375 struct cpsw_platform_data data;
Richard Cochran996a5c22012-10-29 08:45:12 +0000376 struct cpsw_ss_regs __iomem *regs;
377 struct cpsw_wr_regs __iomem *wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +0530378 u8 __iomem *hw_stats;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000379 struct cpsw_host_regs __iomem *host_port_regs;
380 u32 msg_enable;
Richard Cochrane90cfac2012-10-29 08:45:14 +0000381 u32 version;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000382 u32 coal_intvl;
383 u32 bus_freq_mhz;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000384 int rx_packet_max;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000385 u8 mac_addr[ETH_ALEN];
386 struct cpsw_slave *slaves;
387 struct cpdma_ctlr *dma;
388 struct cpdma_chan *txch, *rxch;
389 struct cpsw_ale *ale;
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530390 bool rx_pause;
391 bool tx_pause;
Mugunthan V N7da11602015-08-12 15:22:53 +0530392 bool quirk_irq;
393 bool rx_irq_disabled;
394 bool tx_irq_disabled;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000395 /* snapshot of IRQ numbers */
396 u32 irqs_table[4];
397 u32 num_irqs;
Mugunthan V N9232b162013-02-11 09:52:19 +0000398 struct cpts *cpts;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000399 u32 emac_port;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300400 struct cpsw_common *cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000401};
402
Mugunthan V Nd9718542013-07-23 15:38:17 +0530403struct cpsw_stats {
404 char stat_string[ETH_GSTRING_LEN];
405 int type;
406 int sizeof_stat;
407 int stat_offset;
408};
409
410enum {
411 CPSW_STATS,
412 CPDMA_RX_STATS,
413 CPDMA_TX_STATS,
414};
415
416#define CPSW_STAT(m) CPSW_STATS, \
417 sizeof(((struct cpsw_hw_stats *)0)->m), \
418 offsetof(struct cpsw_hw_stats, m)
419#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
420 sizeof(((struct cpdma_chan_stats *)0)->m), \
421 offsetof(struct cpdma_chan_stats, m)
422#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
423 sizeof(((struct cpdma_chan_stats *)0)->m), \
424 offsetof(struct cpdma_chan_stats, m)
425
426static const struct cpsw_stats cpsw_gstrings_stats[] = {
427 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
428 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
429 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
430 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
431 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
432 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
433 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
434 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
435 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
436 { "Rx Fragments", CPSW_STAT(rxfragments) },
437 { "Rx Octets", CPSW_STAT(rxoctets) },
438 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
439 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
440 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
441 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
442 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
443 { "Collisions", CPSW_STAT(txcollisionframes) },
444 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
445 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
446 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
447 { "Late Collisions", CPSW_STAT(txlatecollisions) },
448 { "Tx Underrun", CPSW_STAT(txunderrun) },
449 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
450 { "Tx Octets", CPSW_STAT(txoctets) },
451 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
452 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
453 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
454 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
455 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
456 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
457 { "Net Octets", CPSW_STAT(netoctets) },
458 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
459 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
460 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
461 { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) },
462 { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
463 { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
464 { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) },
465 { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
466 { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
467 { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
468 { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
469 { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
470 { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
471 { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) },
472 { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) },
473 { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
474 { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) },
475 { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) },
476 { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) },
477 { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) },
478 { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) },
479 { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) },
480 { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) },
481 { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) },
482 { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) },
483 { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) },
484 { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) },
485 { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) },
486 { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) },
487};
488
489#define CPSW_STATS_LEN ARRAY_SIZE(cpsw_gstrings_stats)
490
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300491#define ndev_to_cpsw(ndev) (((struct cpsw_priv *)netdev_priv(ndev))->cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000492#define napi_to_priv(napi) container_of(napi, struct cpsw_priv, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000493#define for_each_slave(priv, func, arg...) \
494 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000495 struct cpsw_slave *slave; \
496 int n; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000497 if (priv->data.dual_emac) \
498 (func)((priv)->slaves + priv->emac_port, ##arg);\
499 else \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000500 for (n = (priv)->data.slaves, \
501 slave = (priv)->slaves; \
502 n; n--) \
503 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000504 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000505#define cpsw_get_slave_priv(priv, __slave_no__) \
Mugunthan V N1973db02015-07-07 18:30:39 +0530506 (((__slave_no__ < priv->data.slaves) && \
507 (priv->slaves[__slave_no__].ndev)) ? \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000508 netdev_priv(priv->slaves[__slave_no__].ndev) : NULL) \
509
510#define cpsw_dual_emac_src_port_detect(status, priv, ndev, skb) \
511 do { \
512 if (!priv->data.dual_emac) \
513 break; \
514 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
Ivan Khoronzhuk82b52102016-08-10 02:22:36 +0300515 ndev = priv->slaves[0].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000516 priv = netdev_priv(ndev); \
517 skb->dev = ndev; \
518 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
Ivan Khoronzhuk82b52102016-08-10 02:22:36 +0300519 ndev = priv->slaves[1].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000520 priv = netdev_priv(ndev); \
521 skb->dev = ndev; \
522 } \
523 } while (0)
524#define cpsw_add_mcast(priv, addr) \
525 do { \
526 if (priv->data.dual_emac) { \
527 struct cpsw_slave *slave = priv->slaves + \
528 priv->emac_port; \
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300529 int slave_port = cpsw_get_slave_port( \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000530 slave->slave_num); \
531 cpsw_ale_add_mcast(priv->ale, addr, \
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300532 1 << slave_port | ALE_PORT_HOST, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000533 ALE_VLAN, slave->port_vlan, 0); \
534 } else { \
535 cpsw_ale_add_mcast(priv->ale, addr, \
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300536 ALE_ALL_PORTS, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000537 0, 0, 0); \
538 } \
539 } while (0)
540
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300541static inline int cpsw_get_slave_port(u32 slave_num)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000542{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300543 return slave_num + 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000544}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000545
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530546static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
547{
548 struct cpsw_priv *priv = netdev_priv(ndev);
549 struct cpsw_ale *ale = priv->ale;
550 int i;
551
552 if (priv->data.dual_emac) {
553 bool flag = false;
554
555 /* Enabling promiscuous mode for one interface will be
556 * common for both the interface as the interface shares
557 * the same hardware resource.
558 */
Heiko Schocher0d961b32014-02-13 14:47:27 +0100559 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530560 if (priv->slaves[i].ndev->flags & IFF_PROMISC)
561 flag = true;
562
563 if (!enable && flag) {
564 enable = true;
565 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
566 }
567
568 if (enable) {
569 /* Enable Bypass */
570 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
571
572 dev_dbg(&ndev->dev, "promiscuity enabled\n");
573 } else {
574 /* Disable Bypass */
575 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
576 dev_dbg(&ndev->dev, "promiscuity disabled\n");
577 }
578 } else {
579 if (enable) {
580 unsigned long timeout = jiffies + HZ;
581
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400582 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
583 for (i = 0; i <= priv->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530584 cpsw_ale_control_set(ale, i,
585 ALE_PORT_NOLEARN, 1);
586 cpsw_ale_control_set(ale, i,
587 ALE_PORT_NO_SA_UPDATE, 1);
588 }
589
590 /* Clear All Untouched entries */
591 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
592 do {
593 cpu_relax();
594 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
595 break;
596 } while (time_after(timeout, jiffies));
597 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
598
599 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300600 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1);
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530601
602 /* Flood All Unicast Packets to Host port */
603 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
604 dev_dbg(&ndev->dev, "promiscuity enabled\n");
605 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400606 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530607 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
608
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400609 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
610 for (i = 0; i <= priv->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530611 cpsw_ale_control_set(ale, i,
612 ALE_PORT_NOLEARN, 0);
613 cpsw_ale_control_set(ale, i,
614 ALE_PORT_NO_SA_UPDATE, 0);
615 }
616 dev_dbg(&ndev->dev, "promiscuity disabled\n");
617 }
618 }
619}
620
Mugunthan V N5c50a852012-10-29 08:45:11 +0000621static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
622{
623 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V N25906052015-01-13 17:35:49 +0530624 int vid;
625
626 if (priv->data.dual_emac)
627 vid = priv->slaves[priv->emac_port].port_vlan;
628 else
629 vid = priv->data.default_vlan;
Mugunthan V N5c50a852012-10-29 08:45:11 +0000630
631 if (ndev->flags & IFF_PROMISC) {
632 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530633 cpsw_set_promiscious(ndev, true);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400634 cpsw_ale_set_allmulti(priv->ale, IFF_ALLMULTI);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000635 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530636 } else {
637 /* Disable promiscuous mode */
638 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000639 }
640
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400641 /* Restore allmulti on vlans if necessary */
642 cpsw_ale_set_allmulti(priv->ale, priv->ndev->flags & IFF_ALLMULTI);
643
Mugunthan V N5c50a852012-10-29 08:45:11 +0000644 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300645 cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS, vid);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000646
647 if (!netdev_mc_empty(ndev)) {
648 struct netdev_hw_addr *ha;
649
650 /* program multicast address list into ALE register */
651 netdev_for_each_mc_addr(ha, ndev) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000652 cpsw_add_mcast(priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000653 }
654 }
655}
656
Mugunthan V Ndf828592012-03-18 20:17:54 +0000657static void cpsw_intr_enable(struct cpsw_priv *priv)
658{
Richard Cochran996a5c22012-10-29 08:45:12 +0000659 __raw_writel(0xFF, &priv->wr_regs->tx_en);
660 __raw_writel(0xFF, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000661
662 cpdma_ctlr_int_ctrl(priv->dma, true);
663 return;
664}
665
666static void cpsw_intr_disable(struct cpsw_priv *priv)
667{
Richard Cochran996a5c22012-10-29 08:45:12 +0000668 __raw_writel(0, &priv->wr_regs->tx_en);
669 __raw_writel(0, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000670
671 cpdma_ctlr_int_ctrl(priv->dma, false);
672 return;
673}
674
Olof Johansson1a3b5052013-12-11 15:58:07 -0800675static void cpsw_tx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000676{
677 struct sk_buff *skb = token;
678 struct net_device *ndev = skb->dev;
679 struct cpsw_priv *priv = netdev_priv(ndev);
680
Mugunthan V Nfae50822013-01-17 06:31:34 +0000681 /* Check whether the queue is stopped due to stalled tx dma, if the
682 * queue is stopped then start the queue as we have free desc for tx
683 */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000684 if (unlikely(netif_queue_stopped(ndev)))
Mugunthan V Nb56d6b3f2013-03-27 04:41:59 +0000685 netif_wake_queue(ndev);
Mugunthan V N9232b162013-02-11 09:52:19 +0000686 cpts_tx_timestamp(priv->cpts, skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100687 ndev->stats.tx_packets++;
688 ndev->stats.tx_bytes += len;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000689 dev_kfree_skb_any(skb);
690}
691
Olof Johansson1a3b5052013-12-11 15:58:07 -0800692static void cpsw_rx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000693{
694 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000695 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000696 struct net_device *ndev = skb->dev;
697 struct cpsw_priv *priv = netdev_priv(ndev);
698 int ret = 0;
699
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000700 cpsw_dual_emac_src_port_detect(status, priv, ndev, skb);
701
Mugunthan V N16e5c572014-04-10 14:23:23 +0530702 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530703 bool ndev_status = false;
704 struct cpsw_slave *slave = priv->slaves;
705 int n;
706
707 if (priv->data.dual_emac) {
708 /* In dual emac mode check for all interfaces */
709 for (n = priv->data.slaves; n; n--, slave++)
710 if (netif_running(slave->ndev))
711 ndev_status = true;
712 }
713
714 if (ndev_status && (status >= 0)) {
715 /* The packet received is for the interface which
716 * is already down and the other interface is up
Joe Perchesdbedd442015-03-06 20:49:12 -0800717 * and running, instead of freeing which results
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530718 * in reducing of the number of rx descriptor in
719 * DMA engine, requeue skb back to cpdma.
720 */
721 new_skb = skb;
722 goto requeue;
723 }
724
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000725 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000726 dev_kfree_skb_any(skb);
727 return;
728 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000729
730 new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max);
731 if (new_skb) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000732 skb_put(skb, len);
Mugunthan V N9232b162013-02-11 09:52:19 +0000733 cpts_rx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000734 skb->protocol = eth_type_trans(skb, ndev);
735 netif_receive_skb(skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100736 ndev->stats.rx_bytes += len;
737 ndev->stats.rx_packets++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000738 } else {
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100739 ndev->stats.rx_dropped++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000740 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000741 }
742
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530743requeue:
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000744 ret = cpdma_chan_submit(priv->rxch, new_skb, new_skb->data,
745 skb_tailroom(new_skb), 0);
746 if (WARN_ON(ret < 0))
747 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000748}
749
Felipe Balbic03abd82015-01-16 10:11:12 -0600750static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000751{
752 struct cpsw_priv *priv = dev_id;
Felipe Balbi7ce67a32015-01-02 16:15:59 -0600753
Mugunthan V N32a74322015-08-04 16:06:20 +0530754 writel(0, &priv->wr_regs->tx_en);
Felipe Balbic03abd82015-01-16 10:11:12 -0600755 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_TX);
Felipe Balbic03abd82015-01-16 10:11:12 -0600756
Mugunthan V N7da11602015-08-12 15:22:53 +0530757 if (priv->quirk_irq) {
758 disable_irq_nosync(priv->irqs_table[1]);
759 priv->tx_irq_disabled = true;
760 }
761
Mugunthan V N32a74322015-08-04 16:06:20 +0530762 napi_schedule(&priv->napi_tx);
Felipe Balbic03abd82015-01-16 10:11:12 -0600763 return IRQ_HANDLED;
764}
765
766static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id)
767{
768 struct cpsw_priv *priv = dev_id;
769
770 cpdma_ctlr_eoi(priv->dma, CPDMA_EOI_RX);
Mugunthan V N870915f2015-08-04 16:06:18 +0530771 writel(0, &priv->wr_regs->rx_en);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000772
Mugunthan V N7da11602015-08-12 15:22:53 +0530773 if (priv->quirk_irq) {
774 disable_irq_nosync(priv->irqs_table[0]);
775 priv->rx_irq_disabled = true;
776 }
777
Mugunthan V N32a74322015-08-04 16:06:20 +0530778 napi_schedule(&priv->napi_rx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +0530779 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000780}
781
Mugunthan V N32a74322015-08-04 16:06:20 +0530782static int cpsw_tx_poll(struct napi_struct *napi_tx, int budget)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000783{
Mugunthan V N32a74322015-08-04 16:06:20 +0530784 struct cpsw_priv *priv = napi_to_priv(napi_tx);
785 int num_tx;
786
787 num_tx = cpdma_chan_process(priv->txch, budget);
788 if (num_tx < budget) {
789 napi_complete(napi_tx);
790 writel(0xff, &priv->wr_regs->tx_en);
Mugunthan V N7da11602015-08-12 15:22:53 +0530791 if (priv->quirk_irq && priv->tx_irq_disabled) {
792 priv->tx_irq_disabled = false;
793 enable_irq(priv->irqs_table[1]);
794 }
Mugunthan V N32a74322015-08-04 16:06:20 +0530795 }
796
Mugunthan V N32a74322015-08-04 16:06:20 +0530797 return num_tx;
798}
799
800static int cpsw_rx_poll(struct napi_struct *napi_rx, int budget)
801{
802 struct cpsw_priv *priv = napi_to_priv(napi_rx);
Mugunthan V N1e353cd2015-07-21 16:00:42 +0530803 int num_rx;
Mugunthan V N510a1e722013-02-17 22:19:20 +0000804
Mugunthan V Ndf828592012-03-18 20:17:54 +0000805 num_rx = cpdma_chan_process(priv->rxch, budget);
Mugunthan V N510a1e722013-02-17 22:19:20 +0000806 if (num_rx < budget) {
Mugunthan V N32a74322015-08-04 16:06:20 +0530807 napi_complete(napi_rx);
Mugunthan V N870915f2015-08-04 16:06:18 +0530808 writel(0xff, &priv->wr_regs->rx_en);
Mugunthan V N7da11602015-08-12 15:22:53 +0530809 if (priv->quirk_irq && priv->rx_irq_disabled) {
810 priv->rx_irq_disabled = false;
811 enable_irq(priv->irqs_table[0]);
812 }
Mugunthan V N510a1e722013-02-17 22:19:20 +0000813 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000814
Mugunthan V Ndf828592012-03-18 20:17:54 +0000815 return num_rx;
816}
817
818static inline void soft_reset(const char *module, void __iomem *reg)
819{
820 unsigned long timeout = jiffies + HZ;
821
822 __raw_writel(1, reg);
823 do {
824 cpu_relax();
825 } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies));
826
827 WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module);
828}
829
830#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
831 ((mac)[2] << 16) | ((mac)[3] << 24))
832#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
833
834static void cpsw_set_slave_mac(struct cpsw_slave *slave,
835 struct cpsw_priv *priv)
836{
Richard Cochran9750a3a2012-10-29 08:45:15 +0000837 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
838 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000839}
840
841static void _cpsw_adjust_link(struct cpsw_slave *slave,
842 struct cpsw_priv *priv, bool *link)
843{
844 struct phy_device *phy = slave->phy;
845 u32 mac_control = 0;
846 u32 slave_port;
847
848 if (!phy)
849 return;
850
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300851 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000852
853 if (phy->link) {
854 mac_control = priv->data.mac_control;
855
856 /* enable forwarding */
857 cpsw_ale_control_set(priv->ale, slave_port,
858 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
859
860 if (phy->speed == 1000)
861 mac_control |= BIT(7); /* GIGABITEN */
862 if (phy->duplex)
863 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +0000864
865 /* set speed_in input in case RMII mode is used in 100Mbps */
866 if (phy->speed == 100)
867 mac_control |= BIT(15);
Mugunthan V Na81d8762013-12-13 18:42:55 +0530868 else if (phy->speed == 10)
869 mac_control |= BIT(18); /* In Band mode */
Daniel Mack342b7b72012-09-27 09:19:34 +0000870
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530871 if (priv->rx_pause)
872 mac_control |= BIT(3);
873
874 if (priv->tx_pause)
875 mac_control |= BIT(4);
876
Mugunthan V Ndf828592012-03-18 20:17:54 +0000877 *link = true;
878 } else {
879 mac_control = 0;
880 /* disable forwarding */
881 cpsw_ale_control_set(priv->ale, slave_port,
882 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
883 }
884
885 if (mac_control != slave->mac_control) {
886 phy_print_status(phy);
887 __raw_writel(mac_control, &slave->sliver->mac_control);
888 }
889
890 slave->mac_control = mac_control;
891}
892
893static void cpsw_adjust_link(struct net_device *ndev)
894{
895 struct cpsw_priv *priv = netdev_priv(ndev);
896 bool link = false;
897
898 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
899
900 if (link) {
901 netif_carrier_on(ndev);
902 if (netif_running(ndev))
903 netif_wake_queue(ndev);
904 } else {
905 netif_carrier_off(ndev);
906 netif_stop_queue(ndev);
907 }
908}
909
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000910static int cpsw_get_coalesce(struct net_device *ndev,
911 struct ethtool_coalesce *coal)
912{
913 struct cpsw_priv *priv = netdev_priv(ndev);
914
915 coal->rx_coalesce_usecs = priv->coal_intvl;
916 return 0;
917}
918
919static int cpsw_set_coalesce(struct net_device *ndev,
920 struct ethtool_coalesce *coal)
921{
922 struct cpsw_priv *priv = netdev_priv(ndev);
923 u32 int_ctrl;
924 u32 num_interrupts = 0;
925 u32 prescale = 0;
926 u32 addnl_dvdr = 1;
927 u32 coal_intvl = 0;
928
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000929 coal_intvl = coal->rx_coalesce_usecs;
930
931 int_ctrl = readl(&priv->wr_regs->int_control);
932 prescale = priv->bus_freq_mhz * 4;
933
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530934 if (!coal->rx_coalesce_usecs) {
935 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
936 goto update_return;
937 }
938
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000939 if (coal_intvl < CPSW_CMINTMIN_INTVL)
940 coal_intvl = CPSW_CMINTMIN_INTVL;
941
942 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
943 /* Interrupt pacer works with 4us Pulse, we can
944 * throttle further by dilating the 4us pulse.
945 */
946 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
947
948 if (addnl_dvdr > 1) {
949 prescale *= addnl_dvdr;
950 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
951 coal_intvl = (CPSW_CMINTMAX_INTVL
952 * addnl_dvdr);
953 } else {
954 addnl_dvdr = 1;
955 coal_intvl = CPSW_CMINTMAX_INTVL;
956 }
957 }
958
959 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
960 writel(num_interrupts, &priv->wr_regs->rx_imax);
961 writel(num_interrupts, &priv->wr_regs->tx_imax);
962
963 int_ctrl |= CPSW_INTPACEEN;
964 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
965 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530966
967update_return:
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000968 writel(int_ctrl, &priv->wr_regs->int_control);
969
970 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
971 if (priv->data.dual_emac) {
972 int i;
973
974 for (i = 0; i < priv->data.slaves; i++) {
975 priv = netdev_priv(priv->slaves[i].ndev);
976 priv->coal_intvl = coal_intvl;
977 }
978 } else {
979 priv->coal_intvl = coal_intvl;
980 }
981
982 return 0;
983}
984
Mugunthan V Nd9718542013-07-23 15:38:17 +0530985static int cpsw_get_sset_count(struct net_device *ndev, int sset)
986{
987 switch (sset) {
988 case ETH_SS_STATS:
989 return CPSW_STATS_LEN;
990 default:
991 return -EOPNOTSUPP;
992 }
993}
994
995static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
996{
997 u8 *p = data;
998 int i;
999
1000 switch (stringset) {
1001 case ETH_SS_STATS:
1002 for (i = 0; i < CPSW_STATS_LEN; i++) {
1003 memcpy(p, cpsw_gstrings_stats[i].stat_string,
1004 ETH_GSTRING_LEN);
1005 p += ETH_GSTRING_LEN;
1006 }
1007 break;
1008 }
1009}
1010
1011static void cpsw_get_ethtool_stats(struct net_device *ndev,
1012 struct ethtool_stats *stats, u64 *data)
1013{
1014 struct cpsw_priv *priv = netdev_priv(ndev);
1015 struct cpdma_chan_stats rx_stats;
1016 struct cpdma_chan_stats tx_stats;
1017 u32 val;
1018 u8 *p;
1019 int i;
1020
1021 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
1022 cpdma_chan_get_stats(priv->rxch, &rx_stats);
1023 cpdma_chan_get_stats(priv->txch, &tx_stats);
1024
1025 for (i = 0; i < CPSW_STATS_LEN; i++) {
1026 switch (cpsw_gstrings_stats[i].type) {
1027 case CPSW_STATS:
1028 val = readl(priv->hw_stats +
1029 cpsw_gstrings_stats[i].stat_offset);
1030 data[i] = val;
1031 break;
1032
1033 case CPDMA_RX_STATS:
1034 p = (u8 *)&rx_stats +
1035 cpsw_gstrings_stats[i].stat_offset;
1036 data[i] = *(u32 *)p;
1037 break;
1038
1039 case CPDMA_TX_STATS:
1040 p = (u8 *)&tx_stats +
1041 cpsw_gstrings_stats[i].stat_offset;
1042 data[i] = *(u32 *)p;
1043 break;
1044 }
1045 }
1046}
1047
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001048static int cpsw_common_res_usage_state(struct cpsw_priv *priv)
1049{
1050 u32 i;
1051 u32 usage_count = 0;
1052
1053 if (!priv->data.dual_emac)
1054 return 0;
1055
1056 for (i = 0; i < priv->data.slaves; i++)
1057 if (priv->slaves[i].open_stat)
1058 usage_count++;
1059
1060 return usage_count;
1061}
1062
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001063static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv,
1064 struct sk_buff *skb)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001065{
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001066 return cpdma_chan_submit(priv->txch, skb, skb->data, skb->len,
1067 priv->emac_port + priv->data.dual_emac);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001068}
1069
1070static inline void cpsw_add_dual_emac_def_ale_entries(
1071 struct cpsw_priv *priv, struct cpsw_slave *slave,
1072 u32 slave_port)
1073{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001074 u32 port_mask = 1 << slave_port | ALE_PORT_HOST;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001075
1076 if (priv->version == CPSW_VERSION_1)
1077 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1078 else
1079 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
1080 cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
1081 port_mask, port_mask, 0);
1082 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1083 port_mask, ALE_VLAN, slave->port_vlan, 0);
1084 cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001085 HOST_PORT_NUM, ALE_VLAN | ALE_SECURE, slave->port_vlan);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001086}
1087
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001088static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001089{
1090 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001091
1092 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1093 soft_reset(name, &slave->sliver->soft_reset);
1094}
1095
1096static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1097{
Mugunthan V Ndf828592012-03-18 20:17:54 +00001098 u32 slave_port;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001099 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001100
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001101 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001102
1103 /* setup priority mapping */
1104 __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001105
1106 switch (priv->version) {
1107 case CPSW_VERSION_1:
1108 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
1109 break;
1110 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05301111 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05301112 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +00001113 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
1114 break;
1115 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001116
1117 /* setup max packet size, and mac address */
1118 __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen);
1119 cpsw_set_slave_mac(slave, priv);
1120
1121 slave->mac_control = 0; /* no link yet */
1122
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001123 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001124
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001125 if (priv->data.dual_emac)
1126 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1127 else
1128 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1129 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001130
David Rivshind733f7542016-04-27 21:32:31 -04001131 if (slave->data->phy_node) {
David Rivshin552165b2016-04-27 21:25:25 -04001132 slave->phy = of_phy_connect(priv->ndev, slave->data->phy_node,
Heiko Schocher9e42f712015-10-17 06:04:35 +02001133 &cpsw_adjust_link, 0, slave->data->phy_if);
David Rivshind733f7542016-04-27 21:32:31 -04001134 if (!slave->phy) {
1135 dev_err(priv->dev, "phy \"%s\" not found on slave %d\n",
1136 slave->data->phy_node->full_name,
1137 slave->slave_num);
1138 return;
1139 }
1140 } else {
Heiko Schocher9e42f712015-10-17 06:04:35 +02001141 slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001142 &cpsw_adjust_link, slave->data->phy_if);
David Rivshind733f7542016-04-27 21:32:31 -04001143 if (IS_ERR(slave->phy)) {
1144 dev_err(priv->dev,
1145 "phy \"%s\" not found on slave %d, err %ld\n",
1146 slave->data->phy_id, slave->slave_num,
1147 PTR_ERR(slave->phy));
1148 slave->phy = NULL;
1149 return;
1150 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001151 }
David Rivshind733f7542016-04-27 21:32:31 -04001152
1153 phy_attached_info(slave->phy);
1154
1155 phy_start(slave->phy);
1156
1157 /* Configure GMII_SEL register */
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001158 cpsw_phy_sel(&cpsw->pdev->dev, slave->phy->interface, slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001159}
1160
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001161static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1162{
1163 const int vlan = priv->data.default_vlan;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001164 u32 reg;
1165 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001166 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001167
1168 reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
1169 CPSW2_PORT_VLAN;
1170
1171 writel(vlan, &priv->host_port_regs->port_vlan);
1172
Daniel Mack0237c112013-02-26 04:06:20 +00001173 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001174 slave_write(priv->slaves + i, vlan, reg);
1175
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001176 if (priv->ndev->flags & IFF_ALLMULTI)
1177 unreg_mcast_mask = ALE_ALL_PORTS;
1178 else
1179 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1180
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001181 cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS,
1182 ALE_ALL_PORTS, ALE_ALL_PORTS,
1183 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001184}
1185
Mugunthan V Ndf828592012-03-18 20:17:54 +00001186static void cpsw_init_host_port(struct cpsw_priv *priv)
1187{
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001188 u32 control_reg;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001189 u32 fifo_mode;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001190
Mugunthan V Ndf828592012-03-18 20:17:54 +00001191 /* soft reset the controller and initialize ale */
1192 soft_reset("cpsw", &priv->regs->soft_reset);
1193 cpsw_ale_start(priv->ale);
1194
1195 /* switch to vlan unaware mode */
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001196 cpsw_ale_control_set(priv->ale, HOST_PORT_NUM, ALE_VLAN_AWARE,
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001197 CPSW_ALE_VLAN_AWARE);
1198 control_reg = readl(&priv->regs->control);
1199 control_reg |= CPSW_VLAN_AWARE;
1200 writel(control_reg, &priv->regs->control);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001201 fifo_mode = (priv->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
1202 CPSW_FIFO_NORMAL_MODE;
1203 writel(fifo_mode, &priv->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001204
1205 /* setup host port priority mapping */
1206 __raw_writel(CPDMA_TX_PRIORITY_MAP,
1207 &priv->host_port_regs->cpdma_tx_pri_map);
1208 __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map);
1209
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001210 cpsw_ale_control_set(priv->ale, HOST_PORT_NUM,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001211 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1212
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001213 if (!priv->data.dual_emac) {
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001214 cpsw_ale_add_ucast(priv->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001215 0, 0);
1216 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001217 ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001218 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001219}
1220
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001221static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv)
1222{
Schuyler Patton3995d262014-03-03 16:19:06 +05301223 u32 slave_port;
1224
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001225 slave_port = cpsw_get_slave_port(slave->slave_num);
Schuyler Patton3995d262014-03-03 16:19:06 +05301226
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001227 if (!slave->phy)
1228 return;
1229 phy_stop(slave->phy);
1230 phy_disconnect(slave->phy);
1231 slave->phy = NULL;
Schuyler Patton3995d262014-03-03 16:19:06 +05301232 cpsw_ale_control_set(priv->ale, slave_port,
1233 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Grygorii Strashko1f95ba02016-06-24 21:23:41 +03001234 soft_reset_slave(slave);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001235}
1236
Mugunthan V Ndf828592012-03-18 20:17:54 +00001237static int cpsw_ndo_open(struct net_device *ndev)
1238{
1239 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001240 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001241 int i, ret;
1242 u32 reg;
1243
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001244 ret = pm_runtime_get_sync(&cpsw->pdev->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001245 if (ret < 0) {
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001246 pm_runtime_put_noidle(&cpsw->pdev->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001247 return ret;
1248 }
Grygorii Strashko3fa88c52016-04-19 21:09:49 +03001249
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001250 if (!cpsw_common_res_usage_state(priv))
1251 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001252 netif_carrier_off(ndev);
1253
Richard Cochran549985e2012-11-14 09:07:56 +00001254 reg = priv->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001255
1256 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1257 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1258 CPSW_RTL_VERSION(reg));
1259
1260 /* initialize host and slave ports */
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001261 if (!cpsw_common_res_usage_state(priv))
1262 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001263 for_each_slave(priv, cpsw_slave_open, priv);
1264
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001265 /* Add default VLAN */
Mugunthan V Ne6afea02014-06-18 17:21:48 +05301266 if (!priv->data.dual_emac)
1267 cpsw_add_default_vlan(priv);
1268 else
1269 cpsw_ale_add_vlan(priv->ale, priv->data.default_vlan,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001270 ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001271
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001272 if (!cpsw_common_res_usage_state(priv)) {
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301273 struct cpsw_priv *priv_sl0 = cpsw_get_slave_priv(priv, 0);
Ivan Khoronzhuk17933312016-06-17 13:25:39 +03001274 int buf_num;
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301275
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001276 /* setup tx dma to fixed prio and zero offset */
1277 cpdma_control_set(priv->dma, CPDMA_TX_PRIO_FIXED, 1);
1278 cpdma_control_set(priv->dma, CPDMA_RX_BUFFER_OFFSET, 0);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001279
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001280 /* disable priority elevation */
1281 __raw_writel(0, &priv->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001282
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001283 /* enable statistics collection only on all ports */
1284 __raw_writel(0x7, &priv->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001285
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301286 /* Enable internal fifo flow control */
1287 writel(0x7, &priv->regs->flow_control);
1288
Mugunthan V N32a74322015-08-04 16:06:20 +05301289 napi_enable(&priv_sl0->napi_rx);
1290 napi_enable(&priv_sl0->napi_tx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301291
Mugunthan V N7da11602015-08-12 15:22:53 +05301292 if (priv_sl0->tx_irq_disabled) {
1293 priv_sl0->tx_irq_disabled = false;
1294 enable_irq(priv->irqs_table[1]);
1295 }
1296
1297 if (priv_sl0->rx_irq_disabled) {
1298 priv_sl0->rx_irq_disabled = false;
1299 enable_irq(priv->irqs_table[0]);
1300 }
1301
Ivan Khoronzhuk17933312016-06-17 13:25:39 +03001302 buf_num = cpdma_chan_get_rx_buf_num(priv->dma);
1303 for (i = 0; i < buf_num; i++) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001304 struct sk_buff *skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001305
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001306 ret = -ENOMEM;
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001307 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1308 priv->rx_packet_max, GFP_KERNEL);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001309 if (!skb)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001310 goto err_cleanup;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001311 ret = cpdma_chan_submit(priv->rxch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001312 skb_tailroom(skb), 0);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001313 if (ret < 0) {
1314 kfree_skb(skb);
1315 goto err_cleanup;
1316 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001317 }
1318 /* continue even if we didn't manage to submit all
1319 * receive descs
1320 */
1321 cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001322
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001323 if (cpts_register(&cpsw->pdev->dev, priv->cpts,
Mugunthan V Nf280e892013-12-11 22:09:05 -06001324 priv->data.cpts_clock_mult,
1325 priv->data.cpts_clock_shift))
1326 dev_err(priv->dev, "error registering cpts device\n");
1327
Mugunthan V Ndf828592012-03-18 20:17:54 +00001328 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001329
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001330 /* Enable Interrupt pacing if configured */
1331 if (priv->coal_intvl != 0) {
1332 struct ethtool_coalesce coal;
1333
Ivan Khoronzhuk8478b6c2016-06-02 16:14:52 +03001334 coal.rx_coalesce_usecs = priv->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001335 cpsw_set_coalesce(ndev, &coal);
1336 }
1337
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301338 cpdma_ctlr_start(priv->dma);
1339 cpsw_intr_enable(priv);
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301340
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001341 if (priv->data.dual_emac)
1342 priv->slaves[priv->emac_port].open_stat = true;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001343 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001344
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001345err_cleanup:
1346 cpdma_ctlr_stop(priv->dma);
1347 for_each_slave(priv, cpsw_slave_stop, priv);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001348 pm_runtime_put_sync(&cpsw->pdev->dev);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001349 netif_carrier_off(priv->ndev);
1350 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001351}
1352
1353static int cpsw_ndo_stop(struct net_device *ndev)
1354{
1355 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001356 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001357
1358 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001359 netif_stop_queue(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001360 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001361
1362 if (cpsw_common_res_usage_state(priv) <= 1) {
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301363 struct cpsw_priv *priv_sl0 = cpsw_get_slave_priv(priv, 0);
1364
Mugunthan V N32a74322015-08-04 16:06:20 +05301365 napi_disable(&priv_sl0->napi_rx);
1366 napi_disable(&priv_sl0->napi_tx);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001367 cpts_unregister(priv->cpts);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001368 cpsw_intr_disable(priv);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001369 cpdma_ctlr_stop(priv->dma);
1370 cpsw_ale_stop(priv->ale);
1371 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001372 for_each_slave(priv, cpsw_slave_stop, priv);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001373 pm_runtime_put_sync(&cpsw->pdev->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001374 if (priv->data.dual_emac)
1375 priv->slaves[priv->emac_port].open_stat = false;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001376 return 0;
1377}
1378
1379static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1380 struct net_device *ndev)
1381{
1382 struct cpsw_priv *priv = netdev_priv(ndev);
1383 int ret;
1384
Florian Westphal860e9532016-05-03 16:33:13 +02001385 netif_trans_update(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001386
1387 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1388 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001389 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001390 return NETDEV_TX_OK;
1391 }
1392
Mugunthan V N9232b162013-02-11 09:52:19 +00001393 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
1394 priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001395 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1396
1397 skb_tx_timestamp(skb);
1398
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001399 ret = cpsw_tx_packet_submit(priv, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001400 if (unlikely(ret != 0)) {
1401 cpsw_err(priv, tx_err, "desc submit failed\n");
1402 goto fail;
1403 }
1404
Mugunthan V Nfae50822013-01-17 06:31:34 +00001405 /* If there is no more tx desc left free then we need to
1406 * tell the kernel to stop sending us tx frames.
1407 */
Daniel Mackd35162f2013-03-12 06:31:19 +00001408 if (unlikely(!cpdma_check_free_tx_desc(priv->txch)))
Mugunthan V Nfae50822013-01-17 06:31:34 +00001409 netif_stop_queue(ndev);
1410
Mugunthan V Ndf828592012-03-18 20:17:54 +00001411 return NETDEV_TX_OK;
1412fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001413 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001414 netif_stop_queue(ndev);
1415 return NETDEV_TX_BUSY;
1416}
1417
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001418#ifdef CONFIG_TI_CPTS
1419
1420static void cpsw_hwtstamp_v1(struct cpsw_priv *priv)
1421{
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001422 struct cpsw_slave *slave = &priv->slaves[priv->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001423 u32 ts_en, seq_id;
1424
Mugunthan V N9232b162013-02-11 09:52:19 +00001425 if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001426 slave_write(slave, 0, CPSW1_TS_CTL);
1427 return;
1428 }
1429
1430 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1431 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1432
Mugunthan V N9232b162013-02-11 09:52:19 +00001433 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001434 ts_en |= CPSW_V1_TS_TX_EN;
1435
Mugunthan V N9232b162013-02-11 09:52:19 +00001436 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001437 ts_en |= CPSW_V1_TS_RX_EN;
1438
1439 slave_write(slave, ts_en, CPSW1_TS_CTL);
1440 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1441}
1442
1443static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1444{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001445 struct cpsw_slave *slave;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001446 u32 ctrl, mtype;
1447
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001448 if (priv->data.dual_emac)
1449 slave = &priv->slaves[priv->emac_port];
1450 else
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001451 slave = &priv->slaves[priv->data.active_slave];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001452
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001453 ctrl = slave_read(slave, CPSW2_CONTROL);
George Cherian09c55372014-05-02 12:02:02 +05301454 switch (priv->version) {
1455 case CPSW_VERSION_2:
1456 ctrl &= ~CTRL_V2_ALL_TS_MASK;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001457
George Cherian09c55372014-05-02 12:02:02 +05301458 if (priv->cpts->tx_enable)
1459 ctrl |= CTRL_V2_TX_TS_BITS;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001460
George Cherian09c55372014-05-02 12:02:02 +05301461 if (priv->cpts->rx_enable)
1462 ctrl |= CTRL_V2_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001463 break;
George Cherian09c55372014-05-02 12:02:02 +05301464 case CPSW_VERSION_3:
1465 default:
1466 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1467
1468 if (priv->cpts->tx_enable)
1469 ctrl |= CTRL_V3_TX_TS_BITS;
1470
1471 if (priv->cpts->rx_enable)
1472 ctrl |= CTRL_V3_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001473 break;
George Cherian09c55372014-05-02 12:02:02 +05301474 }
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001475
1476 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1477
1478 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1479 slave_write(slave, ctrl, CPSW2_CONTROL);
1480 __raw_writel(ETH_P_1588, &priv->regs->ts_ltype);
1481}
1482
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001483static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001484{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001485 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N9232b162013-02-11 09:52:19 +00001486 struct cpts *cpts = priv->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001487 struct hwtstamp_config cfg;
1488
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001489 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301490 priv->version != CPSW_VERSION_2 &&
1491 priv->version != CPSW_VERSION_3)
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001492 return -EOPNOTSUPP;
1493
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001494 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1495 return -EFAULT;
1496
1497 /* reserved for future extensions */
1498 if (cfg.flags)
1499 return -EINVAL;
1500
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001501 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001502 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001503
1504 switch (cfg.rx_filter) {
1505 case HWTSTAMP_FILTER_NONE:
1506 cpts->rx_enable = 0;
1507 break;
1508 case HWTSTAMP_FILTER_ALL:
1509 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1510 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1511 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1512 return -ERANGE;
1513 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1514 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1515 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1516 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1517 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1518 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1519 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1520 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1521 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1522 cpts->rx_enable = 1;
1523 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1524 break;
1525 default:
1526 return -ERANGE;
1527 }
1528
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001529 cpts->tx_enable = cfg.tx_type == HWTSTAMP_TX_ON;
1530
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001531 switch (priv->version) {
1532 case CPSW_VERSION_1:
1533 cpsw_hwtstamp_v1(priv);
1534 break;
1535 case CPSW_VERSION_2:
George Cherianf7d403c2014-05-02 12:02:01 +05301536 case CPSW_VERSION_3:
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001537 cpsw_hwtstamp_v2(priv);
1538 break;
1539 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001540 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001541 }
1542
1543 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1544}
1545
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001546static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1547{
1548 struct cpsw_priv *priv = netdev_priv(dev);
1549 struct cpts *cpts = priv->cpts;
1550 struct hwtstamp_config cfg;
1551
1552 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301553 priv->version != CPSW_VERSION_2 &&
1554 priv->version != CPSW_VERSION_3)
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001555 return -EOPNOTSUPP;
1556
1557 cfg.flags = 0;
1558 cfg.tx_type = cpts->tx_enable ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1559 cfg.rx_filter = (cpts->rx_enable ?
1560 HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE);
1561
1562 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1563}
1564
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001565#endif /*CONFIG_TI_CPTS*/
1566
1567static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1568{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001569 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001570 int slave_no = cpsw_slave_index(priv);
1571
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001572 if (!netif_running(dev))
1573 return -EINVAL;
1574
Mugunthan V N11f2c982013-03-11 23:16:38 +00001575 switch (cmd) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001576#ifdef CONFIG_TI_CPTS
Mugunthan V N11f2c982013-03-11 23:16:38 +00001577 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001578 return cpsw_hwtstamp_set(dev, req);
1579 case SIOCGHWTSTAMP:
1580 return cpsw_hwtstamp_get(dev, req);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001581#endif
Mugunthan V N11f2c982013-03-11 23:16:38 +00001582 }
1583
Stefan Sørensenc1b59942014-02-16 14:54:25 +01001584 if (!priv->slaves[slave_no].phy)
1585 return -EOPNOTSUPP;
1586 return phy_mii_ioctl(priv->slaves[slave_no].phy, req, cmd);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001587}
1588
Mugunthan V Ndf828592012-03-18 20:17:54 +00001589static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1590{
1591 struct cpsw_priv *priv = netdev_priv(ndev);
1592
1593 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001594 ndev->stats.tx_errors++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001595 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001596 cpdma_chan_stop(priv->txch);
1597 cpdma_chan_start(priv->txch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001598 cpsw_intr_enable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001599}
1600
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301601static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1602{
1603 struct cpsw_priv *priv = netdev_priv(ndev);
1604 struct sockaddr *addr = (struct sockaddr *)p;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001605 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301606 int flags = 0;
1607 u16 vid = 0;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001608 int ret;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301609
1610 if (!is_valid_ether_addr(addr->sa_data))
1611 return -EADDRNOTAVAIL;
1612
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001613 ret = pm_runtime_get_sync(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001614 if (ret < 0) {
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001615 pm_runtime_put_noidle(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001616 return ret;
1617 }
1618
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301619 if (priv->data.dual_emac) {
1620 vid = priv->slaves[priv->emac_port].port_vlan;
1621 flags = ALE_VLAN;
1622 }
1623
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001624 cpsw_ale_del_ucast(priv->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301625 flags, vid);
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001626 cpsw_ale_add_ucast(priv->ale, addr->sa_data, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301627 flags, vid);
1628
1629 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1630 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1631 for_each_slave(priv, cpsw_set_slave_mac, priv);
1632
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001633 pm_runtime_put(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001634
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301635 return 0;
1636}
1637
Mugunthan V Ndf828592012-03-18 20:17:54 +00001638#ifdef CONFIG_NET_POLL_CONTROLLER
1639static void cpsw_ndo_poll_controller(struct net_device *ndev)
1640{
1641 struct cpsw_priv *priv = netdev_priv(ndev);
1642
1643 cpsw_intr_disable(priv);
Felipe Balbi92cb13f2015-01-19 11:52:36 -06001644 cpsw_rx_interrupt(priv->irqs_table[0], priv);
1645 cpsw_tx_interrupt(priv->irqs_table[1], priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001646 cpsw_intr_enable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001647}
1648#endif
1649
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001650static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1651 unsigned short vid)
1652{
1653 int ret;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301654 int unreg_mcast_mask = 0;
1655 u32 port_mask;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001656
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301657 if (priv->data.dual_emac) {
1658 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001659
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301660 if (priv->ndev->flags & IFF_ALLMULTI)
1661 unreg_mcast_mask = port_mask;
1662 } else {
1663 port_mask = ALE_ALL_PORTS;
1664
1665 if (priv->ndev->flags & IFF_ALLMULTI)
1666 unreg_mcast_mask = ALE_ALL_PORTS;
1667 else
1668 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1669 }
1670
1671 ret = cpsw_ale_add_vlan(priv->ale, vid, port_mask, 0, port_mask,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001672 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001673 if (ret != 0)
1674 return ret;
1675
1676 ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001677 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001678 if (ret != 0)
1679 goto clean_vid;
1680
1681 ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301682 port_mask, ALE_VLAN, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001683 if (ret != 0)
1684 goto clean_vlan_ucast;
1685 return 0;
1686
1687clean_vlan_ucast:
1688 cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001689 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001690clean_vid:
1691 cpsw_ale_del_vlan(priv->ale, vid, 0);
1692 return ret;
1693}
1694
1695static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001696 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001697{
1698 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001699 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001700 int ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001701
1702 if (vid == priv->data.default_vlan)
1703 return 0;
1704
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001705 ret = pm_runtime_get_sync(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001706 if (ret < 0) {
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001707 pm_runtime_put_noidle(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001708 return ret;
1709 }
1710
Mugunthan V N02a54162015-01-22 15:19:22 +05301711 if (priv->data.dual_emac) {
1712 /* In dual EMAC, reserved VLAN id should not be used for
1713 * creating VLAN interfaces as this can break the dual
1714 * EMAC port separation
1715 */
1716 int i;
1717
1718 for (i = 0; i < priv->data.slaves; i++) {
1719 if (vid == priv->slaves[i].port_vlan)
1720 return -EINVAL;
1721 }
1722 }
1723
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001724 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001725 ret = cpsw_add_vlan_ale_entry(priv, vid);
1726
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001727 pm_runtime_put(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001728 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001729}
1730
1731static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001732 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001733{
1734 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001735 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001736 int ret;
1737
1738 if (vid == priv->data.default_vlan)
1739 return 0;
1740
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001741 ret = pm_runtime_get_sync(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001742 if (ret < 0) {
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001743 pm_runtime_put_noidle(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001744 return ret;
1745 }
1746
Mugunthan V N02a54162015-01-22 15:19:22 +05301747 if (priv->data.dual_emac) {
1748 int i;
1749
1750 for (i = 0; i < priv->data.slaves; i++) {
1751 if (vid == priv->slaves[i].port_vlan)
1752 return -EINVAL;
1753 }
1754 }
1755
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001756 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1757 ret = cpsw_ale_del_vlan(priv->ale, vid, 0);
1758 if (ret != 0)
1759 return ret;
1760
1761 ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001762 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001763 if (ret != 0)
1764 return ret;
1765
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001766 ret = cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast,
1767 0, ALE_VLAN, vid);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001768 pm_runtime_put(&cpsw->pdev->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001769 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001770}
1771
Mugunthan V Ndf828592012-03-18 20:17:54 +00001772static const struct net_device_ops cpsw_netdev_ops = {
1773 .ndo_open = cpsw_ndo_open,
1774 .ndo_stop = cpsw_ndo_stop,
1775 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301776 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001777 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001778 .ndo_validate_addr = eth_validate_addr,
David S. Miller5c473ed2012-03-20 00:33:59 -04001779 .ndo_change_mtu = eth_change_mtu,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001780 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00001781 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001782#ifdef CONFIG_NET_POLL_CONTROLLER
1783 .ndo_poll_controller = cpsw_ndo_poll_controller,
1784#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001785 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
1786 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001787};
1788
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301789static int cpsw_get_regs_len(struct net_device *ndev)
1790{
1791 struct cpsw_priv *priv = netdev_priv(ndev);
1792
1793 return priv->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
1794}
1795
1796static void cpsw_get_regs(struct net_device *ndev,
1797 struct ethtool_regs *regs, void *p)
1798{
1799 struct cpsw_priv *priv = netdev_priv(ndev);
1800 u32 *reg = p;
1801
1802 /* update CPSW IP version */
1803 regs->version = priv->version;
1804
1805 cpsw_ale_dump(priv->ale, reg);
1806}
1807
Mugunthan V Ndf828592012-03-18 20:17:54 +00001808static void cpsw_get_drvinfo(struct net_device *ndev,
1809 struct ethtool_drvinfo *info)
1810{
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001811 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001812
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301813 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00001814 strlcpy(info->version, "1.0", sizeof(info->version));
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001815 strlcpy(info->bus_info, cpsw->pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001816}
1817
1818static u32 cpsw_get_msglevel(struct net_device *ndev)
1819{
1820 struct cpsw_priv *priv = netdev_priv(ndev);
1821 return priv->msg_enable;
1822}
1823
1824static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
1825{
1826 struct cpsw_priv *priv = netdev_priv(ndev);
1827 priv->msg_enable = value;
1828}
1829
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001830static int cpsw_get_ts_info(struct net_device *ndev,
1831 struct ethtool_ts_info *info)
1832{
1833#ifdef CONFIG_TI_CPTS
1834 struct cpsw_priv *priv = netdev_priv(ndev);
1835
1836 info->so_timestamping =
1837 SOF_TIMESTAMPING_TX_HARDWARE |
1838 SOF_TIMESTAMPING_TX_SOFTWARE |
1839 SOF_TIMESTAMPING_RX_HARDWARE |
1840 SOF_TIMESTAMPING_RX_SOFTWARE |
1841 SOF_TIMESTAMPING_SOFTWARE |
1842 SOF_TIMESTAMPING_RAW_HARDWARE;
Mugunthan V N9232b162013-02-11 09:52:19 +00001843 info->phc_index = priv->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001844 info->tx_types =
1845 (1 << HWTSTAMP_TX_OFF) |
1846 (1 << HWTSTAMP_TX_ON);
1847 info->rx_filters =
1848 (1 << HWTSTAMP_FILTER_NONE) |
1849 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
1850#else
1851 info->so_timestamping =
1852 SOF_TIMESTAMPING_TX_SOFTWARE |
1853 SOF_TIMESTAMPING_RX_SOFTWARE |
1854 SOF_TIMESTAMPING_SOFTWARE;
1855 info->phc_index = -1;
1856 info->tx_types = 0;
1857 info->rx_filters = 0;
1858#endif
1859 return 0;
1860}
1861
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001862static int cpsw_get_settings(struct net_device *ndev,
1863 struct ethtool_cmd *ecmd)
1864{
1865 struct cpsw_priv *priv = netdev_priv(ndev);
1866 int slave_no = cpsw_slave_index(priv);
1867
1868 if (priv->slaves[slave_no].phy)
1869 return phy_ethtool_gset(priv->slaves[slave_no].phy, ecmd);
1870 else
1871 return -EOPNOTSUPP;
1872}
1873
1874static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
1875{
1876 struct cpsw_priv *priv = netdev_priv(ndev);
1877 int slave_no = cpsw_slave_index(priv);
1878
1879 if (priv->slaves[slave_no].phy)
1880 return phy_ethtool_sset(priv->slaves[slave_no].phy, ecmd);
1881 else
1882 return -EOPNOTSUPP;
1883}
1884
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001885static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1886{
1887 struct cpsw_priv *priv = netdev_priv(ndev);
1888 int slave_no = cpsw_slave_index(priv);
1889
1890 wol->supported = 0;
1891 wol->wolopts = 0;
1892
1893 if (priv->slaves[slave_no].phy)
1894 phy_ethtool_get_wol(priv->slaves[slave_no].phy, wol);
1895}
1896
1897static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1898{
1899 struct cpsw_priv *priv = netdev_priv(ndev);
1900 int slave_no = cpsw_slave_index(priv);
1901
1902 if (priv->slaves[slave_no].phy)
1903 return phy_ethtool_set_wol(priv->slaves[slave_no].phy, wol);
1904 else
1905 return -EOPNOTSUPP;
1906}
1907
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301908static void cpsw_get_pauseparam(struct net_device *ndev,
1909 struct ethtool_pauseparam *pause)
1910{
1911 struct cpsw_priv *priv = netdev_priv(ndev);
1912
1913 pause->autoneg = AUTONEG_DISABLE;
1914 pause->rx_pause = priv->rx_pause ? true : false;
1915 pause->tx_pause = priv->tx_pause ? true : false;
1916}
1917
1918static int cpsw_set_pauseparam(struct net_device *ndev,
1919 struct ethtool_pauseparam *pause)
1920{
1921 struct cpsw_priv *priv = netdev_priv(ndev);
1922 bool link;
1923
1924 priv->rx_pause = pause->rx_pause ? true : false;
1925 priv->tx_pause = pause->tx_pause ? true : false;
1926
1927 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301928 return 0;
1929}
1930
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001931static int cpsw_ethtool_op_begin(struct net_device *ndev)
1932{
1933 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001934 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001935 int ret;
1936
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001937 ret = pm_runtime_get_sync(&cpsw->pdev->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001938 if (ret < 0) {
1939 cpsw_err(priv, drv, "ethtool begin failed %d\n", ret);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001940 pm_runtime_put_noidle(&cpsw->pdev->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001941 }
1942
1943 return ret;
1944}
1945
1946static void cpsw_ethtool_op_complete(struct net_device *ndev)
1947{
1948 struct cpsw_priv *priv = netdev_priv(ndev);
1949 int ret;
1950
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001951 ret = pm_runtime_put(&priv->cpsw->pdev->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001952 if (ret < 0)
1953 cpsw_err(priv, drv, "ethtool complete failed %d\n", ret);
1954}
1955
Mugunthan V Ndf828592012-03-18 20:17:54 +00001956static const struct ethtool_ops cpsw_ethtool_ops = {
1957 .get_drvinfo = cpsw_get_drvinfo,
1958 .get_msglevel = cpsw_get_msglevel,
1959 .set_msglevel = cpsw_set_msglevel,
1960 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001961 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001962 .get_settings = cpsw_get_settings,
1963 .set_settings = cpsw_set_settings,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001964 .get_coalesce = cpsw_get_coalesce,
1965 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05301966 .get_sset_count = cpsw_get_sset_count,
1967 .get_strings = cpsw_get_strings,
1968 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301969 .get_pauseparam = cpsw_get_pauseparam,
1970 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001971 .get_wol = cpsw_get_wol,
1972 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301973 .get_regs_len = cpsw_get_regs_len,
1974 .get_regs = cpsw_get_regs,
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001975 .begin = cpsw_ethtool_op_begin,
1976 .complete = cpsw_ethtool_op_complete,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001977};
1978
Richard Cochran549985e2012-11-14 09:07:56 +00001979static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv,
1980 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001981{
1982 void __iomem *regs = priv->regs;
1983 int slave_num = slave->slave_num;
1984 struct cpsw_slave_data *data = priv->data.slave_data + slave_num;
1985
1986 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00001987 slave->regs = regs + slave_reg_ofs;
1988 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001989 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001990}
1991
David Rivshin552165b2016-04-27 21:25:25 -04001992static int cpsw_probe_dt(struct cpsw_platform_data *data,
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001993 struct platform_device *pdev)
1994{
1995 struct device_node *node = pdev->dev.of_node;
1996 struct device_node *slave_node;
1997 int i = 0, ret;
1998 u32 prop;
1999
2000 if (!node)
2001 return -EINVAL;
2002
2003 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302004 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002005 return -EINVAL;
2006 }
2007 data->slaves = prop;
2008
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002009 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302010 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302011 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002012 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002013 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002014
Richard Cochran00ab94e2012-10-29 08:45:19 +00002015 if (of_property_read_u32(node, "cpts_clock_mult", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302016 dev_err(&pdev->dev, "Missing cpts_clock_mult property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302017 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00002018 }
2019 data->cpts_clock_mult = prop;
2020
2021 if (of_property_read_u32(node, "cpts_clock_shift", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302022 dev_err(&pdev->dev, "Missing cpts_clock_shift property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302023 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00002024 }
2025 data->cpts_clock_shift = prop;
2026
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302027 data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
2028 * sizeof(struct cpsw_slave_data),
2029 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00002030 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302031 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002032
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002033 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302034 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302035 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002036 }
2037 data->channels = prop;
2038
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002039 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302040 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302041 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002042 }
2043 data->ale_entries = prop;
2044
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002045 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302046 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302047 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002048 }
2049 data->bd_ram_size = prop;
2050
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002051 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302052 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302053 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002054 }
2055 data->mac_control = prop;
2056
Markus Pargmann281abd92013-10-04 14:44:40 +02002057 if (of_property_read_bool(node, "dual_emac"))
2058 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002059
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002060 /*
2061 * Populate all the child nodes here...
2062 */
2063 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2064 /* We do not want to force this, as in some cases may not have child */
2065 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05302066 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002067
Ben Hutchings8658aaf2016-06-21 01:16:31 +01002068 for_each_available_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00002069 struct cpsw_slave_data *slave_data = data->slave_data + i;
2070 const void *mac_addr = NULL;
Richard Cochran549985e2012-11-14 09:07:56 +00002071 int lenp;
2072 const __be32 *parp;
Richard Cochran549985e2012-11-14 09:07:56 +00002073
Markus Pargmannf468b102013-10-04 14:44:39 +02002074 /* This is no slave child node, continue */
2075 if (strcmp(slave_node->name, "slave"))
2076 continue;
2077
David Rivshin552165b2016-04-27 21:25:25 -04002078 slave_data->phy_node = of_parse_phandle(slave_node,
2079 "phy-handle", 0);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002080 parp = of_get_property(slave_node, "phy_id", &lenp);
David Rivshinae092b52016-04-27 21:38:26 -04002081 if (slave_data->phy_node) {
2082 dev_dbg(&pdev->dev,
2083 "slave[%d] using phy-handle=\"%s\"\n",
2084 i, slave_data->phy_node->full_name);
2085 } else if (of_phy_is_fixed_link(slave_node)) {
David Rivshindfc0a6d2015-12-16 23:02:11 -05002086 /* In the case of a fixed PHY, the DT node associated
2087 * to the PHY is the Ethernet MAC DT node.
2088 */
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002089 ret = of_phy_register_fixed_link(slave_node);
2090 if (ret)
2091 return ret;
David Rivshin06cd6d62016-04-27 21:45:45 -04002092 slave_data->phy_node = of_node_get(slave_node);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002093 } else if (parp) {
2094 u32 phyid;
2095 struct device_node *mdio_node;
2096 struct platform_device *mdio;
2097
2098 if (lenp != (sizeof(__be32) * 2)) {
2099 dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
2100 goto no_phy_slave;
2101 }
2102 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2103 phyid = be32_to_cpup(parp+1);
2104 mdio = of_find_device_by_node(mdio_node);
2105 of_node_put(mdio_node);
2106 if (!mdio) {
2107 dev_err(&pdev->dev, "Missing mdio platform device\n");
2108 return -EINVAL;
2109 }
2110 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2111 PHY_ID_FMT, mdio->name, phyid);
2112 } else {
David Rivshinae092b52016-04-27 21:38:26 -04002113 dev_err(&pdev->dev,
2114 "No slave[%d] phy_id, phy-handle, or fixed-link property\n",
2115 i);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002116 goto no_phy_slave;
2117 }
Mugunthan V N47276fc2014-10-24 18:51:33 +05302118 slave_data->phy_if = of_get_phy_mode(slave_node);
2119 if (slave_data->phy_if < 0) {
2120 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2121 i);
2122 return slave_data->phy_if;
2123 }
2124
2125no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00002126 mac_addr = of_get_mac_address(slave_node);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002127 if (mac_addr) {
Richard Cochran549985e2012-11-14 09:07:56 +00002128 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002129 } else {
Mugunthan V Nb6745f62015-09-21 15:56:50 +05302130 ret = ti_cm_get_macid(&pdev->dev, i,
2131 slave_data->mac_addr);
2132 if (ret)
2133 return ret;
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002134 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002135 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00002136 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002137 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302138 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002139 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05302140 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2141 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002142 } else {
2143 slave_data->dual_emac_res_vlan = prop;
2144 }
2145 }
2146
Richard Cochran549985e2012-11-14 09:07:56 +00002147 i++;
Mugunthan V N3a27bfa2013-12-02 12:53:39 +05302148 if (i == data->slaves)
2149 break;
Richard Cochran549985e2012-11-14 09:07:56 +00002150 }
2151
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002152 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002153}
2154
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002155static int cpsw_probe_dual_emac(struct platform_device *pdev,
2156 struct cpsw_priv *priv)
2157{
2158 struct cpsw_platform_data *data = &priv->data;
2159 struct net_device *ndev;
2160 struct cpsw_priv *priv_sl2;
2161 int ret = 0, i;
2162
2163 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2164 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302165 dev_err(&pdev->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002166 return -ENOMEM;
2167 }
2168
2169 priv_sl2 = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002170 priv_sl2->cpsw = priv->cpsw;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002171 priv_sl2->data = *data;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002172 priv_sl2->ndev = ndev;
2173 priv_sl2->dev = &ndev->dev;
2174 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2175 priv_sl2->rx_packet_max = max(rx_packet_max, 128);
2176
2177 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2178 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2179 ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302180 dev_info(&pdev->dev, "cpsw: Detected MACID = %pM\n", priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002181 } else {
2182 random_ether_addr(priv_sl2->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302183 dev_info(&pdev->dev, "cpsw: Random MACID = %pM\n", priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002184 }
2185 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2186
2187 priv_sl2->slaves = priv->slaves;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002188 priv_sl2->coal_intvl = 0;
2189 priv_sl2->bus_freq_mhz = priv->bus_freq_mhz;
2190
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002191 priv_sl2->regs = priv->regs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002192 priv_sl2->host_port_regs = priv->host_port_regs;
2193 priv_sl2->wr_regs = priv->wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302194 priv_sl2->hw_stats = priv->hw_stats;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002195 priv_sl2->dma = priv->dma;
2196 priv_sl2->txch = priv->txch;
2197 priv_sl2->rxch = priv->rxch;
2198 priv_sl2->ale = priv->ale;
2199 priv_sl2->emac_port = 1;
2200 priv->slaves[1].ndev = ndev;
2201 priv_sl2->cpts = priv->cpts;
2202 priv_sl2->version = priv->version;
2203
2204 for (i = 0; i < priv->num_irqs; i++) {
2205 priv_sl2->irqs_table[i] = priv->irqs_table[i];
2206 priv_sl2->num_irqs = priv->num_irqs;
2207 }
Patrick McHardyf6469682013-04-19 02:04:27 +00002208 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002209
2210 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002211 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002212
2213 /* register the network device */
2214 SET_NETDEV_DEV(ndev, &pdev->dev);
2215 ret = register_netdev(ndev);
2216 if (ret) {
George Cherian88c99ff2014-05-12 10:21:19 +05302217 dev_err(&pdev->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002218 free_netdev(ndev);
2219 ret = -ENODEV;
2220 }
2221
2222 return ret;
2223}
2224
Mugunthan V N7da11602015-08-12 15:22:53 +05302225#define CPSW_QUIRK_IRQ BIT(0)
2226
2227static struct platform_device_id cpsw_devtype[] = {
2228 {
2229 /* keep it for existing comaptibles */
2230 .name = "cpsw",
2231 .driver_data = CPSW_QUIRK_IRQ,
2232 }, {
2233 .name = "am335x-cpsw",
2234 .driver_data = CPSW_QUIRK_IRQ,
2235 }, {
2236 .name = "am4372-cpsw",
2237 .driver_data = 0,
2238 }, {
2239 .name = "dra7-cpsw",
2240 .driver_data = 0,
2241 }, {
2242 /* sentinel */
2243 }
2244};
2245MODULE_DEVICE_TABLE(platform, cpsw_devtype);
2246
2247enum ti_cpsw_type {
2248 CPSW = 0,
2249 AM335X_CPSW,
2250 AM4372_CPSW,
2251 DRA7_CPSW,
2252};
2253
2254static const struct of_device_id cpsw_of_mtable[] = {
2255 { .compatible = "ti,cpsw", .data = &cpsw_devtype[CPSW], },
2256 { .compatible = "ti,am335x-cpsw", .data = &cpsw_devtype[AM335X_CPSW], },
2257 { .compatible = "ti,am4372-cpsw", .data = &cpsw_devtype[AM4372_CPSW], },
2258 { .compatible = "ti,dra7-cpsw", .data = &cpsw_devtype[DRA7_CPSW], },
2259 { /* sentinel */ },
2260};
2261MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
2262
Bill Pemberton663e12e2012-12-03 09:23:45 -05002263static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002264{
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002265 struct clk *clk;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002266 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002267 struct net_device *ndev;
2268 struct cpsw_priv *priv;
2269 struct cpdma_params dma_params;
2270 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302271 void __iomem *ss_regs;
2272 struct resource *res, *ss_res;
Mugunthan V N7da11602015-08-12 15:22:53 +05302273 const struct of_device_id *of_id;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302274 struct gpio_descs *mode;
Richard Cochran549985e2012-11-14 09:07:56 +00002275 u32 slave_offset, sliver_offset, slave_size;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002276 struct cpsw_common *cpsw;
Felipe Balbi5087b912015-01-16 10:11:11 -06002277 int ret = 0, i;
2278 int irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002279
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002280 cpsw = devm_kzalloc(&pdev->dev, sizeof(struct cpsw_common), GFP_KERNEL);
2281 cpsw->pdev = pdev;
2282
Mugunthan V Ndf828592012-03-18 20:17:54 +00002283 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2284 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302285 dev_err(&pdev->dev, "error allocating net_device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002286 return -ENOMEM;
2287 }
2288
2289 platform_set_drvdata(pdev, ndev);
2290 priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002291 priv->cpsw = cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002292 priv->ndev = ndev;
2293 priv->dev = &ndev->dev;
2294 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2295 priv->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V N9232b162013-02-11 09:52:19 +00002296 priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL);
Sebastian Siewiorab8e99d2013-06-17 19:31:52 +02002297 if (!priv->cpts) {
George Cherian88c99ff2014-05-12 10:21:19 +05302298 dev_err(&pdev->dev, "error allocating cpts\n");
Markus Pargmann4d507df2014-09-29 08:53:14 +02002299 ret = -ENOMEM;
Mugunthan V N9232b162013-02-11 09:52:19 +00002300 goto clean_ndev_ret;
2301 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002302
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302303 mode = devm_gpiod_get_array_optional(&pdev->dev, "mode", GPIOD_OUT_LOW);
2304 if (IS_ERR(mode)) {
2305 ret = PTR_ERR(mode);
2306 dev_err(&pdev->dev, "gpio request failed, ret %d\n", ret);
2307 goto clean_ndev_ret;
2308 }
2309
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002310 /*
2311 * This may be required here for child devices.
2312 */
2313 pm_runtime_enable(&pdev->dev);
2314
Mugunthan V N739683b2013-06-06 23:45:14 +05302315 /* Select default pin state */
2316 pinctrl_pm_select_default_state(&pdev->dev);
2317
David Rivshin552165b2016-04-27 21:25:25 -04002318 if (cpsw_probe_dt(&priv->data, pdev)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302319 dev_err(&pdev->dev, "cpsw: platform data missing\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002320 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302321 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002322 }
2323 data = &priv->data;
2324
Mugunthan V Ndf828592012-03-18 20:17:54 +00002325 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
2326 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302327 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002328 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00002329 eth_random_addr(priv->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302330 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002331 }
2332
2333 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
2334
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302335 priv->slaves = devm_kzalloc(&pdev->dev,
2336 sizeof(struct cpsw_slave) * data->slaves,
2337 GFP_KERNEL);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002338 if (!priv->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302339 ret = -ENOMEM;
2340 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002341 }
2342 for (i = 0; i < data->slaves; i++)
2343 priv->slaves[i].slave_num = i;
2344
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002345 priv->slaves[0].ndev = ndev;
2346 priv->emac_port = 0;
2347
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002348 clk = devm_clk_get(&pdev->dev, "fck");
2349 if (IS_ERR(clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302350 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002351 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302352 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002353 }
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002354 priv->coal_intvl = 0;
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002355 priv->bus_freq_mhz = clk_get_rate(clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002356
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302357 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2358 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
2359 if (IS_ERR(ss_regs)) {
2360 ret = PTR_ERR(ss_regs);
2361 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002362 }
Richard Cochran549985e2012-11-14 09:07:56 +00002363 priv->regs = ss_regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002364
Mugunthan V Nf280e892013-12-11 22:09:05 -06002365 /* Need to enable clocks with runtime PM api to access module
2366 * registers
2367 */
Grygorii Strashko108a6532016-06-24 21:23:42 +03002368 ret = pm_runtime_get_sync(&pdev->dev);
2369 if (ret < 0) {
2370 pm_runtime_put_noidle(&pdev->dev);
2371 goto clean_runtime_disable_ret;
2372 }
Mugunthan V Nf280e892013-12-11 22:09:05 -06002373 priv->version = readl(&priv->regs->id_ver);
2374 pm_runtime_put_sync(&pdev->dev);
2375
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302376 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2377 priv->wr_regs = devm_ioremap_resource(&pdev->dev, res);
2378 if (IS_ERR(priv->wr_regs)) {
2379 ret = PTR_ERR(priv->wr_regs);
2380 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002381 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002382
2383 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00002384 memset(&ale_params, 0, sizeof(ale_params));
2385
2386 switch (priv->version) {
2387 case CPSW_VERSION_1:
2388 priv->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302389 priv->cpts->reg = ss_regs + CPSW1_CPTS_OFFSET;
2390 priv->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002391 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
2392 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
2393 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
2394 slave_offset = CPSW1_SLAVE_OFFSET;
2395 slave_size = CPSW1_SLAVE_SIZE;
2396 sliver_offset = CPSW1_SLIVER_OFFSET;
2397 dma_params.desc_mem_phys = 0;
2398 break;
2399 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05302400 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05302401 case CPSW_VERSION_4:
Richard Cochran549985e2012-11-14 09:07:56 +00002402 priv->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302403 priv->cpts->reg = ss_regs + CPSW2_CPTS_OFFSET;
2404 priv->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002405 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
2406 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
2407 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
2408 slave_offset = CPSW2_SLAVE_OFFSET;
2409 slave_size = CPSW2_SLAVE_SIZE;
2410 sliver_offset = CPSW2_SLIVER_OFFSET;
2411 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302412 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00002413 break;
2414 default:
2415 dev_err(priv->dev, "unknown version 0x%08x\n", priv->version);
2416 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302417 goto clean_runtime_disable_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00002418 }
2419 for (i = 0; i < priv->data.slaves; i++) {
2420 struct cpsw_slave *slave = &priv->slaves[i];
2421 cpsw_slave_init(slave, priv, slave_offset, sliver_offset);
2422 slave_offset += slave_size;
2423 sliver_offset += SLIVER_SIZE;
2424 }
2425
Mugunthan V Ndf828592012-03-18 20:17:54 +00002426 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00002427 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
2428 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
2429 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
2430 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
2431 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002432
2433 dma_params.num_chan = data->channels;
2434 dma_params.has_soft_reset = true;
2435 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
2436 dma_params.desc_mem_size = data->bd_ram_size;
2437 dma_params.desc_align = 16;
2438 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00002439 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002440
2441 priv->dma = cpdma_ctlr_create(&dma_params);
2442 if (!priv->dma) {
2443 dev_err(priv->dev, "error initializing dma\n");
2444 ret = -ENOMEM;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302445 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002446 }
2447
2448 priv->txch = cpdma_chan_create(priv->dma, tx_chan_num(0),
2449 cpsw_tx_handler);
2450 priv->rxch = cpdma_chan_create(priv->dma, rx_chan_num(0),
2451 cpsw_rx_handler);
2452
2453 if (WARN_ON(!priv->txch || !priv->rxch)) {
2454 dev_err(priv->dev, "error initializing dma channels\n");
2455 ret = -ENOMEM;
2456 goto clean_dma_ret;
2457 }
2458
Mugunthan V Ndf828592012-03-18 20:17:54 +00002459 ale_params.dev = &ndev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002460 ale_params.ale_ageout = ale_ageout;
2461 ale_params.ale_entries = data->ale_entries;
2462 ale_params.ale_ports = data->slaves;
2463
2464 priv->ale = cpsw_ale_create(&ale_params);
2465 if (!priv->ale) {
2466 dev_err(priv->dev, "error initializing ale engine\n");
2467 ret = -ENODEV;
2468 goto clean_dma_ret;
2469 }
2470
Felipe Balbic03abd82015-01-16 10:11:12 -06002471 ndev->irq = platform_get_irq(pdev, 1);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002472 if (ndev->irq < 0) {
2473 dev_err(priv->dev, "error getting irq resource\n");
Julia Lawallc1e33342015-12-26 20:12:13 +01002474 ret = ndev->irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002475 goto clean_ale_ret;
2476 }
2477
Mugunthan V N7da11602015-08-12 15:22:53 +05302478 of_id = of_match_device(cpsw_of_mtable, &pdev->dev);
2479 if (of_id) {
2480 pdev->id_entry = of_id->data;
2481 if (pdev->id_entry->driver_data)
2482 priv->quirk_irq = true;
2483 }
2484
Felipe Balbic03abd82015-01-16 10:11:12 -06002485 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
2486 * MISC IRQs which are always kept disabled with this driver so
2487 * we will not request them.
2488 *
2489 * If anyone wants to implement support for those, make sure to
2490 * first request and append them to irqs_table array.
2491 */
Daniel Mackc2b32e52014-09-04 09:00:23 +02002492
Felipe Balbic03abd82015-01-16 10:11:12 -06002493 /* RX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06002494 irq = platform_get_irq(pdev, 1);
Julia Lawallc1e33342015-12-26 20:12:13 +01002495 if (irq < 0) {
2496 ret = irq;
Felipe Balbi5087b912015-01-16 10:11:11 -06002497 goto clean_ale_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01002498 }
Felipe Balbi5087b912015-01-16 10:11:11 -06002499
Felipe Balbic03abd82015-01-16 10:11:12 -06002500 priv->irqs_table[0] = irq;
2501 ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
Felipe Balbi5087b912015-01-16 10:11:11 -06002502 0, dev_name(&pdev->dev), priv);
2503 if (ret < 0) {
2504 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2505 goto clean_ale_ret;
2506 }
2507
Felipe Balbic03abd82015-01-16 10:11:12 -06002508 /* TX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06002509 irq = platform_get_irq(pdev, 2);
Julia Lawallc1e33342015-12-26 20:12:13 +01002510 if (irq < 0) {
2511 ret = irq;
Felipe Balbi5087b912015-01-16 10:11:11 -06002512 goto clean_ale_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01002513 }
Felipe Balbi5087b912015-01-16 10:11:11 -06002514
Felipe Balbic03abd82015-01-16 10:11:12 -06002515 priv->irqs_table[1] = irq;
2516 ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt,
Felipe Balbi5087b912015-01-16 10:11:11 -06002517 0, dev_name(&pdev->dev), priv);
2518 if (ret < 0) {
2519 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2520 goto clean_ale_ret;
2521 }
Felipe Balbic03abd82015-01-16 10:11:12 -06002522 priv->num_irqs = 2;
Daniel Mackc2b32e52014-09-04 09:00:23 +02002523
Patrick McHardyf6469682013-04-19 02:04:27 +00002524 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002525
2526 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002527 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V N32a74322015-08-04 16:06:20 +05302528 netif_napi_add(ndev, &priv->napi_rx, cpsw_rx_poll, CPSW_POLL_WEIGHT);
Eric Dumazetd64b5e82015-11-18 06:31:00 -08002529 netif_tx_napi_add(ndev, &priv->napi_tx, cpsw_tx_poll, CPSW_POLL_WEIGHT);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002530
2531 /* register the network device */
2532 SET_NETDEV_DEV(ndev, &pdev->dev);
2533 ret = register_netdev(ndev);
2534 if (ret) {
2535 dev_err(priv->dev, "error registering net device\n");
2536 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302537 goto clean_ale_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002538 }
2539
Olof Johansson1a3b5052013-12-11 15:58:07 -08002540 cpsw_notice(priv, probe, "initialized device (regs %pa, irq %d)\n",
2541 &ss_res->start, ndev->irq);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002542
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002543 if (priv->data.dual_emac) {
2544 ret = cpsw_probe_dual_emac(pdev, priv);
2545 if (ret) {
2546 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302547 goto clean_ale_ret;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002548 }
2549 }
2550
Mugunthan V Ndf828592012-03-18 20:17:54 +00002551 return 0;
2552
Mugunthan V Ndf828592012-03-18 20:17:54 +00002553clean_ale_ret:
2554 cpsw_ale_destroy(priv->ale);
2555clean_dma_ret:
Mugunthan V Ndf828592012-03-18 20:17:54 +00002556 cpdma_ctlr_destroy(priv->dma);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302557clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002558 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002559clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002560 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002561 return ret;
2562}
2563
Bill Pemberton663e12e2012-12-03 09:23:45 -05002564static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002565{
2566 struct net_device *ndev = platform_get_drvdata(pdev);
2567 struct cpsw_priv *priv = netdev_priv(ndev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03002568 int ret;
2569
2570 ret = pm_runtime_get_sync(&pdev->dev);
2571 if (ret < 0) {
2572 pm_runtime_put_noidle(&pdev->dev);
2573 return ret;
2574 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002575
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002576 if (priv->data.dual_emac)
Ivan Khoronzhuk82b52102016-08-10 02:22:36 +03002577 unregister_netdev(priv->slaves[1].ndev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002578 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002579
Mugunthan V Ndf828592012-03-18 20:17:54 +00002580 cpsw_ale_destroy(priv->ale);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002581 cpdma_ctlr_destroy(priv->dma);
Grygorii Strashko3bf2cb32016-07-28 20:50:36 +03002582 of_platform_depopulate(&pdev->dev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03002583 pm_runtime_put_sync(&pdev->dev);
2584 pm_runtime_disable(&pdev->dev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002585 if (priv->data.dual_emac)
Ivan Khoronzhuk82b52102016-08-10 02:22:36 +03002586 free_netdev(priv->slaves[1].ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002587 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002588 return 0;
2589}
2590
Grygorii Strashko8963a502015-02-27 13:19:45 +02002591#ifdef CONFIG_PM_SLEEP
Mugunthan V Ndf828592012-03-18 20:17:54 +00002592static int cpsw_suspend(struct device *dev)
2593{
2594 struct platform_device *pdev = to_platform_device(dev);
2595 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V Nb90fc272013-06-21 19:15:09 +05302596 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002597
Mugunthan V N618073e2014-09-11 22:52:38 +05302598 if (priv->data.dual_emac) {
2599 int i;
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002600
Mugunthan V N618073e2014-09-11 22:52:38 +05302601 for (i = 0; i < priv->data.slaves; i++) {
2602 if (netif_running(priv->slaves[i].ndev))
2603 cpsw_ndo_stop(priv->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302604 }
2605 } else {
2606 if (netif_running(ndev))
2607 cpsw_ndo_stop(ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302608 }
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002609
Mugunthan V N739683b2013-06-06 23:45:14 +05302610 /* Select sleep pin state */
2611 pinctrl_pm_select_sleep_state(&pdev->dev);
2612
Mugunthan V Ndf828592012-03-18 20:17:54 +00002613 return 0;
2614}
2615
2616static int cpsw_resume(struct device *dev)
2617{
2618 struct platform_device *pdev = to_platform_device(dev);
2619 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302620 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002621
Mugunthan V N739683b2013-06-06 23:45:14 +05302622 /* Select default pin state */
2623 pinctrl_pm_select_default_state(&pdev->dev);
2624
Mugunthan V N618073e2014-09-11 22:52:38 +05302625 if (priv->data.dual_emac) {
2626 int i;
2627
2628 for (i = 0; i < priv->data.slaves; i++) {
2629 if (netif_running(priv->slaves[i].ndev))
2630 cpsw_ndo_open(priv->slaves[i].ndev);
2631 }
2632 } else {
2633 if (netif_running(ndev))
2634 cpsw_ndo_open(ndev);
2635 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002636 return 0;
2637}
Grygorii Strashko8963a502015-02-27 13:19:45 +02002638#endif
Mugunthan V Ndf828592012-03-18 20:17:54 +00002639
Grygorii Strashko8963a502015-02-27 13:19:45 +02002640static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002641
2642static struct platform_driver cpsw_driver = {
2643 .driver = {
2644 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00002645 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05302646 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002647 },
2648 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05002649 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002650};
2651
Grygorii Strashko6fb3b6b52015-10-23 14:41:12 +03002652module_platform_driver(cpsw_driver);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002653
2654MODULE_LICENSE("GPL");
2655MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
2656MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
2657MODULE_DESCRIPTION("TI CPSW Ethernet driver");