blob: 74f828412055196756aa811a57b592e43f46912b [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>
Randy Dunlap514c6032018-04-05 16:25:34 -070038#include <linux/kmemleak.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000039
Mugunthan V N739683b2013-06-06 23:45:14 +053040#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000041
Mugunthan V Ndbe34722013-08-19 17:47:40 +053042#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000043#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000044#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000045#include "davinci_cpdma.h"
46
47#define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \
48 NETIF_MSG_DRV | NETIF_MSG_LINK | \
49 NETIF_MSG_IFUP | NETIF_MSG_INTR | \
50 NETIF_MSG_PROBE | NETIF_MSG_TIMER | \
51 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \
52 NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \
53 NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \
54 NETIF_MSG_RX_STATUS)
55
56#define cpsw_info(priv, type, format, ...) \
57do { \
58 if (netif_msg_##type(priv) && net_ratelimit()) \
59 dev_info(priv->dev, format, ## __VA_ARGS__); \
60} while (0)
61
62#define cpsw_err(priv, type, format, ...) \
63do { \
64 if (netif_msg_##type(priv) && net_ratelimit()) \
65 dev_err(priv->dev, format, ## __VA_ARGS__); \
66} while (0)
67
68#define cpsw_dbg(priv, type, format, ...) \
69do { \
70 if (netif_msg_##type(priv) && net_ratelimit()) \
71 dev_dbg(priv->dev, format, ## __VA_ARGS__); \
72} while (0)
73
74#define cpsw_notice(priv, type, format, ...) \
75do { \
76 if (netif_msg_##type(priv) && net_ratelimit()) \
77 dev_notice(priv->dev, format, ## __VA_ARGS__); \
78} while (0)
79
Mugunthan V N5c50a852012-10-29 08:45:11 +000080#define ALE_ALL_PORTS 0x7
81
Mugunthan V Ndf828592012-03-18 20:17:54 +000082#define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7)
83#define CPSW_MINOR_VERSION(reg) (reg & 0xff)
84#define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f)
85
Richard Cochrane90cfac2012-10-29 08:45:14 +000086#define CPSW_VERSION_1 0x19010a
87#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053088#define CPSW_VERSION_3 0x19010f
Mugunthan V N926489b2013-08-12 17:11:15 +053089#define CPSW_VERSION_4 0x190112
Richard Cochran549985e2012-11-14 09:07:56 +000090
91#define HOST_PORT_NUM 0
Grygorii Strashkoc6395f12017-11-30 18:21:14 -060092#define CPSW_ALE_PORTS_NUM 3
Richard Cochran549985e2012-11-14 09:07:56 +000093#define SLIVER_SIZE 0x40
94
95#define CPSW1_HOST_PORT_OFFSET 0x028
96#define CPSW1_SLAVE_OFFSET 0x050
97#define CPSW1_SLAVE_SIZE 0x040
98#define CPSW1_CPDMA_OFFSET 0x100
99#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +0530100#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +0000101#define CPSW1_CPTS_OFFSET 0x500
102#define CPSW1_ALE_OFFSET 0x600
103#define CPSW1_SLIVER_OFFSET 0x700
104
105#define CPSW2_HOST_PORT_OFFSET 0x108
106#define CPSW2_SLAVE_OFFSET 0x200
107#define CPSW2_SLAVE_SIZE 0x100
108#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530109#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000110#define CPSW2_STATERAM_OFFSET 0xa00
111#define CPSW2_CPTS_OFFSET 0xc00
112#define CPSW2_ALE_OFFSET 0xd00
113#define CPSW2_SLIVER_OFFSET 0xd80
114#define CPSW2_BD_OFFSET 0x2000
115
Mugunthan V Ndf828592012-03-18 20:17:54 +0000116#define CPDMA_RXTHRESH 0x0c0
117#define CPDMA_RXFREE 0x0e0
118#define CPDMA_TXHDP 0x00
119#define CPDMA_RXHDP 0x20
120#define CPDMA_TXCP 0x40
121#define CPDMA_RXCP 0x60
122
Mugunthan V Ndf828592012-03-18 20:17:54 +0000123#define CPSW_POLL_WEIGHT 64
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500124#define CPSW_RX_VLAN_ENCAP_HDR_SIZE 4
Grygorii Strashko9421c902017-11-15 09:46:35 -0600125#define CPSW_MIN_PACKET_SIZE (VLAN_ETH_ZLEN)
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500126#define CPSW_MAX_PACKET_SIZE (VLAN_ETH_FRAME_LEN +\
127 ETH_FCS_LEN +\
128 CPSW_RX_VLAN_ENCAP_HDR_SIZE)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000129
130#define RX_PRIORITY_MAPPING 0x76543210
131#define TX_PRIORITY_MAPPING 0x33221100
Ivan Khoronzhuk5e391dc52018-04-19 22:49:09 +0300132#define CPDMA_TX_PRIORITY_MAP 0x76543210
Mugunthan V Ndf828592012-03-18 20:17:54 +0000133
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000134#define CPSW_VLAN_AWARE BIT(1)
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500135#define CPSW_RX_VLAN_ENCAP BIT(2)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000136#define CPSW_ALE_VLAN_AWARE 1
137
John Ogness35717d82014-11-14 15:42:52 +0100138#define CPSW_FIFO_NORMAL_MODE (0 << 16)
139#define CPSW_FIFO_DUAL_MAC_MODE (1 << 16)
140#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000141
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000142#define CPSW_INTPACEEN (0x3f << 16)
143#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
144#define CPSW_CMINTMAX_CNT 63
145#define CPSW_CMINTMIN_CNT 2
146#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
147#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
148
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300149#define cpsw_slave_index(cpsw, priv) \
150 ((cpsw->data.dual_emac) ? priv->emac_port : \
151 cpsw->data.active_slave)
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300152#define IRQ_NUM 2
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300153#define CPSW_MAX_QUEUES 8
Grygorii Strashko90225bf2017-01-06 14:07:33 -0600154#define CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT 256
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000155
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500156#define CPSW_RX_VLAN_ENCAP_HDR_PRIO_SHIFT 29
157#define CPSW_RX_VLAN_ENCAP_HDR_PRIO_MSK GENMASK(2, 0)
158#define CPSW_RX_VLAN_ENCAP_HDR_VID_SHIFT 16
159#define CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_SHIFT 8
160#define CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_MSK GENMASK(1, 0)
161enum {
162 CPSW_RX_VLAN_ENCAP_HDR_PKT_VLAN_TAG = 0,
163 CPSW_RX_VLAN_ENCAP_HDR_PKT_RESERV,
164 CPSW_RX_VLAN_ENCAP_HDR_PKT_PRIO_TAG,
165 CPSW_RX_VLAN_ENCAP_HDR_PKT_UNTAG,
166};
167
Mugunthan V Ndf828592012-03-18 20:17:54 +0000168static int debug_level;
169module_param(debug_level, int, 0);
170MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
171
172static int ale_ageout = 10;
173module_param(ale_ageout, int, 0);
174MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
175
176static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
177module_param(rx_packet_max, int, 0);
178MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
179
Grygorii Strashko90225bf2017-01-06 14:07:33 -0600180static int descs_pool_size = CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT;
181module_param(descs_pool_size, int, 0444);
182MODULE_PARM_DESC(descs_pool_size, "Number of CPDMA CPPI descriptors in pool");
183
Richard Cochran996a5c22012-10-29 08:45:12 +0000184struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000185 u32 id_ver;
186 u32 soft_reset;
187 u32 control;
188 u32 int_control;
189 u32 rx_thresh_en;
190 u32 rx_en;
191 u32 tx_en;
192 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000193 u32 mem_allign1[8];
194 u32 rx_thresh_stat;
195 u32 rx_stat;
196 u32 tx_stat;
197 u32 misc_stat;
198 u32 mem_allign2[8];
199 u32 rx_imax;
200 u32 tx_imax;
201
Mugunthan V Ndf828592012-03-18 20:17:54 +0000202};
203
Richard Cochran996a5c22012-10-29 08:45:12 +0000204struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000205 u32 id_ver;
206 u32 control;
207 u32 soft_reset;
208 u32 stat_port_en;
209 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000210 u32 soft_idle;
211 u32 thru_rate;
212 u32 gap_thresh;
213 u32 tx_start_wds;
214 u32 flow_control;
215 u32 vlan_ltype;
216 u32 ts_ltype;
217 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000218};
219
Richard Cochran9750a3a2012-10-29 08:45:15 +0000220/* CPSW_PORT_V1 */
221#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
222#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
223#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
224#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
225#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
226#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
227#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
228#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
229
230/* CPSW_PORT_V2 */
231#define CPSW2_CONTROL 0x00 /* Control Register */
232#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
233#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
234#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
235#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
236#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
237#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
238
239/* CPSW_PORT_V1 and V2 */
240#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
241#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
242#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
243
244/* CPSW_PORT_V2 only */
245#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
246#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
247#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
248#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
249#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
250#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
251#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
252#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
253
254/* Bit definitions for the CPSW2_CONTROL register */
255#define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */
256#define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */
257#define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */
258#define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */
259#define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */
260#define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */
261#define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */
262#define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */
263#define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */
264#define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */
George Cherian09c55372014-05-02 12:02:02 +0530265#define TS_TTL_NONZERO (1<<8) /* Time Sync Time To Live Non-zero enable */
266#define TS_ANNEX_F_EN (1<<6) /* Time Sync Annex F enable */
Richard Cochran9750a3a2012-10-29 08:45:15 +0000267#define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */
268#define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */
269#define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */
270#define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */
271#define TS_RX_EN (1<<0) /* Time Sync Receive Enable */
272
George Cherian09c55372014-05-02 12:02:02 +0530273#define CTRL_V2_TS_BITS \
274 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
275 TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000276
George Cherian09c55372014-05-02 12:02:02 +0530277#define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN)
278#define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN)
279#define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN)
280
281
282#define CTRL_V3_TS_BITS \
283 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
284 TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\
285 TS_LTYPE1_EN)
286
287#define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN)
288#define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN)
289#define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000290
291/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
292#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
293#define TS_SEQ_ID_OFFSET_MASK (0x3f)
294#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
295#define TS_MSG_TYPE_EN_MASK (0xffff)
296
297/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
298#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000299
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000300/* Bit definitions for the CPSW1_TS_CTL register */
301#define CPSW_V1_TS_RX_EN BIT(0)
302#define CPSW_V1_TS_TX_EN BIT(4)
303#define CPSW_V1_MSG_TYPE_OFS 16
304
305/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
306#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
307
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -0500308#define CPSW_MAX_BLKS_TX 15
309#define CPSW_MAX_BLKS_TX_SHIFT 4
310#define CPSW_MAX_BLKS_RX 5
311
Mugunthan V Ndf828592012-03-18 20:17:54 +0000312struct cpsw_host_regs {
313 u32 max_blks;
314 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000315 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000316 u32 port_vlan;
317 u32 tx_pri_map;
318 u32 cpdma_tx_pri_map;
319 u32 cpdma_rx_chan_map;
320};
321
322struct cpsw_sliver_regs {
323 u32 id_ver;
324 u32 mac_control;
325 u32 mac_status;
326 u32 soft_reset;
327 u32 rx_maxlen;
328 u32 __reserved_0;
329 u32 rx_pause;
330 u32 tx_pause;
331 u32 __reserved_1;
332 u32 rx_pri_map;
333};
334
Mugunthan V Nd9718542013-07-23 15:38:17 +0530335struct cpsw_hw_stats {
336 u32 rxgoodframes;
337 u32 rxbroadcastframes;
338 u32 rxmulticastframes;
339 u32 rxpauseframes;
340 u32 rxcrcerrors;
341 u32 rxaligncodeerrors;
342 u32 rxoversizedframes;
343 u32 rxjabberframes;
344 u32 rxundersizedframes;
345 u32 rxfragments;
346 u32 __pad_0[2];
347 u32 rxoctets;
348 u32 txgoodframes;
349 u32 txbroadcastframes;
350 u32 txmulticastframes;
351 u32 txpauseframes;
352 u32 txdeferredframes;
353 u32 txcollisionframes;
354 u32 txsinglecollframes;
355 u32 txmultcollframes;
356 u32 txexcessivecollisions;
357 u32 txlatecollisions;
358 u32 txunderrun;
359 u32 txcarriersenseerrors;
360 u32 txoctets;
361 u32 octetframes64;
362 u32 octetframes65t127;
363 u32 octetframes128t255;
364 u32 octetframes256t511;
365 u32 octetframes512t1023;
366 u32 octetframes1024tup;
367 u32 netoctets;
368 u32 rxsofoverruns;
369 u32 rxmofoverruns;
370 u32 rxdmaoverruns;
371};
372
Grygorii Strashko2c8a14d2017-11-30 18:21:12 -0600373struct cpsw_slave_data {
374 struct device_node *phy_node;
375 char phy_id[MII_BUS_ID_SIZE];
376 int phy_if;
377 u8 mac_addr[ETH_ALEN];
378 u16 dual_emac_res_vlan; /* Reserved VLAN for DualEMAC */
379};
380
381struct cpsw_platform_data {
382 struct cpsw_slave_data *slave_data;
383 u32 ss_reg_ofs; /* Subsystem control register offset */
384 u32 channels; /* number of cpdma channels (symmetric) */
385 u32 slaves; /* number of slave cpgmac ports */
386 u32 active_slave; /* time stamping, ethtool and SIOCGMIIPHY slave */
387 u32 ale_entries; /* ale table size */
388 u32 bd_ram_size; /*buffer descriptor ram size */
389 u32 mac_control; /* Mac control register */
390 u16 default_vlan; /* Def VLAN for ALE lookup in VLAN aware mode*/
391 bool dual_emac; /* Enable Dual EMAC mode */
392};
393
Mugunthan V Ndf828592012-03-18 20:17:54 +0000394struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000395 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000396 struct cpsw_sliver_regs __iomem *sliver;
397 int slave_num;
398 u32 mac_control;
399 struct cpsw_slave_data *data;
400 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000401 struct net_device *ndev;
402 u32 port_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000403};
404
Richard Cochran9750a3a2012-10-29 08:45:15 +0000405static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
406{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600407 return readl_relaxed(slave->regs + offset);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000408}
409
410static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
411{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600412 writel_relaxed(val, slave->regs + offset);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000413}
414
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200415struct cpsw_vector {
416 struct cpdma_chan *ch;
417 int budget;
418};
419
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300420struct cpsw_common {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300421 struct device *dev;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300422 struct cpsw_platform_data data;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300423 struct napi_struct napi_rx;
424 struct napi_struct napi_tx;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300425 struct cpsw_ss_regs __iomem *regs;
426 struct cpsw_wr_regs __iomem *wr_regs;
427 u8 __iomem *hw_stats;
428 struct cpsw_host_regs __iomem *host_port_regs;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300429 u32 version;
430 u32 coal_intvl;
431 u32 bus_freq_mhz;
432 int rx_packet_max;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300433 struct cpsw_slave *slaves;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300434 struct cpdma_ctlr *dma;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200435 struct cpsw_vector txv[CPSW_MAX_QUEUES];
436 struct cpsw_vector rxv[CPSW_MAX_QUEUES];
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300437 struct cpsw_ale *ale;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300438 bool quirk_irq;
439 bool rx_irq_disabled;
440 bool tx_irq_disabled;
441 u32 irqs_table[IRQ_NUM];
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300442 struct cpts *cpts;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300443 int rx_ch_num, tx_ch_num;
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200444 int speed;
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200445 int usage_count;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300446};
447
448struct cpsw_priv {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000449 struct net_device *ndev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000450 struct device *dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000451 u32 msg_enable;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000452 u8 mac_addr[ETH_ALEN];
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530453 bool rx_pause;
454 bool tx_pause;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000455 u32 emac_port;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300456 struct cpsw_common *cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000457};
458
Mugunthan V Nd9718542013-07-23 15:38:17 +0530459struct cpsw_stats {
460 char stat_string[ETH_GSTRING_LEN];
461 int type;
462 int sizeof_stat;
463 int stat_offset;
464};
465
466enum {
467 CPSW_STATS,
468 CPDMA_RX_STATS,
469 CPDMA_TX_STATS,
470};
471
472#define CPSW_STAT(m) CPSW_STATS, \
473 sizeof(((struct cpsw_hw_stats *)0)->m), \
474 offsetof(struct cpsw_hw_stats, m)
475#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
476 sizeof(((struct cpdma_chan_stats *)0)->m), \
477 offsetof(struct cpdma_chan_stats, m)
478#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
479 sizeof(((struct cpdma_chan_stats *)0)->m), \
480 offsetof(struct cpdma_chan_stats, m)
481
482static const struct cpsw_stats cpsw_gstrings_stats[] = {
483 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
484 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
485 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
486 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
487 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
488 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
489 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
490 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
491 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
492 { "Rx Fragments", CPSW_STAT(rxfragments) },
493 { "Rx Octets", CPSW_STAT(rxoctets) },
494 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
495 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
496 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
497 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
498 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
499 { "Collisions", CPSW_STAT(txcollisionframes) },
500 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
501 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
502 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
503 { "Late Collisions", CPSW_STAT(txlatecollisions) },
504 { "Tx Underrun", CPSW_STAT(txunderrun) },
505 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
506 { "Tx Octets", CPSW_STAT(txoctets) },
507 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
508 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
509 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
510 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
511 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
512 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
513 { "Net Octets", CPSW_STAT(netoctets) },
514 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
515 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
516 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
Mugunthan V Nd9718542013-07-23 15:38:17 +0530517};
518
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300519static const struct cpsw_stats cpsw_gstrings_ch_stats[] = {
520 { "head_enqueue", CPDMA_RX_STAT(head_enqueue) },
521 { "tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
522 { "pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
523 { "misqueued", CPDMA_RX_STAT(misqueued) },
524 { "desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
525 { "pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
526 { "runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
527 { "runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
528 { "empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
529 { "busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
530 { "good_dequeue", CPDMA_RX_STAT(good_dequeue) },
531 { "requeue", CPDMA_RX_STAT(requeue) },
532 { "teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
533};
534
535#define CPSW_STATS_COMMON_LEN ARRAY_SIZE(cpsw_gstrings_stats)
536#define CPSW_STATS_CH_LEN ARRAY_SIZE(cpsw_gstrings_ch_stats)
Mugunthan V Nd9718542013-07-23 15:38:17 +0530537
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300538#define ndev_to_cpsw(ndev) (((struct cpsw_priv *)netdev_priv(ndev))->cpsw)
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300539#define napi_to_cpsw(napi) container_of(napi, struct cpsw_common, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000540#define for_each_slave(priv, func, arg...) \
541 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000542 struct cpsw_slave *slave; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300543 struct cpsw_common *cpsw = (priv)->cpsw; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000544 int n; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300545 if (cpsw->data.dual_emac) \
546 (func)((cpsw)->slaves + priv->emac_port, ##arg);\
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000547 else \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300548 for (n = cpsw->data.slaves, \
549 slave = cpsw->slaves; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000550 n; n--) \
551 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000552 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000553
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300554#define cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000555 do { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300556 if (!cpsw->data.dual_emac) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000557 break; \
558 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300559 ndev = cpsw->slaves[0].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000560 skb->dev = ndev; \
561 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300562 ndev = cpsw->slaves[1].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000563 skb->dev = ndev; \
564 } \
565 } while (0)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300566#define cpsw_add_mcast(cpsw, priv, addr) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000567 do { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300568 if (cpsw->data.dual_emac) { \
569 struct cpsw_slave *slave = cpsw->slaves + \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000570 priv->emac_port; \
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300571 int slave_port = cpsw_get_slave_port( \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000572 slave->slave_num); \
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300573 cpsw_ale_add_mcast(cpsw->ale, addr, \
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300574 1 << slave_port | ALE_PORT_HOST, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000575 ALE_VLAN, slave->port_vlan, 0); \
576 } else { \
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300577 cpsw_ale_add_mcast(cpsw->ale, addr, \
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300578 ALE_ALL_PORTS, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000579 0, 0, 0); \
580 } \
581 } while (0)
582
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300583static inline int cpsw_get_slave_port(u32 slave_num)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000584{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300585 return slave_num + 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000586}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000587
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530588static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
589{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300590 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
591 struct cpsw_ale *ale = cpsw->ale;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530592 int i;
593
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300594 if (cpsw->data.dual_emac) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530595 bool flag = false;
596
597 /* Enabling promiscuous mode for one interface will be
598 * common for both the interface as the interface shares
599 * the same hardware resource.
600 */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300601 for (i = 0; i < cpsw->data.slaves; i++)
602 if (cpsw->slaves[i].ndev->flags & IFF_PROMISC)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530603 flag = true;
604
605 if (!enable && flag) {
606 enable = true;
607 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
608 }
609
610 if (enable) {
611 /* Enable Bypass */
612 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
613
614 dev_dbg(&ndev->dev, "promiscuity enabled\n");
615 } else {
616 /* Disable Bypass */
617 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
618 dev_dbg(&ndev->dev, "promiscuity disabled\n");
619 }
620 } else {
621 if (enable) {
622 unsigned long timeout = jiffies + HZ;
623
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400624 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300625 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530626 cpsw_ale_control_set(ale, i,
627 ALE_PORT_NOLEARN, 1);
628 cpsw_ale_control_set(ale, i,
629 ALE_PORT_NO_SA_UPDATE, 1);
630 }
631
632 /* Clear All Untouched entries */
633 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
634 do {
635 cpu_relax();
636 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
637 break;
638 } while (time_after(timeout, jiffies));
639 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
640
641 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300642 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1);
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530643
644 /* Flood All Unicast Packets to Host port */
645 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
646 dev_dbg(&ndev->dev, "promiscuity enabled\n");
647 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400648 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530649 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
650
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400651 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300652 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530653 cpsw_ale_control_set(ale, i,
654 ALE_PORT_NOLEARN, 0);
655 cpsw_ale_control_set(ale, i,
656 ALE_PORT_NO_SA_UPDATE, 0);
657 }
658 dev_dbg(&ndev->dev, "promiscuity disabled\n");
659 }
660 }
661}
662
Mugunthan V N5c50a852012-10-29 08:45:11 +0000663static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
664{
665 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300666 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N25906052015-01-13 17:35:49 +0530667 int vid;
668
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300669 if (cpsw->data.dual_emac)
670 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V N25906052015-01-13 17:35:49 +0530671 else
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300672 vid = cpsw->data.default_vlan;
Mugunthan V N5c50a852012-10-29 08:45:11 +0000673
674 if (ndev->flags & IFF_PROMISC) {
675 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530676 cpsw_set_promiscious(ndev, true);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300677 cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000678 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530679 } else {
680 /* Disable promiscuous mode */
681 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000682 }
683
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400684 /* Restore allmulti on vlans if necessary */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300685 cpsw_ale_set_allmulti(cpsw->ale, priv->ndev->flags & IFF_ALLMULTI);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400686
Mugunthan V N5c50a852012-10-29 08:45:11 +0000687 /* Clear all mcast from ALE */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300688 cpsw_ale_flush_multicast(cpsw->ale, ALE_ALL_PORTS, vid);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000689
690 if (!netdev_mc_empty(ndev)) {
691 struct netdev_hw_addr *ha;
692
693 /* program multicast address list into ALE register */
694 netdev_for_each_mc_addr(ha, ndev) {
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300695 cpsw_add_mcast(cpsw, priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000696 }
697 }
698}
699
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300700static void cpsw_intr_enable(struct cpsw_common *cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000701{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600702 writel_relaxed(0xFF, &cpsw->wr_regs->tx_en);
703 writel_relaxed(0xFF, &cpsw->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000704
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300705 cpdma_ctlr_int_ctrl(cpsw->dma, true);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000706 return;
707}
708
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300709static void cpsw_intr_disable(struct cpsw_common *cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000710{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600711 writel_relaxed(0, &cpsw->wr_regs->tx_en);
712 writel_relaxed(0, &cpsw->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000713
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300714 cpdma_ctlr_int_ctrl(cpsw->dma, false);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000715 return;
716}
717
Olof Johansson1a3b5052013-12-11 15:58:07 -0800718static void cpsw_tx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000719{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300720 struct netdev_queue *txq;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000721 struct sk_buff *skb = token;
722 struct net_device *ndev = skb->dev;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300723 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000724
Mugunthan V Nfae50822013-01-17 06:31:34 +0000725 /* Check whether the queue is stopped due to stalled tx dma, if the
726 * queue is stopped then start the queue as we have free desc for tx
727 */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300728 txq = netdev_get_tx_queue(ndev, skb_get_queue_mapping(skb));
729 if (unlikely(netif_tx_queue_stopped(txq)))
730 netif_tx_wake_queue(txq);
731
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300732 cpts_tx_timestamp(cpsw->cpts, skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100733 ndev->stats.tx_packets++;
734 ndev->stats.tx_bytes += len;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000735 dev_kfree_skb_any(skb);
736}
737
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500738static void cpsw_rx_vlan_encap(struct sk_buff *skb)
739{
740 struct cpsw_priv *priv = netdev_priv(skb->dev);
741 struct cpsw_common *cpsw = priv->cpsw;
742 u32 rx_vlan_encap_hdr = *((u32 *)skb->data);
743 u16 vtag, vid, prio, pkt_type;
744
745 /* Remove VLAN header encapsulation word */
746 skb_pull(skb, CPSW_RX_VLAN_ENCAP_HDR_SIZE);
747
748 pkt_type = (rx_vlan_encap_hdr >>
749 CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_SHIFT) &
750 CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_MSK;
751 /* Ignore unknown & Priority-tagged packets*/
752 if (pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_RESERV ||
753 pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_PRIO_TAG)
754 return;
755
756 vid = (rx_vlan_encap_hdr >>
757 CPSW_RX_VLAN_ENCAP_HDR_VID_SHIFT) &
758 VLAN_VID_MASK;
759 /* Ignore vid 0 and pass packet as is */
760 if (!vid)
761 return;
762 /* Ignore default vlans in dual mac mode */
763 if (cpsw->data.dual_emac &&
764 vid == cpsw->slaves[priv->emac_port].port_vlan)
765 return;
766
767 prio = (rx_vlan_encap_hdr >>
768 CPSW_RX_VLAN_ENCAP_HDR_PRIO_SHIFT) &
769 CPSW_RX_VLAN_ENCAP_HDR_PRIO_MSK;
770
771 vtag = (prio << VLAN_PRIO_SHIFT) | vid;
772 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
773
774 /* strip vlan tag for VLAN-tagged packet */
775 if (pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_VLAN_TAG) {
776 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
777 skb_pull(skb, VLAN_HLEN);
778 }
779}
780
Olof Johansson1a3b5052013-12-11 15:58:07 -0800781static void cpsw_rx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000782{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300783 struct cpdma_chan *ch;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000784 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000785 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000786 struct net_device *ndev = skb->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000787 int ret = 0;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300788 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000789
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300790 cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000791
Mugunthan V N16e5c572014-04-10 14:23:23 +0530792 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Ivan Khoronzhukfe734d02017-01-19 18:58:26 +0200793 /* In dual emac mode check for all interfaces */
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200794 if (cpsw->data.dual_emac && cpsw->usage_count &&
Ivan Khoronzhukfe734d02017-01-19 18:58:26 +0200795 (status >= 0)) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530796 /* The packet received is for the interface which
797 * is already down and the other interface is up
Joe Perchesdbedd442015-03-06 20:49:12 -0800798 * and running, instead of freeing which results
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530799 * in reducing of the number of rx descriptor in
800 * DMA engine, requeue skb back to cpdma.
801 */
802 new_skb = skb;
803 goto requeue;
804 }
805
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000806 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000807 dev_kfree_skb_any(skb);
808 return;
809 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000810
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300811 new_skb = netdev_alloc_skb_ip_align(ndev, cpsw->rx_packet_max);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000812 if (new_skb) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300813 skb_copy_queue_mapping(new_skb, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000814 skb_put(skb, len);
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500815 if (status & CPDMA_RX_VLAN_ENCAP)
816 cpsw_rx_vlan_encap(skb);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300817 cpts_rx_timestamp(cpsw->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000818 skb->protocol = eth_type_trans(skb, ndev);
819 netif_receive_skb(skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100820 ndev->stats.rx_bytes += len;
821 ndev->stats.rx_packets++;
Grygorii Strashko254a49d2016-08-09 15:09:44 +0300822 kmemleak_not_leak(new_skb);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000823 } else {
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100824 ndev->stats.rx_dropped++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000825 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000826 }
827
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530828requeue:
Ivan Khoronzhukce52c742016-08-22 21:18:28 +0300829 if (netif_dormant(ndev)) {
830 dev_kfree_skb_any(new_skb);
831 return;
832 }
833
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200834 ch = cpsw->rxv[skb_get_queue_mapping(new_skb)].ch;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300835 ret = cpdma_chan_submit(ch, new_skb, new_skb->data,
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300836 skb_tailroom(new_skb), 0);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000837 if (WARN_ON(ret < 0))
838 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000839}
840
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200841static void cpsw_split_res(struct net_device *ndev)
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200842{
843 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200844 u32 consumed_rate = 0, bigest_rate = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200845 struct cpsw_common *cpsw = priv->cpsw;
846 struct cpsw_vector *txv = cpsw->txv;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200847 int i, ch_weight, rlim_ch_num = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200848 int budget, bigest_rate_ch = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200849 u32 ch_rate, max_rate;
850 int ch_budget = 0;
851
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200852 for (i = 0; i < cpsw->tx_ch_num; i++) {
853 ch_rate = cpdma_chan_get_rate(txv[i].ch);
854 if (!ch_rate)
855 continue;
856
857 rlim_ch_num++;
858 consumed_rate += ch_rate;
859 }
860
861 if (cpsw->tx_ch_num == rlim_ch_num) {
862 max_rate = consumed_rate;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200863 } else if (!rlim_ch_num) {
864 ch_budget = CPSW_POLL_WEIGHT / cpsw->tx_ch_num;
865 bigest_rate = 0;
866 max_rate = consumed_rate;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200867 } else {
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200868 max_rate = cpsw->speed * 1000;
869
870 /* if max_rate is less then expected due to reduced link speed,
871 * split proportionally according next potential max speed
872 */
873 if (max_rate < consumed_rate)
874 max_rate *= 10;
875
876 if (max_rate < consumed_rate)
877 max_rate *= 10;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200878
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200879 ch_budget = (consumed_rate * CPSW_POLL_WEIGHT) / max_rate;
880 ch_budget = (CPSW_POLL_WEIGHT - ch_budget) /
881 (cpsw->tx_ch_num - rlim_ch_num);
882 bigest_rate = (max_rate - consumed_rate) /
883 (cpsw->tx_ch_num - rlim_ch_num);
884 }
885
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200886 /* split tx weight/budget */
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200887 budget = CPSW_POLL_WEIGHT;
888 for (i = 0; i < cpsw->tx_ch_num; i++) {
889 ch_rate = cpdma_chan_get_rate(txv[i].ch);
890 if (ch_rate) {
891 txv[i].budget = (ch_rate * CPSW_POLL_WEIGHT) / max_rate;
892 if (!txv[i].budget)
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200893 txv[i].budget++;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200894 if (ch_rate > bigest_rate) {
895 bigest_rate_ch = i;
896 bigest_rate = ch_rate;
897 }
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200898
899 ch_weight = (ch_rate * 100) / max_rate;
900 if (!ch_weight)
901 ch_weight++;
902 cpdma_chan_set_weight(cpsw->txv[i].ch, ch_weight);
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200903 } else {
904 txv[i].budget = ch_budget;
905 if (!bigest_rate_ch)
906 bigest_rate_ch = i;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200907 cpdma_chan_set_weight(cpsw->txv[i].ch, 0);
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200908 }
909
910 budget -= txv[i].budget;
911 }
912
913 if (budget)
914 txv[bigest_rate_ch].budget += budget;
915
916 /* split rx budget */
917 budget = CPSW_POLL_WEIGHT;
918 ch_budget = budget / cpsw->rx_ch_num;
919 for (i = 0; i < cpsw->rx_ch_num; i++) {
920 cpsw->rxv[i].budget = ch_budget;
921 budget -= ch_budget;
922 }
923
924 if (budget)
925 cpsw->rxv[0].budget += budget;
926}
927
Felipe Balbic03abd82015-01-16 10:11:12 -0600928static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000929{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300930 struct cpsw_common *cpsw = dev_id;
Felipe Balbi7ce67a32015-01-02 16:15:59 -0600931
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300932 writel(0, &cpsw->wr_regs->tx_en);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300933 cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_TX);
Felipe Balbic03abd82015-01-16 10:11:12 -0600934
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300935 if (cpsw->quirk_irq) {
936 disable_irq_nosync(cpsw->irqs_table[1]);
937 cpsw->tx_irq_disabled = true;
Mugunthan V N7da11602015-08-12 15:22:53 +0530938 }
939
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300940 napi_schedule(&cpsw->napi_tx);
Felipe Balbic03abd82015-01-16 10:11:12 -0600941 return IRQ_HANDLED;
942}
943
944static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id)
945{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300946 struct cpsw_common *cpsw = dev_id;
Felipe Balbic03abd82015-01-16 10:11:12 -0600947
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300948 cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_RX);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300949 writel(0, &cpsw->wr_regs->rx_en);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000950
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300951 if (cpsw->quirk_irq) {
952 disable_irq_nosync(cpsw->irqs_table[0]);
953 cpsw->rx_irq_disabled = true;
Mugunthan V N7da11602015-08-12 15:22:53 +0530954 }
955
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300956 napi_schedule(&cpsw->napi_rx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +0530957 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000958}
959
Mugunthan V N32a74322015-08-04 16:06:20 +0530960static int cpsw_tx_poll(struct napi_struct *napi_tx, int budget)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000961{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300962 u32 ch_map;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200963 int num_tx, cur_budget, ch;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300964 struct cpsw_common *cpsw = napi_to_cpsw(napi_tx);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200965 struct cpsw_vector *txv;
Mugunthan V N32a74322015-08-04 16:06:20 +0530966
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300967 /* process every unprocessed channel */
968 ch_map = cpdma_ctrl_txchs_state(cpsw->dma);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +0200969 for (ch = 0, num_tx = 0; ch_map; ch_map >>= 1, ch++) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300970 if (!(ch_map & 0x01))
971 continue;
972
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200973 txv = &cpsw->txv[ch];
974 if (unlikely(txv->budget > budget - num_tx))
975 cur_budget = budget - num_tx;
976 else
977 cur_budget = txv->budget;
978
979 num_tx += cpdma_chan_process(txv->ch, cur_budget);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +0200980 if (num_tx >= budget)
981 break;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300982 }
983
Mugunthan V N32a74322015-08-04 16:06:20 +0530984 if (num_tx < budget) {
985 napi_complete(napi_tx);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300986 writel(0xff, &cpsw->wr_regs->tx_en);
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300987 if (cpsw->quirk_irq && cpsw->tx_irq_disabled) {
988 cpsw->tx_irq_disabled = false;
989 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +0530990 }
Mugunthan V N32a74322015-08-04 16:06:20 +0530991 }
992
Mugunthan V N32a74322015-08-04 16:06:20 +0530993 return num_tx;
994}
995
996static int cpsw_rx_poll(struct napi_struct *napi_rx, int budget)
997{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300998 u32 ch_map;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200999 int num_rx, cur_budget, ch;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001000 struct cpsw_common *cpsw = napi_to_cpsw(napi_rx);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001001 struct cpsw_vector *rxv;
Mugunthan V N510a1e722013-02-17 22:19:20 +00001002
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001003 /* process every unprocessed channel */
1004 ch_map = cpdma_ctrl_rxchs_state(cpsw->dma);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +02001005 for (ch = 0, num_rx = 0; ch_map; ch_map >>= 1, ch++) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001006 if (!(ch_map & 0x01))
1007 continue;
1008
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001009 rxv = &cpsw->rxv[ch];
1010 if (unlikely(rxv->budget > budget - num_rx))
1011 cur_budget = budget - num_rx;
1012 else
1013 cur_budget = rxv->budget;
1014
1015 num_rx += cpdma_chan_process(rxv->ch, cur_budget);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +02001016 if (num_rx >= budget)
1017 break;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001018 }
1019
Mugunthan V N510a1e722013-02-17 22:19:20 +00001020 if (num_rx < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001021 napi_complete_done(napi_rx, num_rx);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001022 writel(0xff, &cpsw->wr_regs->rx_en);
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001023 if (cpsw->quirk_irq && cpsw->rx_irq_disabled) {
1024 cpsw->rx_irq_disabled = false;
1025 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301026 }
Mugunthan V N510a1e722013-02-17 22:19:20 +00001027 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001028
Mugunthan V Ndf828592012-03-18 20:17:54 +00001029 return num_rx;
1030}
1031
1032static inline void soft_reset(const char *module, void __iomem *reg)
1033{
1034 unsigned long timeout = jiffies + HZ;
1035
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001036 writel_relaxed(1, reg);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001037 do {
1038 cpu_relax();
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001039 } while ((readl_relaxed(reg) & 1) && time_after(timeout, jiffies));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001040
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001041 WARN(readl_relaxed(reg) & 1, "failed to soft-reset %s\n", module);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001042}
1043
Mugunthan V Ndf828592012-03-18 20:17:54 +00001044static void cpsw_set_slave_mac(struct cpsw_slave *slave,
1045 struct cpsw_priv *priv)
1046{
Richard Cochran9750a3a2012-10-29 08:45:15 +00001047 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
1048 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001049}
1050
1051static void _cpsw_adjust_link(struct cpsw_slave *slave,
1052 struct cpsw_priv *priv, bool *link)
1053{
1054 struct phy_device *phy = slave->phy;
1055 u32 mac_control = 0;
1056 u32 slave_port;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001057 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001058
1059 if (!phy)
1060 return;
1061
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001062 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001063
1064 if (phy->link) {
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001065 mac_control = cpsw->data.mac_control;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001066
1067 /* enable forwarding */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001068 cpsw_ale_control_set(cpsw->ale, slave_port,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001069 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1070
1071 if (phy->speed == 1000)
1072 mac_control |= BIT(7); /* GIGABITEN */
1073 if (phy->duplex)
1074 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +00001075
1076 /* set speed_in input in case RMII mode is used in 100Mbps */
1077 if (phy->speed == 100)
1078 mac_control |= BIT(15);
SZ Lin (林上智)f9db5062018-03-16 00:56:01 +08001079 /* in band mode only works in 10Mbps RGMII mode */
1080 else if ((phy->speed == 10) && phy_interface_is_rgmii(phy))
Mugunthan V Na81d8762013-12-13 18:42:55 +05301081 mac_control |= BIT(18); /* In Band mode */
Daniel Mack342b7b72012-09-27 09:19:34 +00001082
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301083 if (priv->rx_pause)
1084 mac_control |= BIT(3);
1085
1086 if (priv->tx_pause)
1087 mac_control |= BIT(4);
1088
Mugunthan V Ndf828592012-03-18 20:17:54 +00001089 *link = true;
1090 } else {
1091 mac_control = 0;
1092 /* disable forwarding */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001093 cpsw_ale_control_set(cpsw->ale, slave_port,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001094 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
1095 }
1096
1097 if (mac_control != slave->mac_control) {
1098 phy_print_status(phy);
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001099 writel_relaxed(mac_control, &slave->sliver->mac_control);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001100 }
1101
1102 slave->mac_control = mac_control;
1103}
1104
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001105static int cpsw_get_common_speed(struct cpsw_common *cpsw)
1106{
1107 int i, speed;
1108
1109 for (i = 0, speed = 0; i < cpsw->data.slaves; i++)
1110 if (cpsw->slaves[i].phy && cpsw->slaves[i].phy->link)
1111 speed += cpsw->slaves[i].phy->speed;
1112
1113 return speed;
1114}
1115
1116static int cpsw_need_resplit(struct cpsw_common *cpsw)
1117{
1118 int i, rlim_ch_num;
1119 int speed, ch_rate;
1120
1121 /* re-split resources only in case speed was changed */
1122 speed = cpsw_get_common_speed(cpsw);
1123 if (speed == cpsw->speed || !speed)
1124 return 0;
1125
1126 cpsw->speed = speed;
1127
1128 for (i = 0, rlim_ch_num = 0; i < cpsw->tx_ch_num; i++) {
1129 ch_rate = cpdma_chan_get_rate(cpsw->txv[i].ch);
1130 if (!ch_rate)
1131 break;
1132
1133 rlim_ch_num++;
1134 }
1135
1136 /* cases not dependent on speed */
1137 if (!rlim_ch_num || rlim_ch_num == cpsw->tx_ch_num)
1138 return 0;
1139
1140 return 1;
1141}
1142
Mugunthan V Ndf828592012-03-18 20:17:54 +00001143static void cpsw_adjust_link(struct net_device *ndev)
1144{
1145 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001146 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001147 bool link = false;
1148
1149 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
1150
1151 if (link) {
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001152 if (cpsw_need_resplit(cpsw))
1153 cpsw_split_res(ndev);
1154
Mugunthan V Ndf828592012-03-18 20:17:54 +00001155 netif_carrier_on(ndev);
1156 if (netif_running(ndev))
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001157 netif_tx_wake_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001158 } else {
1159 netif_carrier_off(ndev);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001160 netif_tx_stop_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001161 }
1162}
1163
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001164static int cpsw_get_coalesce(struct net_device *ndev,
1165 struct ethtool_coalesce *coal)
1166{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001167 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001168
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001169 coal->rx_coalesce_usecs = cpsw->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001170 return 0;
1171}
1172
1173static int cpsw_set_coalesce(struct net_device *ndev,
1174 struct ethtool_coalesce *coal)
1175{
1176 struct cpsw_priv *priv = netdev_priv(ndev);
1177 u32 int_ctrl;
1178 u32 num_interrupts = 0;
1179 u32 prescale = 0;
1180 u32 addnl_dvdr = 1;
1181 u32 coal_intvl = 0;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001182 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001183
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001184 coal_intvl = coal->rx_coalesce_usecs;
1185
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001186 int_ctrl = readl(&cpsw->wr_regs->int_control);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001187 prescale = cpsw->bus_freq_mhz * 4;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001188
Mugunthan V Na84bc2a2014-07-15 20:26:53 +05301189 if (!coal->rx_coalesce_usecs) {
1190 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
1191 goto update_return;
1192 }
1193
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001194 if (coal_intvl < CPSW_CMINTMIN_INTVL)
1195 coal_intvl = CPSW_CMINTMIN_INTVL;
1196
1197 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
1198 /* Interrupt pacer works with 4us Pulse, we can
1199 * throttle further by dilating the 4us pulse.
1200 */
1201 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
1202
1203 if (addnl_dvdr > 1) {
1204 prescale *= addnl_dvdr;
1205 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
1206 coal_intvl = (CPSW_CMINTMAX_INTVL
1207 * addnl_dvdr);
1208 } else {
1209 addnl_dvdr = 1;
1210 coal_intvl = CPSW_CMINTMAX_INTVL;
1211 }
1212 }
1213
1214 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001215 writel(num_interrupts, &cpsw->wr_regs->rx_imax);
1216 writel(num_interrupts, &cpsw->wr_regs->tx_imax);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001217
1218 int_ctrl |= CPSW_INTPACEEN;
1219 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
1220 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
Mugunthan V Na84bc2a2014-07-15 20:26:53 +05301221
1222update_return:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001223 writel(int_ctrl, &cpsw->wr_regs->int_control);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001224
1225 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001226 cpsw->coal_intvl = coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001227
1228 return 0;
1229}
1230
Mugunthan V Nd9718542013-07-23 15:38:17 +05301231static int cpsw_get_sset_count(struct net_device *ndev, int sset)
1232{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001233 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1234
Mugunthan V Nd9718542013-07-23 15:38:17 +05301235 switch (sset) {
1236 case ETH_SS_STATS:
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001237 return (CPSW_STATS_COMMON_LEN +
1238 (cpsw->rx_ch_num + cpsw->tx_ch_num) *
1239 CPSW_STATS_CH_LEN);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301240 default:
1241 return -EOPNOTSUPP;
1242 }
1243}
1244
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001245static void cpsw_add_ch_strings(u8 **p, int ch_num, int rx_dir)
1246{
1247 int ch_stats_len;
1248 int line;
1249 int i;
1250
1251 ch_stats_len = CPSW_STATS_CH_LEN * ch_num;
1252 for (i = 0; i < ch_stats_len; i++) {
1253 line = i % CPSW_STATS_CH_LEN;
1254 snprintf(*p, ETH_GSTRING_LEN,
1255 "%s DMA chan %d: %s", rx_dir ? "Rx" : "Tx",
1256 i / CPSW_STATS_CH_LEN,
1257 cpsw_gstrings_ch_stats[line].stat_string);
1258 *p += ETH_GSTRING_LEN;
1259 }
1260}
1261
Mugunthan V Nd9718542013-07-23 15:38:17 +05301262static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
1263{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001264 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301265 u8 *p = data;
1266 int i;
1267
1268 switch (stringset) {
1269 case ETH_SS_STATS:
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001270 for (i = 0; i < CPSW_STATS_COMMON_LEN; i++) {
Mugunthan V Nd9718542013-07-23 15:38:17 +05301271 memcpy(p, cpsw_gstrings_stats[i].stat_string,
1272 ETH_GSTRING_LEN);
1273 p += ETH_GSTRING_LEN;
1274 }
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001275
1276 cpsw_add_ch_strings(&p, cpsw->rx_ch_num, 1);
1277 cpsw_add_ch_strings(&p, cpsw->tx_ch_num, 0);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301278 break;
1279 }
1280}
1281
1282static void cpsw_get_ethtool_stats(struct net_device *ndev,
1283 struct ethtool_stats *stats, u64 *data)
1284{
Mugunthan V Nd9718542013-07-23 15:38:17 +05301285 u8 *p;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001286 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001287 struct cpdma_chan_stats ch_stats;
1288 int i, l, ch;
Mugunthan V Nd9718542013-07-23 15:38:17 +05301289
1290 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001291 for (l = 0; l < CPSW_STATS_COMMON_LEN; l++)
1292 data[l] = readl(cpsw->hw_stats +
1293 cpsw_gstrings_stats[l].stat_offset);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301294
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001295 for (ch = 0; ch < cpsw->rx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001296 cpdma_chan_get_stats(cpsw->rxv[ch].ch, &ch_stats);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001297 for (i = 0; i < CPSW_STATS_CH_LEN; i++, l++) {
1298 p = (u8 *)&ch_stats +
1299 cpsw_gstrings_ch_stats[i].stat_offset;
1300 data[l] = *(u32 *)p;
1301 }
1302 }
Mugunthan V Nd9718542013-07-23 15:38:17 +05301303
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001304 for (ch = 0; ch < cpsw->tx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001305 cpdma_chan_get_stats(cpsw->txv[ch].ch, &ch_stats);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001306 for (i = 0; i < CPSW_STATS_CH_LEN; i++, l++) {
1307 p = (u8 *)&ch_stats +
1308 cpsw_gstrings_ch_stats[i].stat_offset;
1309 data[l] = *(u32 *)p;
Mugunthan V Nd9718542013-07-23 15:38:17 +05301310 }
1311 }
1312}
1313
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001314static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv,
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001315 struct sk_buff *skb,
1316 struct cpdma_chan *txch)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001317{
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001318 struct cpsw_common *cpsw = priv->cpsw;
1319
Ivan Khoronzhuk98fdd852017-06-27 16:58:51 +03001320 skb_tx_timestamp(skb);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001321 return cpdma_chan_submit(txch, skb, skb->data, skb->len,
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001322 priv->emac_port + cpsw->data.dual_emac);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001323}
1324
1325static inline void cpsw_add_dual_emac_def_ale_entries(
1326 struct cpsw_priv *priv, struct cpsw_slave *slave,
1327 u32 slave_port)
1328{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001329 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001330 u32 port_mask = 1 << slave_port | ALE_PORT_HOST;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001331
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001332 if (cpsw->version == CPSW_VERSION_1)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001333 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1334 else
1335 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001336 cpsw_ale_add_vlan(cpsw->ale, slave->port_vlan, port_mask,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001337 port_mask, port_mask, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001338 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001339 port_mask, ALE_VLAN, slave->port_vlan, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001340 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
1341 HOST_PORT_NUM, ALE_VLAN |
1342 ALE_SECURE, slave->port_vlan);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001343}
1344
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001345static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001346{
1347 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001348
1349 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1350 soft_reset(name, &slave->sliver->soft_reset);
1351}
1352
1353static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1354{
Mugunthan V Ndf828592012-03-18 20:17:54 +00001355 u32 slave_port;
Sekhar Nori30c57f02017-04-03 17:34:28 +05301356 struct phy_device *phy;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001357 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001358
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001359 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001360
1361 /* setup priority mapping */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001362 writel_relaxed(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001363
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001364 switch (cpsw->version) {
Richard Cochran9750a3a2012-10-29 08:45:15 +00001365 case CPSW_VERSION_1:
1366 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -05001367 /* Increase RX FIFO size to 5 for supporting fullduplex
1368 * flow control mode
1369 */
1370 slave_write(slave,
1371 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
1372 CPSW_MAX_BLKS_RX, CPSW1_MAX_BLKS);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001373 break;
1374 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05301375 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05301376 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +00001377 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -05001378 /* Increase RX FIFO size to 5 for supporting fullduplex
1379 * flow control mode
1380 */
1381 slave_write(slave,
1382 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
1383 CPSW_MAX_BLKS_RX, CPSW2_MAX_BLKS);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001384 break;
1385 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001386
1387 /* setup max packet size, and mac address */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001388 writel_relaxed(cpsw->rx_packet_max, &slave->sliver->rx_maxlen);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001389 cpsw_set_slave_mac(slave, priv);
1390
1391 slave->mac_control = 0; /* no link yet */
1392
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001393 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001394
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001395 if (cpsw->data.dual_emac)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001396 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1397 else
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001398 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001399 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001400
David Rivshind733f7542016-04-27 21:32:31 -04001401 if (slave->data->phy_node) {
Sekhar Nori30c57f02017-04-03 17:34:28 +05301402 phy = of_phy_connect(priv->ndev, slave->data->phy_node,
Heiko Schocher9e42f712015-10-17 06:04:35 +02001403 &cpsw_adjust_link, 0, slave->data->phy_if);
Sekhar Nori30c57f02017-04-03 17:34:28 +05301404 if (!phy) {
Rob Herringf7ce9102017-07-18 16:43:19 -05001405 dev_err(priv->dev, "phy \"%pOF\" not found on slave %d\n",
1406 slave->data->phy_node,
David Rivshind733f7542016-04-27 21:32:31 -04001407 slave->slave_num);
1408 return;
1409 }
1410 } else {
Sekhar Nori30c57f02017-04-03 17:34:28 +05301411 phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001412 &cpsw_adjust_link, slave->data->phy_if);
Sekhar Nori30c57f02017-04-03 17:34:28 +05301413 if (IS_ERR(phy)) {
David Rivshind733f7542016-04-27 21:32:31 -04001414 dev_err(priv->dev,
1415 "phy \"%s\" not found on slave %d, err %ld\n",
1416 slave->data->phy_id, slave->slave_num,
Sekhar Nori30c57f02017-04-03 17:34:28 +05301417 PTR_ERR(phy));
David Rivshind733f7542016-04-27 21:32:31 -04001418 return;
1419 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001420 }
David Rivshind733f7542016-04-27 21:32:31 -04001421
Sekhar Nori30c57f02017-04-03 17:34:28 +05301422 slave->phy = phy;
1423
David Rivshind733f7542016-04-27 21:32:31 -04001424 phy_attached_info(slave->phy);
1425
1426 phy_start(slave->phy);
1427
1428 /* Configure GMII_SEL register */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001429 cpsw_phy_sel(cpsw->dev, slave->phy->interface, slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001430}
1431
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001432static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1433{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001434 struct cpsw_common *cpsw = priv->cpsw;
1435 const int vlan = cpsw->data.default_vlan;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001436 u32 reg;
1437 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001438 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001439
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001440 reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001441 CPSW2_PORT_VLAN;
1442
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001443 writel(vlan, &cpsw->host_port_regs->port_vlan);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001444
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001445 for (i = 0; i < cpsw->data.slaves; i++)
1446 slave_write(cpsw->slaves + i, vlan, reg);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001447
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001448 if (priv->ndev->flags & IFF_ALLMULTI)
1449 unreg_mcast_mask = ALE_ALL_PORTS;
1450 else
1451 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1452
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001453 cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001454 ALE_ALL_PORTS, ALE_ALL_PORTS,
1455 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001456}
1457
Mugunthan V Ndf828592012-03-18 20:17:54 +00001458static void cpsw_init_host_port(struct cpsw_priv *priv)
1459{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001460 u32 fifo_mode;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001461 u32 control_reg;
1462 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001463
Mugunthan V Ndf828592012-03-18 20:17:54 +00001464 /* soft reset the controller and initialize ale */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001465 soft_reset("cpsw", &cpsw->regs->soft_reset);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001466 cpsw_ale_start(cpsw->ale);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001467
1468 /* switch to vlan unaware mode */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001469 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_VLAN_AWARE,
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001470 CPSW_ALE_VLAN_AWARE);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001471 control_reg = readl(&cpsw->regs->control);
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -05001472 control_reg |= CPSW_VLAN_AWARE | CPSW_RX_VLAN_ENCAP;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001473 writel(control_reg, &cpsw->regs->control);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001474 fifo_mode = (cpsw->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001475 CPSW_FIFO_NORMAL_MODE;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001476 writel(fifo_mode, &cpsw->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001477
1478 /* setup host port priority mapping */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001479 writel_relaxed(CPDMA_TX_PRIORITY_MAP,
1480 &cpsw->host_port_regs->cpdma_tx_pri_map);
1481 writel_relaxed(0, &cpsw->host_port_regs->cpdma_rx_chan_map);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001482
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001483 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001484 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1485
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001486 if (!cpsw->data.dual_emac) {
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001487 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001488 0, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001489 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001490 ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001491 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001492}
1493
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001494static int cpsw_fill_rx_channels(struct cpsw_priv *priv)
1495{
1496 struct cpsw_common *cpsw = priv->cpsw;
1497 struct sk_buff *skb;
1498 int ch_buf_num;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001499 int ch, i, ret;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001500
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001501 for (ch = 0; ch < cpsw->rx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001502 ch_buf_num = cpdma_chan_get_rx_buf_num(cpsw->rxv[ch].ch);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001503 for (i = 0; i < ch_buf_num; i++) {
1504 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1505 cpsw->rx_packet_max,
1506 GFP_KERNEL);
1507 if (!skb) {
1508 cpsw_err(priv, ifup, "cannot allocate skb\n");
1509 return -ENOMEM;
1510 }
1511
1512 skb_set_queue_mapping(skb, ch);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001513 ret = cpdma_chan_submit(cpsw->rxv[ch].ch, skb,
1514 skb->data, skb_tailroom(skb),
1515 0);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001516 if (ret < 0) {
1517 cpsw_err(priv, ifup,
1518 "cannot submit skb to channel %d rx, error %d\n",
1519 ch, ret);
1520 kfree_skb(skb);
1521 return ret;
1522 }
1523 kmemleak_not_leak(skb);
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001524 }
1525
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001526 cpsw_info(priv, ifup, "ch %d rx, submitted %d descriptors\n",
1527 ch, ch_buf_num);
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001528 }
1529
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001530 return 0;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001531}
1532
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001533static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_common *cpsw)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001534{
Schuyler Patton3995d262014-03-03 16:19:06 +05301535 u32 slave_port;
1536
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001537 slave_port = cpsw_get_slave_port(slave->slave_num);
Schuyler Patton3995d262014-03-03 16:19:06 +05301538
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001539 if (!slave->phy)
1540 return;
1541 phy_stop(slave->phy);
1542 phy_disconnect(slave->phy);
1543 slave->phy = NULL;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001544 cpsw_ale_control_set(cpsw->ale, slave_port,
Schuyler Patton3995d262014-03-03 16:19:06 +05301545 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Grygorii Strashko1f95ba02016-06-24 21:23:41 +03001546 soft_reset_slave(slave);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001547}
1548
Mugunthan V Ndf828592012-03-18 20:17:54 +00001549static int cpsw_ndo_open(struct net_device *ndev)
1550{
1551 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001552 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001553 int ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001554 u32 reg;
1555
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001556 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001557 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001558 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001559 return ret;
1560 }
Grygorii Strashko3fa88c52016-04-19 21:09:49 +03001561
Mugunthan V Ndf828592012-03-18 20:17:54 +00001562 netif_carrier_off(ndev);
1563
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001564 /* Notify the stack of the actual queue counts. */
1565 ret = netif_set_real_num_tx_queues(ndev, cpsw->tx_ch_num);
1566 if (ret) {
1567 dev_err(priv->dev, "cannot set real number of tx queues\n");
1568 goto err_cleanup;
1569 }
1570
1571 ret = netif_set_real_num_rx_queues(ndev, cpsw->rx_ch_num);
1572 if (ret) {
1573 dev_err(priv->dev, "cannot set real number of rx queues\n");
1574 goto err_cleanup;
1575 }
1576
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001577 reg = cpsw->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001578
1579 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1580 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1581 CPSW_RTL_VERSION(reg));
1582
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001583 /* Initialize host and slave ports */
1584 if (!cpsw->usage_count)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001585 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001586 for_each_slave(priv, cpsw_slave_open, priv);
1587
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001588 /* Add default VLAN */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001589 if (!cpsw->data.dual_emac)
Mugunthan V Ne6afea02014-06-18 17:21:48 +05301590 cpsw_add_default_vlan(priv);
1591 else
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001592 cpsw_ale_add_vlan(cpsw->ale, cpsw->data.default_vlan,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001593 ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001594
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001595 /* initialize shared resources for every ndev */
1596 if (!cpsw->usage_count) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001597 /* disable priority elevation */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001598 writel_relaxed(0, &cpsw->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001599
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001600 /* enable statistics collection only on all ports */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001601 writel_relaxed(0x7, &cpsw->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001602
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301603 /* Enable internal fifo flow control */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001604 writel(0x7, &cpsw->regs->flow_control);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301605
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001606 napi_enable(&cpsw->napi_rx);
1607 napi_enable(&cpsw->napi_tx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301608
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001609 if (cpsw->tx_irq_disabled) {
1610 cpsw->tx_irq_disabled = false;
1611 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301612 }
1613
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001614 if (cpsw->rx_irq_disabled) {
1615 cpsw->rx_irq_disabled = false;
1616 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301617 }
1618
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001619 ret = cpsw_fill_rx_channels(priv);
1620 if (ret < 0)
1621 goto err_cleanup;
Mugunthan V Nf280e892013-12-11 22:09:05 -06001622
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06001623 if (cpts_register(cpsw->cpts))
Mugunthan V Nf280e892013-12-11 22:09:05 -06001624 dev_err(priv->dev, "error registering cpts device\n");
1625
Mugunthan V Ndf828592012-03-18 20:17:54 +00001626 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001627
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001628 /* Enable Interrupt pacing if configured */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001629 if (cpsw->coal_intvl != 0) {
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001630 struct ethtool_coalesce coal;
1631
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001632 coal.rx_coalesce_usecs = cpsw->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001633 cpsw_set_coalesce(ndev, &coal);
1634 }
1635
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001636 cpdma_ctlr_start(cpsw->dma);
1637 cpsw_intr_enable(cpsw);
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001638 cpsw->usage_count++;
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301639
Mugunthan V Ndf828592012-03-18 20:17:54 +00001640 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001641
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001642err_cleanup:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001643 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001644 for_each_slave(priv, cpsw_slave_stop, cpsw);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001645 pm_runtime_put_sync(cpsw->dev);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001646 netif_carrier_off(priv->ndev);
1647 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001648}
1649
1650static int cpsw_ndo_stop(struct net_device *ndev)
1651{
1652 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001653 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001654
1655 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001656 netif_tx_stop_all_queues(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001657 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001658
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001659 if (cpsw->usage_count <= 1) {
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001660 napi_disable(&cpsw->napi_rx);
1661 napi_disable(&cpsw->napi_tx);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001662 cpts_unregister(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001663 cpsw_intr_disable(cpsw);
1664 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001665 cpsw_ale_stop(cpsw->ale);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001666 }
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001667 for_each_slave(priv, cpsw_slave_stop, cpsw);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001668
1669 if (cpsw_need_resplit(cpsw))
1670 cpsw_split_res(ndev);
1671
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001672 cpsw->usage_count--;
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001673 pm_runtime_put_sync(cpsw->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001674 return 0;
1675}
1676
1677static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1678 struct net_device *ndev)
1679{
1680 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001681 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhukf44f8412017-06-27 16:58:52 +03001682 struct cpts *cpts = cpsw->cpts;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001683 struct netdev_queue *txq;
1684 struct cpdma_chan *txch;
1685 int ret, q_idx;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001686
Mugunthan V Ndf828592012-03-18 20:17:54 +00001687 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1688 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001689 ndev->stats.tx_dropped++;
Ivan Khoronzhuk1bf96052017-02-11 03:49:57 +02001690 return NET_XMIT_DROP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001691 }
1692
Mugunthan V N9232b162013-02-11 09:52:19 +00001693 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
Ivan Khoronzhukf44f8412017-06-27 16:58:52 +03001694 cpts_is_tx_enabled(cpts) && cpts_can_timestamp(cpts, skb))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001695 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1696
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001697 q_idx = skb_get_queue_mapping(skb);
1698 if (q_idx >= cpsw->tx_ch_num)
1699 q_idx = q_idx % cpsw->tx_ch_num;
1700
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001701 txch = cpsw->txv[q_idx].ch;
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001702 txq = netdev_get_tx_queue(ndev, q_idx);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001703 ret = cpsw_tx_packet_submit(priv, skb, txch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001704 if (unlikely(ret != 0)) {
1705 cpsw_err(priv, tx_err, "desc submit failed\n");
1706 goto fail;
1707 }
1708
Mugunthan V Nfae50822013-01-17 06:31:34 +00001709 /* If there is no more tx desc left free then we need to
1710 * tell the kernel to stop sending us tx frames.
1711 */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001712 if (unlikely(!cpdma_check_free_tx_desc(txch))) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001713 netif_tx_stop_queue(txq);
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001714
1715 /* Barrier, so that stop_queue visible to other cpus */
1716 smp_mb__after_atomic();
1717
1718 if (cpdma_check_free_tx_desc(txch))
1719 netif_tx_wake_queue(txq);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001720 }
Mugunthan V Nfae50822013-01-17 06:31:34 +00001721
Mugunthan V Ndf828592012-03-18 20:17:54 +00001722 return NETDEV_TX_OK;
1723fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001724 ndev->stats.tx_dropped++;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001725 netif_tx_stop_queue(txq);
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001726
1727 /* Barrier, so that stop_queue visible to other cpus */
1728 smp_mb__after_atomic();
1729
1730 if (cpdma_check_free_tx_desc(txch))
1731 netif_tx_wake_queue(txq);
1732
Mugunthan V Ndf828592012-03-18 20:17:54 +00001733 return NETDEV_TX_BUSY;
1734}
1735
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001736#if IS_ENABLED(CONFIG_TI_CPTS)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001737
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001738static void cpsw_hwtstamp_v1(struct cpsw_common *cpsw)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001739{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001740 struct cpsw_slave *slave = &cpsw->slaves[cpsw->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001741 u32 ts_en, seq_id;
1742
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001743 if (!cpts_is_tx_enabled(cpsw->cpts) &&
1744 !cpts_is_rx_enabled(cpsw->cpts)) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001745 slave_write(slave, 0, CPSW1_TS_CTL);
1746 return;
1747 }
1748
1749 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1750 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1751
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001752 if (cpts_is_tx_enabled(cpsw->cpts))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001753 ts_en |= CPSW_V1_TS_TX_EN;
1754
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001755 if (cpts_is_rx_enabled(cpsw->cpts))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001756 ts_en |= CPSW_V1_TS_RX_EN;
1757
1758 slave_write(slave, ts_en, CPSW1_TS_CTL);
1759 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1760}
1761
1762static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1763{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001764 struct cpsw_slave *slave;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001765 struct cpsw_common *cpsw = priv->cpsw;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001766 u32 ctrl, mtype;
1767
Ivan Khoronzhukcb7d78d02016-12-10 14:23:46 +02001768 slave = &cpsw->slaves[cpsw_slave_index(cpsw, priv)];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001769
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001770 ctrl = slave_read(slave, CPSW2_CONTROL);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001771 switch (cpsw->version) {
George Cherian09c55372014-05-02 12:02:02 +05301772 case CPSW_VERSION_2:
1773 ctrl &= ~CTRL_V2_ALL_TS_MASK;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001774
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001775 if (cpts_is_tx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301776 ctrl |= CTRL_V2_TX_TS_BITS;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001777
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001778 if (cpts_is_rx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301779 ctrl |= CTRL_V2_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001780 break;
George Cherian09c55372014-05-02 12:02:02 +05301781 case CPSW_VERSION_3:
1782 default:
1783 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1784
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001785 if (cpts_is_tx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301786 ctrl |= CTRL_V3_TX_TS_BITS;
1787
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001788 if (cpts_is_rx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301789 ctrl |= CTRL_V3_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001790 break;
George Cherian09c55372014-05-02 12:02:02 +05301791 }
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001792
1793 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1794
1795 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1796 slave_write(slave, ctrl, CPSW2_CONTROL);
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001797 writel_relaxed(ETH_P_1588, &cpsw->regs->ts_ltype);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001798}
1799
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001800static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001801{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001802 struct cpsw_priv *priv = netdev_priv(dev);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001803 struct hwtstamp_config cfg;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001804 struct cpsw_common *cpsw = priv->cpsw;
1805 struct cpts *cpts = cpsw->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001806
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001807 if (cpsw->version != CPSW_VERSION_1 &&
1808 cpsw->version != CPSW_VERSION_2 &&
1809 cpsw->version != CPSW_VERSION_3)
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001810 return -EOPNOTSUPP;
1811
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001812 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1813 return -EFAULT;
1814
1815 /* reserved for future extensions */
1816 if (cfg.flags)
1817 return -EINVAL;
1818
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001819 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001820 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001821
1822 switch (cfg.rx_filter) {
1823 case HWTSTAMP_FILTER_NONE:
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001824 cpts_rx_enable(cpts, 0);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001825 break;
1826 case HWTSTAMP_FILTER_ALL:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001827 case HWTSTAMP_FILTER_NTP_ALL:
1828 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001829 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1830 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1831 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001832 cpts_rx_enable(cpts, HWTSTAMP_FILTER_PTP_V1_L4_EVENT);
1833 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
1834 break;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001835 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1836 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1837 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1838 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1839 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1840 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1841 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1842 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1843 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001844 cpts_rx_enable(cpts, HWTSTAMP_FILTER_PTP_V2_EVENT);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001845 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1846 break;
1847 default:
1848 return -ERANGE;
1849 }
1850
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001851 cpts_tx_enable(cpts, cfg.tx_type == HWTSTAMP_TX_ON);
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001852
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001853 switch (cpsw->version) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001854 case CPSW_VERSION_1:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001855 cpsw_hwtstamp_v1(cpsw);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001856 break;
1857 case CPSW_VERSION_2:
George Cherianf7d403c2014-05-02 12:02:01 +05301858 case CPSW_VERSION_3:
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001859 cpsw_hwtstamp_v2(priv);
1860 break;
1861 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001862 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001863 }
1864
1865 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1866}
1867
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001868static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1869{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001870 struct cpsw_common *cpsw = ndev_to_cpsw(dev);
1871 struct cpts *cpts = cpsw->cpts;
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001872 struct hwtstamp_config cfg;
1873
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001874 if (cpsw->version != CPSW_VERSION_1 &&
1875 cpsw->version != CPSW_VERSION_2 &&
1876 cpsw->version != CPSW_VERSION_3)
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001877 return -EOPNOTSUPP;
1878
1879 cfg.flags = 0;
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001880 cfg.tx_type = cpts_is_tx_enabled(cpts) ?
1881 HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1882 cfg.rx_filter = (cpts_is_rx_enabled(cpts) ?
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001883 cpts->rx_enable : HWTSTAMP_FILTER_NONE);
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001884
1885 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1886}
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001887#else
1888static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1889{
1890 return -EOPNOTSUPP;
1891}
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001892
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001893static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
1894{
1895 return -EOPNOTSUPP;
1896}
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001897#endif /*CONFIG_TI_CPTS*/
1898
1899static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1900{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001901 struct cpsw_priv *priv = netdev_priv(dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001902 struct cpsw_common *cpsw = priv->cpsw;
1903 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001904
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001905 if (!netif_running(dev))
1906 return -EINVAL;
1907
Mugunthan V N11f2c982013-03-11 23:16:38 +00001908 switch (cmd) {
Mugunthan V N11f2c982013-03-11 23:16:38 +00001909 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001910 return cpsw_hwtstamp_set(dev, req);
1911 case SIOCGHWTSTAMP:
1912 return cpsw_hwtstamp_get(dev, req);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001913 }
1914
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001915 if (!cpsw->slaves[slave_no].phy)
Stefan Sørensenc1b59942014-02-16 14:54:25 +01001916 return -EOPNOTSUPP;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001917 return phy_mii_ioctl(cpsw->slaves[slave_no].phy, req, cmd);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001918}
1919
Mugunthan V Ndf828592012-03-18 20:17:54 +00001920static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1921{
1922 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001923 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001924 int ch;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001925
1926 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001927 ndev->stats.tx_errors++;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001928 cpsw_intr_disable(cpsw);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001929 for (ch = 0; ch < cpsw->tx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001930 cpdma_chan_stop(cpsw->txv[ch].ch);
1931 cpdma_chan_start(cpsw->txv[ch].ch);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001932 }
1933
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001934 cpsw_intr_enable(cpsw);
Grygorii Strashko75514b62017-03-31 18:41:23 -05001935 netif_trans_update(ndev);
1936 netif_tx_wake_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001937}
1938
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301939static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1940{
1941 struct cpsw_priv *priv = netdev_priv(ndev);
1942 struct sockaddr *addr = (struct sockaddr *)p;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001943 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301944 int flags = 0;
1945 u16 vid = 0;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001946 int ret;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301947
1948 if (!is_valid_ether_addr(addr->sa_data))
1949 return -EADDRNOTAVAIL;
1950
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001951 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001952 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001953 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001954 return ret;
1955 }
1956
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001957 if (cpsw->data.dual_emac) {
1958 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301959 flags = ALE_VLAN;
1960 }
1961
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001962 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301963 flags, vid);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001964 cpsw_ale_add_ucast(cpsw->ale, addr->sa_data, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301965 flags, vid);
1966
1967 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1968 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1969 for_each_slave(priv, cpsw_set_slave_mac, priv);
1970
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001971 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001972
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301973 return 0;
1974}
1975
Mugunthan V Ndf828592012-03-18 20:17:54 +00001976#ifdef CONFIG_NET_POLL_CONTROLLER
1977static void cpsw_ndo_poll_controller(struct net_device *ndev)
1978{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001979 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001980
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001981 cpsw_intr_disable(cpsw);
1982 cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw);
1983 cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw);
1984 cpsw_intr_enable(cpsw);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001985}
1986#endif
1987
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001988static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1989 unsigned short vid)
1990{
1991 int ret;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301992 int unreg_mcast_mask = 0;
1993 u32 port_mask;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001994 struct cpsw_common *cpsw = priv->cpsw;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001995
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001996 if (cpsw->data.dual_emac) {
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301997 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001998
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301999 if (priv->ndev->flags & IFF_ALLMULTI)
2000 unreg_mcast_mask = port_mask;
2001 } else {
2002 port_mask = ALE_ALL_PORTS;
2003
2004 if (priv->ndev->flags & IFF_ALLMULTI)
2005 unreg_mcast_mask = ALE_ALL_PORTS;
2006 else
2007 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
2008 }
2009
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002010 ret = cpsw_ale_add_vlan(cpsw->ale, vid, port_mask, 0, port_mask,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03002011 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002012 if (ret != 0)
2013 return ret;
2014
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002015 ret = cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03002016 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002017 if (ret != 0)
2018 goto clean_vid;
2019
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002020 ret = cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05302021 port_mask, ALE_VLAN, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002022 if (ret != 0)
2023 goto clean_vlan_ucast;
2024 return 0;
2025
2026clean_vlan_ucast:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002027 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03002028 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002029clean_vid:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002030 cpsw_ale_del_vlan(cpsw->ale, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002031 return ret;
2032}
2033
2034static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00002035 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002036{
2037 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002038 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002039 int ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002040
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002041 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002042 return 0;
2043
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002044 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002045 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002046 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002047 return ret;
2048 }
2049
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002050 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05302051 /* In dual EMAC, reserved VLAN id should not be used for
2052 * creating VLAN interfaces as this can break the dual
2053 * EMAC port separation
2054 */
2055 int i;
2056
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002057 for (i = 0; i < cpsw->data.slaves; i++) {
2058 if (vid == cpsw->slaves[i].port_vlan)
Mugunthan V N02a54162015-01-22 15:19:22 +05302059 return -EINVAL;
2060 }
2061 }
2062
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002063 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002064 ret = cpsw_add_vlan_ale_entry(priv, vid);
2065
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002066 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002067 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002068}
2069
2070static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00002071 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002072{
2073 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002074 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002075 int ret;
2076
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002077 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002078 return 0;
2079
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002080 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002081 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002082 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002083 return ret;
2084 }
2085
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002086 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05302087 int i;
2088
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002089 for (i = 0; i < cpsw->data.slaves; i++) {
2090 if (vid == cpsw->slaves[i].port_vlan)
Mugunthan V N02a54162015-01-22 15:19:22 +05302091 return -EINVAL;
2092 }
2093 }
2094
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002095 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002096 ret = cpsw_ale_del_vlan(cpsw->ale, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002097 if (ret != 0)
2098 return ret;
2099
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002100 ret = cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03002101 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002102 if (ret != 0)
2103 return ret;
2104
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002105 ret = cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast,
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002106 0, ALE_VLAN, vid);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002107 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002108 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002109}
2110
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002111static int cpsw_ndo_set_tx_maxrate(struct net_device *ndev, int queue, u32 rate)
2112{
2113 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002114 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002115 struct cpsw_slave *slave;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002116 u32 min_rate;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002117 u32 ch_rate;
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002118 int i, ret;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002119
2120 ch_rate = netdev_get_tx_queue(ndev, queue)->tx_maxrate;
2121 if (ch_rate == rate)
2122 return 0;
2123
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002124 ch_rate = rate * 1000;
2125 min_rate = cpdma_chan_get_min_rate(cpsw->dma);
2126 if ((ch_rate < min_rate && ch_rate)) {
2127 dev_err(priv->dev, "The channel rate cannot be less than %dMbps",
2128 min_rate);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002129 return -EINVAL;
2130 }
2131
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02002132 if (rate > cpsw->speed) {
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002133 dev_err(priv->dev, "The channel rate cannot be more than 2Gbps");
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002134 return -EINVAL;
2135 }
2136
2137 ret = pm_runtime_get_sync(cpsw->dev);
2138 if (ret < 0) {
2139 pm_runtime_put_noidle(cpsw->dev);
2140 return ret;
2141 }
2142
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002143 ret = cpdma_chan_set_rate(cpsw->txv[queue].ch, ch_rate);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002144 pm_runtime_put(cpsw->dev);
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002145
2146 if (ret)
2147 return ret;
2148
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002149 /* update rates for slaves tx queues */
2150 for (i = 0; i < cpsw->data.slaves; i++) {
2151 slave = &cpsw->slaves[i];
2152 if (!slave->ndev)
2153 continue;
2154
2155 netdev_get_tx_queue(slave->ndev, queue)->tx_maxrate = rate;
2156 }
2157
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002158 cpsw_split_res(ndev);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002159 return ret;
2160}
2161
Mugunthan V Ndf828592012-03-18 20:17:54 +00002162static const struct net_device_ops cpsw_netdev_ops = {
2163 .ndo_open = cpsw_ndo_open,
2164 .ndo_stop = cpsw_ndo_stop,
2165 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05302166 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002167 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002168 .ndo_validate_addr = eth_validate_addr,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002169 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00002170 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002171 .ndo_set_tx_maxrate = cpsw_ndo_set_tx_maxrate,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002172#ifdef CONFIG_NET_POLL_CONTROLLER
2173 .ndo_poll_controller = cpsw_ndo_poll_controller,
2174#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002175 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
2176 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002177};
2178
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302179static int cpsw_get_regs_len(struct net_device *ndev)
2180{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002181 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302182
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002183 return cpsw->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302184}
2185
2186static void cpsw_get_regs(struct net_device *ndev,
2187 struct ethtool_regs *regs, void *p)
2188{
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302189 u32 *reg = p;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002190 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302191
2192 /* update CPSW IP version */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002193 regs->version = cpsw->version;
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302194
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002195 cpsw_ale_dump(cpsw->ale, reg);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302196}
2197
Mugunthan V Ndf828592012-03-18 20:17:54 +00002198static void cpsw_get_drvinfo(struct net_device *ndev,
2199 struct ethtool_drvinfo *info)
2200{
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002201 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002202 struct platform_device *pdev = to_platform_device(cpsw->dev);
Jiri Pirko7826d432013-01-06 00:44:26 +00002203
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302204 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00002205 strlcpy(info->version, "1.0", sizeof(info->version));
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002206 strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00002207}
2208
2209static u32 cpsw_get_msglevel(struct net_device *ndev)
2210{
2211 struct cpsw_priv *priv = netdev_priv(ndev);
2212 return priv->msg_enable;
2213}
2214
2215static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
2216{
2217 struct cpsw_priv *priv = netdev_priv(ndev);
2218 priv->msg_enable = value;
2219}
2220
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002221#if IS_ENABLED(CONFIG_TI_CPTS)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002222static int cpsw_get_ts_info(struct net_device *ndev,
2223 struct ethtool_ts_info *info)
2224{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002225 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002226
2227 info->so_timestamping =
2228 SOF_TIMESTAMPING_TX_HARDWARE |
2229 SOF_TIMESTAMPING_TX_SOFTWARE |
2230 SOF_TIMESTAMPING_RX_HARDWARE |
2231 SOF_TIMESTAMPING_RX_SOFTWARE |
2232 SOF_TIMESTAMPING_SOFTWARE |
2233 SOF_TIMESTAMPING_RAW_HARDWARE;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002234 info->phc_index = cpsw->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002235 info->tx_types =
2236 (1 << HWTSTAMP_TX_OFF) |
2237 (1 << HWTSTAMP_TX_ON);
2238 info->rx_filters =
2239 (1 << HWTSTAMP_FILTER_NONE) |
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05002240 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002241 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002242 return 0;
2243}
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002244#else
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002245static int cpsw_get_ts_info(struct net_device *ndev,
2246 struct ethtool_ts_info *info)
2247{
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002248 info->so_timestamping =
2249 SOF_TIMESTAMPING_TX_SOFTWARE |
2250 SOF_TIMESTAMPING_RX_SOFTWARE |
2251 SOF_TIMESTAMPING_SOFTWARE;
2252 info->phc_index = -1;
2253 info->tx_types = 0;
2254 info->rx_filters = 0;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002255 return 0;
2256}
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002257#endif
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002258
Philippe Reynes24798762016-10-08 17:46:15 +02002259static int cpsw_get_link_ksettings(struct net_device *ndev,
2260 struct ethtool_link_ksettings *ecmd)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002261{
2262 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002263 struct cpsw_common *cpsw = priv->cpsw;
2264 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002265
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03002266 if (!cpsw->slaves[slave_no].phy)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002267 return -EOPNOTSUPP;
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03002268
2269 phy_ethtool_ksettings_get(cpsw->slaves[slave_no].phy, ecmd);
2270 return 0;
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002271}
2272
Philippe Reynes24798762016-10-08 17:46:15 +02002273static int cpsw_set_link_ksettings(struct net_device *ndev,
2274 const struct ethtool_link_ksettings *ecmd)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002275{
2276 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002277 struct cpsw_common *cpsw = priv->cpsw;
2278 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002279
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002280 if (cpsw->slaves[slave_no].phy)
Philippe Reynes24798762016-10-08 17:46:15 +02002281 return phy_ethtool_ksettings_set(cpsw->slaves[slave_no].phy,
2282 ecmd);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002283 else
2284 return -EOPNOTSUPP;
2285}
2286
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002287static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2288{
2289 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002290 struct cpsw_common *cpsw = priv->cpsw;
2291 int slave_no = cpsw_slave_index(cpsw, priv);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002292
2293 wol->supported = 0;
2294 wol->wolopts = 0;
2295
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002296 if (cpsw->slaves[slave_no].phy)
2297 phy_ethtool_get_wol(cpsw->slaves[slave_no].phy, wol);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002298}
2299
2300static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2301{
2302 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002303 struct cpsw_common *cpsw = priv->cpsw;
2304 int slave_no = cpsw_slave_index(cpsw, priv);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002305
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002306 if (cpsw->slaves[slave_no].phy)
2307 return phy_ethtool_set_wol(cpsw->slaves[slave_no].phy, wol);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002308 else
2309 return -EOPNOTSUPP;
2310}
2311
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302312static void cpsw_get_pauseparam(struct net_device *ndev,
2313 struct ethtool_pauseparam *pause)
2314{
2315 struct cpsw_priv *priv = netdev_priv(ndev);
2316
2317 pause->autoneg = AUTONEG_DISABLE;
2318 pause->rx_pause = priv->rx_pause ? true : false;
2319 pause->tx_pause = priv->tx_pause ? true : false;
2320}
2321
2322static int cpsw_set_pauseparam(struct net_device *ndev,
2323 struct ethtool_pauseparam *pause)
2324{
2325 struct cpsw_priv *priv = netdev_priv(ndev);
2326 bool link;
2327
2328 priv->rx_pause = pause->rx_pause ? true : false;
2329 priv->tx_pause = pause->tx_pause ? true : false;
2330
2331 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302332 return 0;
2333}
2334
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002335static int cpsw_ethtool_op_begin(struct net_device *ndev)
2336{
2337 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002338 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002339 int ret;
2340
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002341 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002342 if (ret < 0) {
2343 cpsw_err(priv, drv, "ethtool begin failed %d\n", ret);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002344 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002345 }
2346
2347 return ret;
2348}
2349
2350static void cpsw_ethtool_op_complete(struct net_device *ndev)
2351{
2352 struct cpsw_priv *priv = netdev_priv(ndev);
2353 int ret;
2354
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002355 ret = pm_runtime_put(priv->cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002356 if (ret < 0)
2357 cpsw_err(priv, drv, "ethtool complete failed %d\n", ret);
2358}
2359
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002360static void cpsw_get_channels(struct net_device *ndev,
2361 struct ethtool_channels *ch)
2362{
2363 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
2364
2365 ch->max_combined = 0;
2366 ch->max_rx = CPSW_MAX_QUEUES;
2367 ch->max_tx = CPSW_MAX_QUEUES;
2368 ch->max_other = 0;
2369 ch->other_count = 0;
2370 ch->rx_count = cpsw->rx_ch_num;
2371 ch->tx_count = cpsw->tx_ch_num;
2372 ch->combined_count = 0;
2373}
2374
2375static int cpsw_check_ch_settings(struct cpsw_common *cpsw,
2376 struct ethtool_channels *ch)
2377{
2378 if (ch->combined_count)
2379 return -EINVAL;
2380
2381 /* verify we have at least one channel in each direction */
2382 if (!ch->rx_count || !ch->tx_count)
2383 return -EINVAL;
2384
2385 if (ch->rx_count > cpsw->data.channels ||
2386 ch->tx_count > cpsw->data.channels)
2387 return -EINVAL;
2388
2389 return 0;
2390}
2391
2392static int cpsw_update_channels_res(struct cpsw_priv *priv, int ch_num, int rx)
2393{
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002394 struct cpsw_common *cpsw = priv->cpsw;
2395 void (*handler)(void *, int, int);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002396 struct netdev_queue *queue;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002397 struct cpsw_vector *vec;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002398 int ret, *ch;
2399
2400 if (rx) {
2401 ch = &cpsw->rx_ch_num;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002402 vec = cpsw->rxv;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002403 handler = cpsw_rx_handler;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002404 } else {
2405 ch = &cpsw->tx_ch_num;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002406 vec = cpsw->txv;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002407 handler = cpsw_tx_handler;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002408 }
2409
2410 while (*ch < ch_num) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002411 vec[*ch].ch = cpdma_chan_create(cpsw->dma, *ch, handler, rx);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002412 queue = netdev_get_tx_queue(priv->ndev, *ch);
2413 queue->tx_maxrate = 0;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002414
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002415 if (IS_ERR(vec[*ch].ch))
2416 return PTR_ERR(vec[*ch].ch);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002417
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002418 if (!vec[*ch].ch)
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002419 return -EINVAL;
2420
2421 cpsw_info(priv, ifup, "created new %d %s channel\n", *ch,
2422 (rx ? "rx" : "tx"));
2423 (*ch)++;
2424 }
2425
2426 while (*ch > ch_num) {
2427 (*ch)--;
2428
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002429 ret = cpdma_chan_destroy(vec[*ch].ch);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002430 if (ret)
2431 return ret;
2432
2433 cpsw_info(priv, ifup, "destroyed %d %s channel\n", *ch,
2434 (rx ? "rx" : "tx"));
2435 }
2436
2437 return 0;
2438}
2439
2440static int cpsw_update_channels(struct cpsw_priv *priv,
2441 struct ethtool_channels *ch)
2442{
2443 int ret;
2444
2445 ret = cpsw_update_channels_res(priv, ch->rx_count, 1);
2446 if (ret)
2447 return ret;
2448
2449 ret = cpsw_update_channels_res(priv, ch->tx_count, 0);
2450 if (ret)
2451 return ret;
2452
2453 return 0;
2454}
2455
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002456static void cpsw_suspend_data_pass(struct net_device *ndev)
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002457{
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002458 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002459 struct cpsw_slave *slave;
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002460 int i;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002461
2462 /* Disable NAPI scheduling */
2463 cpsw_intr_disable(cpsw);
2464
2465 /* Stop all transmit queues for every network device.
2466 * Disable re-using rx descriptors with dormant_on.
2467 */
2468 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) {
2469 if (!(slave->ndev && netif_running(slave->ndev)))
2470 continue;
2471
2472 netif_tx_stop_all_queues(slave->ndev);
2473 netif_dormant_on(slave->ndev);
2474 }
2475
2476 /* Handle rest of tx packets and stop cpdma channels */
2477 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002478}
2479
2480static int cpsw_resume_data_pass(struct net_device *ndev)
2481{
2482 struct cpsw_priv *priv = netdev_priv(ndev);
2483 struct cpsw_common *cpsw = priv->cpsw;
2484 struct cpsw_slave *slave;
2485 int i, ret;
2486
2487 /* Allow rx packets handling */
2488 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++)
2489 if (slave->ndev && netif_running(slave->ndev))
2490 netif_dormant_off(slave->ndev);
2491
2492 /* After this receive is started */
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002493 if (cpsw->usage_count) {
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002494 ret = cpsw_fill_rx_channels(priv);
2495 if (ret)
2496 return ret;
2497
2498 cpdma_ctlr_start(cpsw->dma);
2499 cpsw_intr_enable(cpsw);
2500 }
2501
2502 /* Resume transmit for every affected interface */
2503 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++)
2504 if (slave->ndev && netif_running(slave->ndev))
2505 netif_tx_start_all_queues(slave->ndev);
2506
2507 return 0;
2508}
2509
2510static int cpsw_set_channels(struct net_device *ndev,
2511 struct ethtool_channels *chs)
2512{
2513 struct cpsw_priv *priv = netdev_priv(ndev);
2514 struct cpsw_common *cpsw = priv->cpsw;
2515 struct cpsw_slave *slave;
2516 int i, ret;
2517
2518 ret = cpsw_check_ch_settings(cpsw, chs);
2519 if (ret < 0)
2520 return ret;
2521
2522 cpsw_suspend_data_pass(ndev);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002523 ret = cpsw_update_channels(priv, chs);
2524 if (ret)
2525 goto err;
2526
2527 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) {
2528 if (!(slave->ndev && netif_running(slave->ndev)))
2529 continue;
2530
2531 /* Inform stack about new count of queues */
2532 ret = netif_set_real_num_tx_queues(slave->ndev,
2533 cpsw->tx_ch_num);
2534 if (ret) {
2535 dev_err(priv->dev, "cannot set real number of tx queues\n");
2536 goto err;
2537 }
2538
2539 ret = netif_set_real_num_rx_queues(slave->ndev,
2540 cpsw->rx_ch_num);
2541 if (ret) {
2542 dev_err(priv->dev, "cannot set real number of rx queues\n");
2543 goto err;
2544 }
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002545 }
2546
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002547 if (cpsw->usage_count)
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002548 cpsw_split_res(ndev);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002549
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002550 ret = cpsw_resume_data_pass(ndev);
2551 if (!ret)
2552 return 0;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002553err:
2554 dev_err(priv->dev, "cannot update channels number, closing device\n");
2555 dev_close(ndev);
2556 return ret;
2557}
2558
Yegor Yefremova0909942016-11-28 09:41:33 +01002559static int cpsw_get_eee(struct net_device *ndev, struct ethtool_eee *edata)
2560{
2561 struct cpsw_priv *priv = netdev_priv(ndev);
2562 struct cpsw_common *cpsw = priv->cpsw;
2563 int slave_no = cpsw_slave_index(cpsw, priv);
2564
2565 if (cpsw->slaves[slave_no].phy)
2566 return phy_ethtool_get_eee(cpsw->slaves[slave_no].phy, edata);
2567 else
2568 return -EOPNOTSUPP;
2569}
2570
2571static int cpsw_set_eee(struct net_device *ndev, struct ethtool_eee *edata)
2572{
2573 struct cpsw_priv *priv = netdev_priv(ndev);
2574 struct cpsw_common *cpsw = priv->cpsw;
2575 int slave_no = cpsw_slave_index(cpsw, priv);
2576
2577 if (cpsw->slaves[slave_no].phy)
2578 return phy_ethtool_set_eee(cpsw->slaves[slave_no].phy, edata);
2579 else
2580 return -EOPNOTSUPP;
2581}
2582
Yegor Yefremov6bb10c22016-11-28 10:47:52 +01002583static int cpsw_nway_reset(struct net_device *ndev)
2584{
2585 struct cpsw_priv *priv = netdev_priv(ndev);
2586 struct cpsw_common *cpsw = priv->cpsw;
2587 int slave_no = cpsw_slave_index(cpsw, priv);
2588
2589 if (cpsw->slaves[slave_no].phy)
2590 return genphy_restart_aneg(cpsw->slaves[slave_no].phy);
2591 else
2592 return -EOPNOTSUPP;
2593}
2594
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002595static void cpsw_get_ringparam(struct net_device *ndev,
2596 struct ethtool_ringparam *ering)
2597{
2598 struct cpsw_priv *priv = netdev_priv(ndev);
2599 struct cpsw_common *cpsw = priv->cpsw;
2600
2601 /* not supported */
2602 ering->tx_max_pending = 0;
2603 ering->tx_pending = cpdma_get_num_tx_descs(cpsw->dma);
Ivan Khoronzhukf89d21b2017-01-08 22:12:27 +02002604 ering->rx_max_pending = descs_pool_size - CPSW_MAX_QUEUES;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002605 ering->rx_pending = cpdma_get_num_rx_descs(cpsw->dma);
2606}
2607
2608static int cpsw_set_ringparam(struct net_device *ndev,
2609 struct ethtool_ringparam *ering)
2610{
2611 struct cpsw_priv *priv = netdev_priv(ndev);
2612 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002613 int ret;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002614
2615 /* ignore ering->tx_pending - only rx_pending adjustment is supported */
2616
2617 if (ering->rx_mini_pending || ering->rx_jumbo_pending ||
Ivan Khoronzhukf89d21b2017-01-08 22:12:27 +02002618 ering->rx_pending < CPSW_MAX_QUEUES ||
2619 ering->rx_pending > (descs_pool_size - CPSW_MAX_QUEUES))
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002620 return -EINVAL;
2621
2622 if (ering->rx_pending == cpdma_get_num_rx_descs(cpsw->dma))
2623 return 0;
2624
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002625 cpsw_suspend_data_pass(ndev);
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002626
2627 cpdma_set_num_rx_descs(cpsw->dma, ering->rx_pending);
2628
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002629 if (cpsw->usage_count)
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002630 cpdma_chan_split_pool(cpsw->dma);
2631
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002632 ret = cpsw_resume_data_pass(ndev);
2633 if (!ret)
2634 return 0;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002635
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002636 dev_err(&ndev->dev, "cannot set ring params, closing device\n");
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002637 dev_close(ndev);
2638 return ret;
2639}
2640
Mugunthan V Ndf828592012-03-18 20:17:54 +00002641static const struct ethtool_ops cpsw_ethtool_ops = {
2642 .get_drvinfo = cpsw_get_drvinfo,
2643 .get_msglevel = cpsw_get_msglevel,
2644 .set_msglevel = cpsw_set_msglevel,
2645 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002646 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002647 .get_coalesce = cpsw_get_coalesce,
2648 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05302649 .get_sset_count = cpsw_get_sset_count,
2650 .get_strings = cpsw_get_strings,
2651 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302652 .get_pauseparam = cpsw_get_pauseparam,
2653 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002654 .get_wol = cpsw_get_wol,
2655 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302656 .get_regs_len = cpsw_get_regs_len,
2657 .get_regs = cpsw_get_regs,
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002658 .begin = cpsw_ethtool_op_begin,
2659 .complete = cpsw_ethtool_op_complete,
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002660 .get_channels = cpsw_get_channels,
2661 .set_channels = cpsw_set_channels,
Philippe Reynes24798762016-10-08 17:46:15 +02002662 .get_link_ksettings = cpsw_get_link_ksettings,
2663 .set_link_ksettings = cpsw_set_link_ksettings,
Yegor Yefremova0909942016-11-28 09:41:33 +01002664 .get_eee = cpsw_get_eee,
2665 .set_eee = cpsw_set_eee,
Yegor Yefremov6bb10c22016-11-28 10:47:52 +01002666 .nway_reset = cpsw_nway_reset,
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002667 .get_ringparam = cpsw_get_ringparam,
2668 .set_ringparam = cpsw_set_ringparam,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002669};
2670
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002671static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_common *cpsw,
Richard Cochran549985e2012-11-14 09:07:56 +00002672 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002673{
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002674 void __iomem *regs = cpsw->regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002675 int slave_num = slave->slave_num;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002676 struct cpsw_slave_data *data = cpsw->data.slave_data + slave_num;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002677
2678 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00002679 slave->regs = regs + slave_reg_ofs;
2680 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002681 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002682}
2683
David Rivshin552165b2016-04-27 21:25:25 -04002684static int cpsw_probe_dt(struct cpsw_platform_data *data,
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002685 struct platform_device *pdev)
2686{
2687 struct device_node *node = pdev->dev.of_node;
2688 struct device_node *slave_node;
2689 int i = 0, ret;
2690 u32 prop;
2691
2692 if (!node)
2693 return -EINVAL;
2694
2695 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302696 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002697 return -EINVAL;
2698 }
2699 data->slaves = prop;
2700
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002701 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302702 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302703 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002704 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002705 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002706
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302707 data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
2708 * sizeof(struct cpsw_slave_data),
2709 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00002710 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302711 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002712
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002713 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302714 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302715 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002716 }
2717 data->channels = prop;
2718
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002719 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302720 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302721 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002722 }
2723 data->ale_entries = prop;
2724
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002725 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302726 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302727 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002728 }
2729 data->bd_ram_size = prop;
2730
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002731 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302732 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302733 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002734 }
2735 data->mac_control = prop;
2736
Markus Pargmann281abd92013-10-04 14:44:40 +02002737 if (of_property_read_bool(node, "dual_emac"))
2738 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002739
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002740 /*
2741 * Populate all the child nodes here...
2742 */
2743 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2744 /* We do not want to force this, as in some cases may not have child */
2745 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05302746 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002747
Ben Hutchings8658aaf2016-06-21 01:16:31 +01002748 for_each_available_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00002749 struct cpsw_slave_data *slave_data = data->slave_data + i;
2750 const void *mac_addr = NULL;
Richard Cochran549985e2012-11-14 09:07:56 +00002751 int lenp;
2752 const __be32 *parp;
Richard Cochran549985e2012-11-14 09:07:56 +00002753
Markus Pargmannf468b102013-10-04 14:44:39 +02002754 /* This is no slave child node, continue */
2755 if (strcmp(slave_node->name, "slave"))
2756 continue;
2757
David Rivshin552165b2016-04-27 21:25:25 -04002758 slave_data->phy_node = of_parse_phandle(slave_node,
2759 "phy-handle", 0);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002760 parp = of_get_property(slave_node, "phy_id", &lenp);
David Rivshinae092b52016-04-27 21:38:26 -04002761 if (slave_data->phy_node) {
2762 dev_dbg(&pdev->dev,
Rob Herringf7ce9102017-07-18 16:43:19 -05002763 "slave[%d] using phy-handle=\"%pOF\"\n",
2764 i, slave_data->phy_node);
David Rivshinae092b52016-04-27 21:38:26 -04002765 } else if (of_phy_is_fixed_link(slave_node)) {
David Rivshindfc0a6d2015-12-16 23:02:11 -05002766 /* In the case of a fixed PHY, the DT node associated
2767 * to the PHY is the Ethernet MAC DT node.
2768 */
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002769 ret = of_phy_register_fixed_link(slave_node);
Johan Hovold23a09872016-11-17 17:40:04 +01002770 if (ret) {
2771 if (ret != -EPROBE_DEFER)
2772 dev_err(&pdev->dev, "failed to register fixed-link phy: %d\n", ret);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002773 return ret;
Johan Hovold23a09872016-11-17 17:40:04 +01002774 }
David Rivshin06cd6d62016-04-27 21:45:45 -04002775 slave_data->phy_node = of_node_get(slave_node);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002776 } else if (parp) {
2777 u32 phyid;
2778 struct device_node *mdio_node;
2779 struct platform_device *mdio;
2780
2781 if (lenp != (sizeof(__be32) * 2)) {
2782 dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
2783 goto no_phy_slave;
2784 }
2785 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2786 phyid = be32_to_cpup(parp+1);
2787 mdio = of_find_device_by_node(mdio_node);
2788 of_node_put(mdio_node);
2789 if (!mdio) {
2790 dev_err(&pdev->dev, "Missing mdio platform device\n");
2791 return -EINVAL;
2792 }
2793 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2794 PHY_ID_FMT, mdio->name, phyid);
Johan Hovold86e1d5a2016-11-17 17:39:59 +01002795 put_device(&mdio->dev);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002796 } else {
David Rivshinae092b52016-04-27 21:38:26 -04002797 dev_err(&pdev->dev,
2798 "No slave[%d] phy_id, phy-handle, or fixed-link property\n",
2799 i);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002800 goto no_phy_slave;
2801 }
Mugunthan V N47276fc2014-10-24 18:51:33 +05302802 slave_data->phy_if = of_get_phy_mode(slave_node);
2803 if (slave_data->phy_if < 0) {
2804 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2805 i);
2806 return slave_data->phy_if;
2807 }
2808
2809no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00002810 mac_addr = of_get_mac_address(slave_node);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002811 if (mac_addr) {
Richard Cochran549985e2012-11-14 09:07:56 +00002812 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002813 } else {
Mugunthan V Nb6745f62015-09-21 15:56:50 +05302814 ret = ti_cm_get_macid(&pdev->dev, i,
2815 slave_data->mac_addr);
2816 if (ret)
2817 return ret;
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002818 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002819 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00002820 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002821 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302822 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002823 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05302824 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2825 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002826 } else {
2827 slave_data->dual_emac_res_vlan = prop;
2828 }
2829 }
2830
Richard Cochran549985e2012-11-14 09:07:56 +00002831 i++;
Mugunthan V N3a27bfa2013-12-02 12:53:39 +05302832 if (i == data->slaves)
2833 break;
Richard Cochran549985e2012-11-14 09:07:56 +00002834 }
2835
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002836 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002837}
2838
Johan Hovolda4e32b02016-11-17 17:40:00 +01002839static void cpsw_remove_dt(struct platform_device *pdev)
2840{
Johan Hovold8cbcc462016-11-17 17:40:01 +01002841 struct net_device *ndev = platform_get_drvdata(pdev);
2842 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
2843 struct cpsw_platform_data *data = &cpsw->data;
2844 struct device_node *node = pdev->dev.of_node;
2845 struct device_node *slave_node;
2846 int i = 0;
2847
2848 for_each_available_child_of_node(node, slave_node) {
2849 struct cpsw_slave_data *slave_data = &data->slave_data[i];
2850
2851 if (strcmp(slave_node->name, "slave"))
2852 continue;
2853
Johan Hovold3f650472016-11-28 19:24:55 +01002854 if (of_phy_is_fixed_link(slave_node))
2855 of_phy_deregister_fixed_link(slave_node);
Johan Hovold8cbcc462016-11-17 17:40:01 +01002856
2857 of_node_put(slave_data->phy_node);
2858
2859 i++;
2860 if (i == data->slaves)
2861 break;
2862 }
2863
Johan Hovolda4e32b02016-11-17 17:40:00 +01002864 of_platform_depopulate(&pdev->dev);
2865}
2866
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002867static int cpsw_probe_dual_emac(struct cpsw_priv *priv)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002868{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002869 struct cpsw_common *cpsw = priv->cpsw;
2870 struct cpsw_platform_data *data = &cpsw->data;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002871 struct net_device *ndev;
2872 struct cpsw_priv *priv_sl2;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03002873 int ret = 0;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002874
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03002875 ndev = alloc_etherdev_mq(sizeof(struct cpsw_priv), CPSW_MAX_QUEUES);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002876 if (!ndev) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002877 dev_err(cpsw->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002878 return -ENOMEM;
2879 }
2880
2881 priv_sl2 = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002882 priv_sl2->cpsw = cpsw;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002883 priv_sl2->ndev = ndev;
2884 priv_sl2->dev = &ndev->dev;
2885 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002886
2887 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2888 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2889 ETH_ALEN);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002890 dev_info(cpsw->dev, "cpsw: Detected MACID = %pM\n",
2891 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002892 } else {
2893 random_ether_addr(priv_sl2->mac_addr);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002894 dev_info(cpsw->dev, "cpsw: Random MACID = %pM\n",
2895 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002896 }
2897 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2898
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002899 priv_sl2->emac_port = 1;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002900 cpsw->slaves[1].ndev = ndev;
Patrick McHardyf6469682013-04-19 02:04:27 +00002901 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002902
2903 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002904 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002905
2906 /* register the network device */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002907 SET_NETDEV_DEV(ndev, cpsw->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002908 ret = register_netdev(ndev);
2909 if (ret) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002910 dev_err(cpsw->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002911 free_netdev(ndev);
2912 ret = -ENODEV;
2913 }
2914
2915 return ret;
2916}
2917
Mugunthan V N7da11602015-08-12 15:22:53 +05302918#define CPSW_QUIRK_IRQ BIT(0)
2919
Arvind Yadavf5b58942017-08-13 16:43:18 +05302920static const struct platform_device_id cpsw_devtype[] = {
Mugunthan V N7da11602015-08-12 15:22:53 +05302921 {
2922 /* keep it for existing comaptibles */
2923 .name = "cpsw",
2924 .driver_data = CPSW_QUIRK_IRQ,
2925 }, {
2926 .name = "am335x-cpsw",
2927 .driver_data = CPSW_QUIRK_IRQ,
2928 }, {
2929 .name = "am4372-cpsw",
2930 .driver_data = 0,
2931 }, {
2932 .name = "dra7-cpsw",
2933 .driver_data = 0,
2934 }, {
2935 /* sentinel */
2936 }
2937};
2938MODULE_DEVICE_TABLE(platform, cpsw_devtype);
2939
2940enum ti_cpsw_type {
2941 CPSW = 0,
2942 AM335X_CPSW,
2943 AM4372_CPSW,
2944 DRA7_CPSW,
2945};
2946
2947static const struct of_device_id cpsw_of_mtable[] = {
2948 { .compatible = "ti,cpsw", .data = &cpsw_devtype[CPSW], },
2949 { .compatible = "ti,am335x-cpsw", .data = &cpsw_devtype[AM335X_CPSW], },
2950 { .compatible = "ti,am4372-cpsw", .data = &cpsw_devtype[AM4372_CPSW], },
2951 { .compatible = "ti,dra7-cpsw", .data = &cpsw_devtype[DRA7_CPSW], },
2952 { /* sentinel */ },
2953};
2954MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
2955
Bill Pemberton663e12e2012-12-03 09:23:45 -05002956static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002957{
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002958 struct clk *clk;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002959 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002960 struct net_device *ndev;
2961 struct cpsw_priv *priv;
2962 struct cpdma_params dma_params;
2963 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302964 void __iomem *ss_regs;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06002965 void __iomem *cpts_regs;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302966 struct resource *res, *ss_res;
Mugunthan V N7da11602015-08-12 15:22:53 +05302967 const struct of_device_id *of_id;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302968 struct gpio_descs *mode;
Richard Cochran549985e2012-11-14 09:07:56 +00002969 u32 slave_offset, sliver_offset, slave_size;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002970 struct cpsw_common *cpsw;
Felipe Balbi5087b912015-01-16 10:11:11 -06002971 int ret = 0, i;
2972 int irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002973
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002974 cpsw = devm_kzalloc(&pdev->dev, sizeof(struct cpsw_common), GFP_KERNEL);
Johan Hovold3420ea82016-11-17 17:40:03 +01002975 if (!cpsw)
2976 return -ENOMEM;
2977
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002978 cpsw->dev = &pdev->dev;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002979
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03002980 ndev = alloc_etherdev_mq(sizeof(struct cpsw_priv), CPSW_MAX_QUEUES);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002981 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302982 dev_err(&pdev->dev, "error allocating net_device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002983 return -ENOMEM;
2984 }
2985
2986 platform_set_drvdata(pdev, ndev);
2987 priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002988 priv->cpsw = cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002989 priv->ndev = ndev;
2990 priv->dev = &ndev->dev;
2991 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002992 cpsw->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002993
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302994 mode = devm_gpiod_get_array_optional(&pdev->dev, "mode", GPIOD_OUT_LOW);
2995 if (IS_ERR(mode)) {
2996 ret = PTR_ERR(mode);
2997 dev_err(&pdev->dev, "gpio request failed, ret %d\n", ret);
2998 goto clean_ndev_ret;
2999 }
3000
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00003001 /*
3002 * This may be required here for child devices.
3003 */
3004 pm_runtime_enable(&pdev->dev);
3005
Mugunthan V N739683b2013-06-06 23:45:14 +05303006 /* Select default pin state */
3007 pinctrl_pm_select_default_state(&pdev->dev);
3008
Johan Hovolda4e32b02016-11-17 17:40:00 +01003009 /* Need to enable clocks with runtime PM api to access module
3010 * registers
3011 */
3012 ret = pm_runtime_get_sync(&pdev->dev);
3013 if (ret < 0) {
3014 pm_runtime_put_noidle(&pdev->dev);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303015 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00003016 }
Johan Hovolda4e32b02016-11-17 17:40:00 +01003017
Johan Hovold23a09872016-11-17 17:40:04 +01003018 ret = cpsw_probe_dt(&cpsw->data, pdev);
3019 if (ret)
Johan Hovolda4e32b02016-11-17 17:40:00 +01003020 goto clean_dt_ret;
Johan Hovold23a09872016-11-17 17:40:04 +01003021
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003022 data = &cpsw->data;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03003023 cpsw->rx_ch_num = 1;
3024 cpsw->tx_ch_num = 1;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00003025
Mugunthan V Ndf828592012-03-18 20:17:54 +00003026 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
3027 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05303028 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003029 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00003030 eth_random_addr(priv->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05303031 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003032 }
3033
3034 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
3035
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003036 cpsw->slaves = devm_kzalloc(&pdev->dev,
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303037 sizeof(struct cpsw_slave) * data->slaves,
3038 GFP_KERNEL);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003039 if (!cpsw->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303040 ret = -ENOMEM;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003041 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003042 }
3043 for (i = 0; i < data->slaves; i++)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003044 cpsw->slaves[i].slave_num = i;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003045
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003046 cpsw->slaves[0].ndev = ndev;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00003047 priv->emac_port = 0;
3048
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03003049 clk = devm_clk_get(&pdev->dev, "fck");
3050 if (IS_ERR(clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303051 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00003052 ret = -ENODEV;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003053 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003054 }
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003055 cpsw->bus_freq_mhz = clk_get_rate(clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003056
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303057 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3058 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
3059 if (IS_ERR(ss_regs)) {
3060 ret = PTR_ERR(ss_regs);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003061 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003062 }
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003063 cpsw->regs = ss_regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003064
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003065 cpsw->version = readl(&cpsw->regs->id_ver);
Mugunthan V Nf280e892013-12-11 22:09:05 -06003066
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303067 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003068 cpsw->wr_regs = devm_ioremap_resource(&pdev->dev, res);
3069 if (IS_ERR(cpsw->wr_regs)) {
3070 ret = PTR_ERR(cpsw->wr_regs);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003071 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003072 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00003073
3074 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00003075 memset(&ale_params, 0, sizeof(ale_params));
3076
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003077 switch (cpsw->version) {
Richard Cochran549985e2012-11-14 09:07:56 +00003078 case CPSW_VERSION_1:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003079 cpsw->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003080 cpts_regs = ss_regs + CPSW1_CPTS_OFFSET;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003081 cpsw->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00003082 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
3083 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
3084 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
3085 slave_offset = CPSW1_SLAVE_OFFSET;
3086 slave_size = CPSW1_SLAVE_SIZE;
3087 sliver_offset = CPSW1_SLIVER_OFFSET;
3088 dma_params.desc_mem_phys = 0;
3089 break;
3090 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05303091 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05303092 case CPSW_VERSION_4:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003093 cpsw->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003094 cpts_regs = ss_regs + CPSW2_CPTS_OFFSET;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003095 cpsw->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00003096 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
3097 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
3098 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
3099 slave_offset = CPSW2_SLAVE_OFFSET;
3100 slave_size = CPSW2_SLAVE_SIZE;
3101 sliver_offset = CPSW2_SLIVER_OFFSET;
3102 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303103 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00003104 break;
3105 default:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003106 dev_err(priv->dev, "unknown version 0x%08x\n", cpsw->version);
Richard Cochran549985e2012-11-14 09:07:56 +00003107 ret = -ENODEV;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003108 goto clean_dt_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00003109 }
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003110 for (i = 0; i < cpsw->data.slaves; i++) {
3111 struct cpsw_slave *slave = &cpsw->slaves[i];
3112
3113 cpsw_slave_init(slave, cpsw, slave_offset, sliver_offset);
Richard Cochran549985e2012-11-14 09:07:56 +00003114 slave_offset += slave_size;
3115 sliver_offset += SLIVER_SIZE;
3116 }
3117
Mugunthan V Ndf828592012-03-18 20:17:54 +00003118 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00003119 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
3120 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
3121 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
3122 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
3123 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003124
3125 dma_params.num_chan = data->channels;
3126 dma_params.has_soft_reset = true;
3127 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
3128 dma_params.desc_mem_size = data->bd_ram_size;
3129 dma_params.desc_align = 16;
3130 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00003131 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02003132 dma_params.bus_freq_mhz = cpsw->bus_freq_mhz;
Grygorii Strashko90225bf2017-01-06 14:07:33 -06003133 dma_params.descs_pool_size = descs_pool_size;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003134
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003135 cpsw->dma = cpdma_ctlr_create(&dma_params);
3136 if (!cpsw->dma) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00003137 dev_err(priv->dev, "error initializing dma\n");
3138 ret = -ENOMEM;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003139 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003140 }
3141
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02003142 cpsw->txv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_tx_handler, 0);
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02003143 if (IS_ERR(cpsw->txv[0].ch)) {
3144 dev_err(priv->dev, "error initializing tx dma channel\n");
3145 ret = PTR_ERR(cpsw->txv[0].ch);
3146 goto clean_dma_ret;
3147 }
3148
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02003149 cpsw->rxv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_rx_handler, 1);
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02003150 if (IS_ERR(cpsw->rxv[0].ch)) {
3151 dev_err(priv->dev, "error initializing rx dma channel\n");
3152 ret = PTR_ERR(cpsw->rxv[0].ch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003153 goto clean_dma_ret;
3154 }
3155
Ivan Khoronzhuk9fe9aa02017-02-15 19:45:02 +02003156 ale_params.dev = &pdev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003157 ale_params.ale_ageout = ale_ageout;
3158 ale_params.ale_entries = data->ale_entries;
Grygorii Strashkoc6395f12017-11-30 18:21:14 -06003159 ale_params.ale_ports = CPSW_ALE_PORTS_NUM;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003160
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003161 cpsw->ale = cpsw_ale_create(&ale_params);
3162 if (!cpsw->ale) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00003163 dev_err(priv->dev, "error initializing ale engine\n");
3164 ret = -ENODEV;
3165 goto clean_dma_ret;
3166 }
3167
Grygorii Strashko4a88fb92016-12-06 18:00:42 -06003168 cpsw->cpts = cpts_create(cpsw->dev, cpts_regs, cpsw->dev->of_node);
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003169 if (IS_ERR(cpsw->cpts)) {
3170 ret = PTR_ERR(cpsw->cpts);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003171 goto clean_dma_ret;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003172 }
3173
Felipe Balbic03abd82015-01-16 10:11:12 -06003174 ndev->irq = platform_get_irq(pdev, 1);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003175 if (ndev->irq < 0) {
3176 dev_err(priv->dev, "error getting irq resource\n");
Julia Lawallc1e33342015-12-26 20:12:13 +01003177 ret = ndev->irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003178 goto clean_dma_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003179 }
3180
Mugunthan V N7da11602015-08-12 15:22:53 +05303181 of_id = of_match_device(cpsw_of_mtable, &pdev->dev);
3182 if (of_id) {
3183 pdev->id_entry = of_id->data;
3184 if (pdev->id_entry->driver_data)
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03003185 cpsw->quirk_irq = true;
Mugunthan V N7da11602015-08-12 15:22:53 +05303186 }
3187
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -05003188 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX;
Keerthy070f9c62017-07-20 16:59:52 +05303189
3190 ndev->netdev_ops = &cpsw_netdev_ops;
3191 ndev->ethtool_ops = &cpsw_ethtool_ops;
3192 netif_napi_add(ndev, &cpsw->napi_rx, cpsw_rx_poll, CPSW_POLL_WEIGHT);
3193 netif_tx_napi_add(ndev, &cpsw->napi_tx, cpsw_tx_poll, CPSW_POLL_WEIGHT);
3194 cpsw_split_res(ndev);
3195
3196 /* register the network device */
3197 SET_NETDEV_DEV(ndev, &pdev->dev);
3198 ret = register_netdev(ndev);
3199 if (ret) {
3200 dev_err(priv->dev, "error registering net device\n");
3201 ret = -ENODEV;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003202 goto clean_dma_ret;
Keerthy070f9c62017-07-20 16:59:52 +05303203 }
3204
3205 if (cpsw->data.dual_emac) {
3206 ret = cpsw_probe_dual_emac(priv);
3207 if (ret) {
3208 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
3209 goto clean_unregister_netdev_ret;
3210 }
3211 }
3212
Felipe Balbic03abd82015-01-16 10:11:12 -06003213 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
3214 * MISC IRQs which are always kept disabled with this driver so
3215 * we will not request them.
3216 *
3217 * If anyone wants to implement support for those, make sure to
3218 * first request and append them to irqs_table array.
3219 */
Daniel Mackc2b32e52014-09-04 09:00:23 +02003220
Felipe Balbic03abd82015-01-16 10:11:12 -06003221 /* RX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06003222 irq = platform_get_irq(pdev, 1);
Julia Lawallc1e33342015-12-26 20:12:13 +01003223 if (irq < 0) {
3224 ret = irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003225 goto clean_dma_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01003226 }
Felipe Balbi5087b912015-01-16 10:11:11 -06003227
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03003228 cpsw->irqs_table[0] = irq;
Felipe Balbic03abd82015-01-16 10:11:12 -06003229 ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03003230 0, dev_name(&pdev->dev), cpsw);
Felipe Balbi5087b912015-01-16 10:11:11 -06003231 if (ret < 0) {
3232 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003233 goto clean_dma_ret;
Felipe Balbi5087b912015-01-16 10:11:11 -06003234 }
3235
Felipe Balbic03abd82015-01-16 10:11:12 -06003236 /* TX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06003237 irq = platform_get_irq(pdev, 2);
Julia Lawallc1e33342015-12-26 20:12:13 +01003238 if (irq < 0) {
3239 ret = irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003240 goto clean_dma_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01003241 }
Felipe Balbi5087b912015-01-16 10:11:11 -06003242
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03003243 cpsw->irqs_table[1] = irq;
Felipe Balbic03abd82015-01-16 10:11:12 -06003244 ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt,
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03003245 0, dev_name(&pdev->dev), cpsw);
Felipe Balbi5087b912015-01-16 10:11:11 -06003246 if (ret < 0) {
3247 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003248 goto clean_dma_ret;
Felipe Balbi5087b912015-01-16 10:11:11 -06003249 }
Daniel Mackc2b32e52014-09-04 09:00:23 +02003250
Grygorii Strashko90225bf2017-01-06 14:07:33 -06003251 cpsw_notice(priv, probe,
3252 "initialized device (regs %pa, irq %d, pool size %d)\n",
3253 &ss_res->start, ndev->irq, dma_params.descs_pool_size);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00003254
Johan Hovoldc46ab7e2016-11-17 17:39:58 +01003255 pm_runtime_put(&pdev->dev);
3256
Mugunthan V Ndf828592012-03-18 20:17:54 +00003257 return 0;
3258
Johan Hovolda7fe9d42016-11-17 17:40:02 +01003259clean_unregister_netdev_ret:
3260 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003261clean_dma_ret:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003262 cpdma_ctlr_destroy(cpsw->dma);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003263clean_dt_ret:
3264 cpsw_remove_dt(pdev);
Johan Hovoldc46ab7e2016-11-17 17:39:58 +01003265 pm_runtime_put_sync(&pdev->dev);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303266clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00003267 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003268clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00003269 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003270 return ret;
3271}
3272
Bill Pemberton663e12e2012-12-03 09:23:45 -05003273static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00003274{
3275 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003276 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03003277 int ret;
3278
3279 ret = pm_runtime_get_sync(&pdev->dev);
3280 if (ret < 0) {
3281 pm_runtime_put_noidle(&pdev->dev);
3282 return ret;
3283 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00003284
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003285 if (cpsw->data.dual_emac)
3286 unregister_netdev(cpsw->slaves[1].ndev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00003287 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003288
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003289 cpts_release(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003290 cpdma_ctlr_destroy(cpsw->dma);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003291 cpsw_remove_dt(pdev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03003292 pm_runtime_put_sync(&pdev->dev);
3293 pm_runtime_disable(&pdev->dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003294 if (cpsw->data.dual_emac)
3295 free_netdev(cpsw->slaves[1].ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003296 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003297 return 0;
3298}
3299
Grygorii Strashko8963a502015-02-27 13:19:45 +02003300#ifdef CONFIG_PM_SLEEP
Mugunthan V Ndf828592012-03-18 20:17:54 +00003301static int cpsw_suspend(struct device *dev)
3302{
3303 struct platform_device *pdev = to_platform_device(dev);
3304 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003305 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003306
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003307 if (cpsw->data.dual_emac) {
Mugunthan V N618073e2014-09-11 22:52:38 +05303308 int i;
Daniel Mack1e7a2e22013-11-15 08:29:16 +01003309
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003310 for (i = 0; i < cpsw->data.slaves; i++) {
3311 if (netif_running(cpsw->slaves[i].ndev))
3312 cpsw_ndo_stop(cpsw->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303313 }
3314 } else {
3315 if (netif_running(ndev))
3316 cpsw_ndo_stop(ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303317 }
Daniel Mack1e7a2e22013-11-15 08:29:16 +01003318
Mugunthan V N739683b2013-06-06 23:45:14 +05303319 /* Select sleep pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03003320 pinctrl_pm_select_sleep_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05303321
Mugunthan V Ndf828592012-03-18 20:17:54 +00003322 return 0;
3323}
3324
3325static int cpsw_resume(struct device *dev)
3326{
3327 struct platform_device *pdev = to_platform_device(dev);
3328 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuka60ced92017-02-14 14:42:15 +02003329 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003330
Mugunthan V N739683b2013-06-06 23:45:14 +05303331 /* Select default pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03003332 pinctrl_pm_select_default_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05303333
Grygorii Strashko4ccfd632016-11-29 16:27:03 -06003334 /* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
3335 rtnl_lock();
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003336 if (cpsw->data.dual_emac) {
Mugunthan V N618073e2014-09-11 22:52:38 +05303337 int i;
3338
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003339 for (i = 0; i < cpsw->data.slaves; i++) {
3340 if (netif_running(cpsw->slaves[i].ndev))
3341 cpsw_ndo_open(cpsw->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303342 }
3343 } else {
3344 if (netif_running(ndev))
3345 cpsw_ndo_open(ndev);
3346 }
Grygorii Strashko4ccfd632016-11-29 16:27:03 -06003347 rtnl_unlock();
3348
Mugunthan V Ndf828592012-03-18 20:17:54 +00003349 return 0;
3350}
Grygorii Strashko8963a502015-02-27 13:19:45 +02003351#endif
Mugunthan V Ndf828592012-03-18 20:17:54 +00003352
Grygorii Strashko8963a502015-02-27 13:19:45 +02003353static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003354
3355static struct platform_driver cpsw_driver = {
3356 .driver = {
3357 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00003358 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05303359 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00003360 },
3361 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05003362 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00003363};
3364
Grygorii Strashko6fb3b6b52015-10-23 14:41:12 +03003365module_platform_driver(cpsw_driver);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003366
3367MODULE_LICENSE("GPL");
3368MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
3369MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
3370MODULE_DESCRIPTION("TI CPSW Ethernet driver");