blob: f355e65323f302c293bd5dd90f30b372575bba55 [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>
Arnd Bergmanne2b3e492018-05-30 23:51:54 +020032#include <linux/gpio/consumer.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>
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +030039#include <linux/sys_soc.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000040
Mugunthan V N739683b2013-06-06 23:45:14 +053041#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000042
Mugunthan V Ndbe34722013-08-19 17:47:40 +053043#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000044#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000045#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000046#include "davinci_cpdma.h"
47
48#define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \
49 NETIF_MSG_DRV | NETIF_MSG_LINK | \
50 NETIF_MSG_IFUP | NETIF_MSG_INTR | \
51 NETIF_MSG_PROBE | NETIF_MSG_TIMER | \
52 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \
53 NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \
54 NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \
55 NETIF_MSG_RX_STATUS)
56
57#define cpsw_info(priv, type, format, ...) \
58do { \
59 if (netif_msg_##type(priv) && net_ratelimit()) \
60 dev_info(priv->dev, format, ## __VA_ARGS__); \
61} while (0)
62
63#define cpsw_err(priv, type, format, ...) \
64do { \
65 if (netif_msg_##type(priv) && net_ratelimit()) \
66 dev_err(priv->dev, format, ## __VA_ARGS__); \
67} while (0)
68
69#define cpsw_dbg(priv, type, format, ...) \
70do { \
71 if (netif_msg_##type(priv) && net_ratelimit()) \
72 dev_dbg(priv->dev, format, ## __VA_ARGS__); \
73} while (0)
74
75#define cpsw_notice(priv, type, format, ...) \
76do { \
77 if (netif_msg_##type(priv) && net_ratelimit()) \
78 dev_notice(priv->dev, format, ## __VA_ARGS__); \
79} while (0)
80
Mugunthan V N5c50a852012-10-29 08:45:11 +000081#define ALE_ALL_PORTS 0x7
82
Mugunthan V Ndf828592012-03-18 20:17:54 +000083#define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7)
84#define CPSW_MINOR_VERSION(reg) (reg & 0xff)
85#define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f)
86
Richard Cochrane90cfac2012-10-29 08:45:14 +000087#define CPSW_VERSION_1 0x19010a
88#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053089#define CPSW_VERSION_3 0x19010f
Mugunthan V N926489b2013-08-12 17:11:15 +053090#define CPSW_VERSION_4 0x190112
Richard Cochran549985e2012-11-14 09:07:56 +000091
92#define HOST_PORT_NUM 0
Grygorii Strashkoc6395f12017-11-30 18:21:14 -060093#define CPSW_ALE_PORTS_NUM 3
Richard Cochran549985e2012-11-14 09:07:56 +000094#define SLIVER_SIZE 0x40
95
96#define CPSW1_HOST_PORT_OFFSET 0x028
97#define CPSW1_SLAVE_OFFSET 0x050
98#define CPSW1_SLAVE_SIZE 0x040
99#define CPSW1_CPDMA_OFFSET 0x100
100#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +0530101#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +0000102#define CPSW1_CPTS_OFFSET 0x500
103#define CPSW1_ALE_OFFSET 0x600
104#define CPSW1_SLIVER_OFFSET 0x700
105
106#define CPSW2_HOST_PORT_OFFSET 0x108
107#define CPSW2_SLAVE_OFFSET 0x200
108#define CPSW2_SLAVE_SIZE 0x100
109#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530110#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000111#define CPSW2_STATERAM_OFFSET 0xa00
112#define CPSW2_CPTS_OFFSET 0xc00
113#define CPSW2_ALE_OFFSET 0xd00
114#define CPSW2_SLIVER_OFFSET 0xd80
115#define CPSW2_BD_OFFSET 0x2000
116
Mugunthan V Ndf828592012-03-18 20:17:54 +0000117#define CPDMA_RXTHRESH 0x0c0
118#define CPDMA_RXFREE 0x0e0
119#define CPDMA_TXHDP 0x00
120#define CPDMA_RXHDP 0x20
121#define CPDMA_TXCP 0x40
122#define CPDMA_RXCP 0x60
123
Mugunthan V Ndf828592012-03-18 20:17:54 +0000124#define CPSW_POLL_WEIGHT 64
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500125#define CPSW_RX_VLAN_ENCAP_HDR_SIZE 4
Grygorii Strashko9421c902017-11-15 09:46:35 -0600126#define CPSW_MIN_PACKET_SIZE (VLAN_ETH_ZLEN)
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500127#define CPSW_MAX_PACKET_SIZE (VLAN_ETH_FRAME_LEN +\
128 ETH_FCS_LEN +\
129 CPSW_RX_VLAN_ENCAP_HDR_SIZE)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000130
131#define RX_PRIORITY_MAPPING 0x76543210
132#define TX_PRIORITY_MAPPING 0x33221100
Ivan Khoronzhuk5e391dc52018-04-19 22:49:09 +0300133#define CPDMA_TX_PRIORITY_MAP 0x76543210
Mugunthan V Ndf828592012-03-18 20:17:54 +0000134
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000135#define CPSW_VLAN_AWARE BIT(1)
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500136#define CPSW_RX_VLAN_ENCAP BIT(2)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000137#define CPSW_ALE_VLAN_AWARE 1
138
John Ogness35717d82014-11-14 15:42:52 +0100139#define CPSW_FIFO_NORMAL_MODE (0 << 16)
140#define CPSW_FIFO_DUAL_MAC_MODE (1 << 16)
141#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000142
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000143#define CPSW_INTPACEEN (0x3f << 16)
144#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
145#define CPSW_CMINTMAX_CNT 63
146#define CPSW_CMINTMIN_CNT 2
147#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
148#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
149
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300150#define cpsw_slave_index(cpsw, priv) \
151 ((cpsw->data.dual_emac) ? priv->emac_port : \
152 cpsw->data.active_slave)
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300153#define IRQ_NUM 2
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300154#define CPSW_MAX_QUEUES 8
Grygorii Strashko90225bf2017-01-06 14:07:33 -0600155#define CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT 256
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000156
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500157#define CPSW_RX_VLAN_ENCAP_HDR_PRIO_SHIFT 29
158#define CPSW_RX_VLAN_ENCAP_HDR_PRIO_MSK GENMASK(2, 0)
159#define CPSW_RX_VLAN_ENCAP_HDR_VID_SHIFT 16
160#define CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_SHIFT 8
161#define CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_MSK GENMASK(1, 0)
162enum {
163 CPSW_RX_VLAN_ENCAP_HDR_PKT_VLAN_TAG = 0,
164 CPSW_RX_VLAN_ENCAP_HDR_PKT_RESERV,
165 CPSW_RX_VLAN_ENCAP_HDR_PKT_PRIO_TAG,
166 CPSW_RX_VLAN_ENCAP_HDR_PKT_UNTAG,
167};
168
Mugunthan V Ndf828592012-03-18 20:17:54 +0000169static int debug_level;
170module_param(debug_level, int, 0);
171MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
172
173static int ale_ageout = 10;
174module_param(ale_ageout, int, 0);
175MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
176
177static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
178module_param(rx_packet_max, int, 0);
179MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
180
Grygorii Strashko90225bf2017-01-06 14:07:33 -0600181static int descs_pool_size = CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT;
182module_param(descs_pool_size, int, 0444);
183MODULE_PARM_DESC(descs_pool_size, "Number of CPDMA CPPI descriptors in pool");
184
Richard Cochran996a5c22012-10-29 08:45:12 +0000185struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000186 u32 id_ver;
187 u32 soft_reset;
188 u32 control;
189 u32 int_control;
190 u32 rx_thresh_en;
191 u32 rx_en;
192 u32 tx_en;
193 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000194 u32 mem_allign1[8];
195 u32 rx_thresh_stat;
196 u32 rx_stat;
197 u32 tx_stat;
198 u32 misc_stat;
199 u32 mem_allign2[8];
200 u32 rx_imax;
201 u32 tx_imax;
202
Mugunthan V Ndf828592012-03-18 20:17:54 +0000203};
204
Richard Cochran996a5c22012-10-29 08:45:12 +0000205struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000206 u32 id_ver;
207 u32 control;
208 u32 soft_reset;
209 u32 stat_port_en;
210 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000211 u32 soft_idle;
212 u32 thru_rate;
213 u32 gap_thresh;
214 u32 tx_start_wds;
215 u32 flow_control;
216 u32 vlan_ltype;
217 u32 ts_ltype;
218 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000219};
220
Richard Cochran9750a3a2012-10-29 08:45:15 +0000221/* CPSW_PORT_V1 */
222#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
223#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
224#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
225#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
226#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
227#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
228#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
229#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
230
231/* CPSW_PORT_V2 */
232#define CPSW2_CONTROL 0x00 /* Control Register */
233#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
234#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
235#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
236#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
237#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
238#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
239
240/* CPSW_PORT_V1 and V2 */
241#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
242#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
243#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
244
245/* CPSW_PORT_V2 only */
246#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
247#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
248#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
249#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
250#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
251#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
252#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
253#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
254
255/* Bit definitions for the CPSW2_CONTROL register */
Ivan Khoronzhuk1239a962018-07-06 21:44:44 +0300256#define PASS_PRI_TAGGED BIT(24) /* Pass Priority Tagged */
257#define VLAN_LTYPE2_EN BIT(21) /* VLAN LTYPE 2 enable */
258#define VLAN_LTYPE1_EN BIT(20) /* VLAN LTYPE 1 enable */
259#define DSCP_PRI_EN BIT(16) /* DSCP Priority Enable */
260#define TS_320 BIT(14) /* Time Sync Dest Port 320 enable */
261#define TS_319 BIT(13) /* Time Sync Dest Port 319 enable */
262#define TS_132 BIT(12) /* Time Sync Dest IP Addr 132 enable */
263#define TS_131 BIT(11) /* Time Sync Dest IP Addr 131 enable */
264#define TS_130 BIT(10) /* Time Sync Dest IP Addr 130 enable */
265#define TS_129 BIT(9) /* Time Sync Dest IP Addr 129 enable */
266#define TS_TTL_NONZERO BIT(8) /* Time Sync Time To Live Non-zero enable */
267#define TS_ANNEX_F_EN BIT(6) /* Time Sync Annex F enable */
268#define TS_ANNEX_D_EN BIT(4) /* Time Sync Annex D enable */
269#define TS_LTYPE2_EN BIT(3) /* Time Sync LTYPE 2 enable */
270#define TS_LTYPE1_EN BIT(2) /* Time Sync LTYPE 1 enable */
271#define TS_TX_EN BIT(1) /* Time Sync Transmit Enable */
272#define TS_RX_EN BIT(0) /* Time Sync Receive Enable */
Richard Cochran9750a3a2012-10-29 08:45:15 +0000273
George Cherian09c55372014-05-02 12:02:02 +0530274#define CTRL_V2_TS_BITS \
275 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
276 TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000277
George Cherian09c55372014-05-02 12:02:02 +0530278#define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN)
279#define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN)
280#define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN)
281
282
283#define CTRL_V3_TS_BITS \
284 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
285 TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\
286 TS_LTYPE1_EN)
287
288#define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN)
289#define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN)
290#define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000291
292/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
293#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
294#define TS_SEQ_ID_OFFSET_MASK (0x3f)
295#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
296#define TS_MSG_TYPE_EN_MASK (0xffff)
297
298/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
299#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000300
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000301/* Bit definitions for the CPSW1_TS_CTL register */
302#define CPSW_V1_TS_RX_EN BIT(0)
303#define CPSW_V1_TS_TX_EN BIT(4)
304#define CPSW_V1_MSG_TYPE_OFS 16
305
306/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
307#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
308
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -0500309#define CPSW_MAX_BLKS_TX 15
310#define CPSW_MAX_BLKS_TX_SHIFT 4
311#define CPSW_MAX_BLKS_RX 5
312
Mugunthan V Ndf828592012-03-18 20:17:54 +0000313struct cpsw_host_regs {
314 u32 max_blks;
315 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000316 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000317 u32 port_vlan;
318 u32 tx_pri_map;
319 u32 cpdma_tx_pri_map;
320 u32 cpdma_rx_chan_map;
321};
322
323struct cpsw_sliver_regs {
324 u32 id_ver;
325 u32 mac_control;
326 u32 mac_status;
327 u32 soft_reset;
328 u32 rx_maxlen;
329 u32 __reserved_0;
330 u32 rx_pause;
331 u32 tx_pause;
332 u32 __reserved_1;
333 u32 rx_pri_map;
334};
335
Mugunthan V Nd9718542013-07-23 15:38:17 +0530336struct cpsw_hw_stats {
337 u32 rxgoodframes;
338 u32 rxbroadcastframes;
339 u32 rxmulticastframes;
340 u32 rxpauseframes;
341 u32 rxcrcerrors;
342 u32 rxaligncodeerrors;
343 u32 rxoversizedframes;
344 u32 rxjabberframes;
345 u32 rxundersizedframes;
346 u32 rxfragments;
347 u32 __pad_0[2];
348 u32 rxoctets;
349 u32 txgoodframes;
350 u32 txbroadcastframes;
351 u32 txmulticastframes;
352 u32 txpauseframes;
353 u32 txdeferredframes;
354 u32 txcollisionframes;
355 u32 txsinglecollframes;
356 u32 txmultcollframes;
357 u32 txexcessivecollisions;
358 u32 txlatecollisions;
359 u32 txunderrun;
360 u32 txcarriersenseerrors;
361 u32 txoctets;
362 u32 octetframes64;
363 u32 octetframes65t127;
364 u32 octetframes128t255;
365 u32 octetframes256t511;
366 u32 octetframes512t1023;
367 u32 octetframes1024tup;
368 u32 netoctets;
369 u32 rxsofoverruns;
370 u32 rxmofoverruns;
371 u32 rxdmaoverruns;
372};
373
Grygorii Strashko2c8a14d2017-11-30 18:21:12 -0600374struct cpsw_slave_data {
375 struct device_node *phy_node;
376 char phy_id[MII_BUS_ID_SIZE];
377 int phy_if;
378 u8 mac_addr[ETH_ALEN];
379 u16 dual_emac_res_vlan; /* Reserved VLAN for DualEMAC */
380};
381
382struct cpsw_platform_data {
383 struct cpsw_slave_data *slave_data;
384 u32 ss_reg_ofs; /* Subsystem control register offset */
385 u32 channels; /* number of cpdma channels (symmetric) */
386 u32 slaves; /* number of slave cpgmac ports */
387 u32 active_slave; /* time stamping, ethtool and SIOCGMIIPHY slave */
388 u32 ale_entries; /* ale table size */
389 u32 bd_ram_size; /*buffer descriptor ram size */
390 u32 mac_control; /* Mac control register */
391 u16 default_vlan; /* Def VLAN for ALE lookup in VLAN aware mode*/
392 bool dual_emac; /* Enable Dual EMAC mode */
393};
394
Mugunthan V Ndf828592012-03-18 20:17:54 +0000395struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000396 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000397 struct cpsw_sliver_regs __iomem *sliver;
398 int slave_num;
399 u32 mac_control;
400 struct cpsw_slave_data *data;
401 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000402 struct net_device *ndev;
403 u32 port_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000404};
405
Richard Cochran9750a3a2012-10-29 08:45:15 +0000406static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
407{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600408 return readl_relaxed(slave->regs + offset);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000409}
410
411static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
412{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600413 writel_relaxed(val, slave->regs + offset);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000414}
415
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200416struct cpsw_vector {
417 struct cpdma_chan *ch;
418 int budget;
419};
420
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300421struct cpsw_common {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300422 struct device *dev;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300423 struct cpsw_platform_data data;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300424 struct napi_struct napi_rx;
425 struct napi_struct napi_tx;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300426 struct cpsw_ss_regs __iomem *regs;
427 struct cpsw_wr_regs __iomem *wr_regs;
428 u8 __iomem *hw_stats;
429 struct cpsw_host_regs __iomem *host_port_regs;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300430 u32 version;
431 u32 coal_intvl;
432 u32 bus_freq_mhz;
433 int rx_packet_max;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300434 struct cpsw_slave *slaves;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300435 struct cpdma_ctlr *dma;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200436 struct cpsw_vector txv[CPSW_MAX_QUEUES];
437 struct cpsw_vector rxv[CPSW_MAX_QUEUES];
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300438 struct cpsw_ale *ale;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300439 bool quirk_irq;
440 bool rx_irq_disabled;
441 bool tx_irq_disabled;
442 u32 irqs_table[IRQ_NUM];
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300443 struct cpts *cpts;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300444 int rx_ch_num, tx_ch_num;
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200445 int speed;
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200446 int usage_count;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300447};
448
449struct cpsw_priv {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000450 struct net_device *ndev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000451 struct device *dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000452 u32 msg_enable;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000453 u8 mac_addr[ETH_ALEN];
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530454 bool rx_pause;
455 bool tx_pause;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000456 u32 emac_port;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300457 struct cpsw_common *cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000458};
459
Mugunthan V Nd9718542013-07-23 15:38:17 +0530460struct cpsw_stats {
461 char stat_string[ETH_GSTRING_LEN];
462 int type;
463 int sizeof_stat;
464 int stat_offset;
465};
466
467enum {
468 CPSW_STATS,
469 CPDMA_RX_STATS,
470 CPDMA_TX_STATS,
471};
472
473#define CPSW_STAT(m) CPSW_STATS, \
474 sizeof(((struct cpsw_hw_stats *)0)->m), \
475 offsetof(struct cpsw_hw_stats, m)
476#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
477 sizeof(((struct cpdma_chan_stats *)0)->m), \
478 offsetof(struct cpdma_chan_stats, m)
479#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
480 sizeof(((struct cpdma_chan_stats *)0)->m), \
481 offsetof(struct cpdma_chan_stats, m)
482
483static const struct cpsw_stats cpsw_gstrings_stats[] = {
484 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
485 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
486 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
487 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
488 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
489 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
490 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
491 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
492 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
493 { "Rx Fragments", CPSW_STAT(rxfragments) },
494 { "Rx Octets", CPSW_STAT(rxoctets) },
495 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
496 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
497 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
498 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
499 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
500 { "Collisions", CPSW_STAT(txcollisionframes) },
501 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
502 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
503 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
504 { "Late Collisions", CPSW_STAT(txlatecollisions) },
505 { "Tx Underrun", CPSW_STAT(txunderrun) },
506 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
507 { "Tx Octets", CPSW_STAT(txoctets) },
508 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
509 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
510 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
511 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
512 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
513 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
514 { "Net Octets", CPSW_STAT(netoctets) },
515 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
516 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
517 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
Mugunthan V Nd9718542013-07-23 15:38:17 +0530518};
519
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300520static const struct cpsw_stats cpsw_gstrings_ch_stats[] = {
521 { "head_enqueue", CPDMA_RX_STAT(head_enqueue) },
522 { "tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
523 { "pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
524 { "misqueued", CPDMA_RX_STAT(misqueued) },
525 { "desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
526 { "pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
527 { "runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
528 { "runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
529 { "empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
530 { "busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
531 { "good_dequeue", CPDMA_RX_STAT(good_dequeue) },
532 { "requeue", CPDMA_RX_STAT(requeue) },
533 { "teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
534};
535
536#define CPSW_STATS_COMMON_LEN ARRAY_SIZE(cpsw_gstrings_stats)
537#define CPSW_STATS_CH_LEN ARRAY_SIZE(cpsw_gstrings_ch_stats)
Mugunthan V Nd9718542013-07-23 15:38:17 +0530538
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300539#define ndev_to_cpsw(ndev) (((struct cpsw_priv *)netdev_priv(ndev))->cpsw)
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300540#define napi_to_cpsw(napi) container_of(napi, struct cpsw_common, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000541#define for_each_slave(priv, func, arg...) \
542 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000543 struct cpsw_slave *slave; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300544 struct cpsw_common *cpsw = (priv)->cpsw; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000545 int n; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300546 if (cpsw->data.dual_emac) \
547 (func)((cpsw)->slaves + priv->emac_port, ##arg);\
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000548 else \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300549 for (n = cpsw->data.slaves, \
550 slave = cpsw->slaves; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000551 n; n--) \
552 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000553 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000554
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300555#define cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000556 do { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300557 if (!cpsw->data.dual_emac) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000558 break; \
559 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300560 ndev = cpsw->slaves[0].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000561 skb->dev = ndev; \
562 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300563 ndev = cpsw->slaves[1].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000564 skb->dev = ndev; \
565 } \
566 } while (0)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300567#define cpsw_add_mcast(cpsw, priv, addr) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000568 do { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300569 if (cpsw->data.dual_emac) { \
570 struct cpsw_slave *slave = cpsw->slaves + \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000571 priv->emac_port; \
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300572 int slave_port = cpsw_get_slave_port( \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000573 slave->slave_num); \
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300574 cpsw_ale_add_mcast(cpsw->ale, addr, \
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300575 1 << slave_port | ALE_PORT_HOST, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000576 ALE_VLAN, slave->port_vlan, 0); \
577 } else { \
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300578 cpsw_ale_add_mcast(cpsw->ale, addr, \
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300579 ALE_ALL_PORTS, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000580 0, 0, 0); \
581 } \
582 } while (0)
583
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300584static inline int cpsw_get_slave_port(u32 slave_num)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000585{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300586 return slave_num + 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000587}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000588
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530589static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
590{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300591 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
592 struct cpsw_ale *ale = cpsw->ale;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530593 int i;
594
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300595 if (cpsw->data.dual_emac) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530596 bool flag = false;
597
598 /* Enabling promiscuous mode for one interface will be
599 * common for both the interface as the interface shares
600 * the same hardware resource.
601 */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300602 for (i = 0; i < cpsw->data.slaves; i++)
603 if (cpsw->slaves[i].ndev->flags & IFF_PROMISC)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530604 flag = true;
605
606 if (!enable && flag) {
607 enable = true;
608 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
609 }
610
611 if (enable) {
612 /* Enable Bypass */
613 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
614
615 dev_dbg(&ndev->dev, "promiscuity enabled\n");
616 } else {
617 /* Disable Bypass */
618 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
619 dev_dbg(&ndev->dev, "promiscuity disabled\n");
620 }
621 } else {
622 if (enable) {
623 unsigned long timeout = jiffies + HZ;
624
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400625 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300626 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530627 cpsw_ale_control_set(ale, i,
628 ALE_PORT_NOLEARN, 1);
629 cpsw_ale_control_set(ale, i,
630 ALE_PORT_NO_SA_UPDATE, 1);
631 }
632
633 /* Clear All Untouched entries */
634 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
635 do {
636 cpu_relax();
637 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
638 break;
639 } while (time_after(timeout, jiffies));
640 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
641
642 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300643 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1);
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530644
645 /* Flood All Unicast Packets to Host port */
646 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
647 dev_dbg(&ndev->dev, "promiscuity enabled\n");
648 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400649 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530650 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
651
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400652 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300653 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530654 cpsw_ale_control_set(ale, i,
655 ALE_PORT_NOLEARN, 0);
656 cpsw_ale_control_set(ale, i,
657 ALE_PORT_NO_SA_UPDATE, 0);
658 }
659 dev_dbg(&ndev->dev, "promiscuity disabled\n");
660 }
661 }
662}
663
Mugunthan V N5c50a852012-10-29 08:45:11 +0000664static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
665{
666 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300667 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N25906052015-01-13 17:35:49 +0530668 int vid;
669
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300670 if (cpsw->data.dual_emac)
671 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V N25906052015-01-13 17:35:49 +0530672 else
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300673 vid = cpsw->data.default_vlan;
Mugunthan V N5c50a852012-10-29 08:45:11 +0000674
675 if (ndev->flags & IFF_PROMISC) {
676 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530677 cpsw_set_promiscious(ndev, true);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300678 cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000679 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530680 } else {
681 /* Disable promiscuous mode */
682 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000683 }
684
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400685 /* Restore allmulti on vlans if necessary */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300686 cpsw_ale_set_allmulti(cpsw->ale, priv->ndev->flags & IFF_ALLMULTI);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400687
Mugunthan V N5c50a852012-10-29 08:45:11 +0000688 /* Clear all mcast from ALE */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300689 cpsw_ale_flush_multicast(cpsw->ale, ALE_ALL_PORTS, vid);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000690
691 if (!netdev_mc_empty(ndev)) {
692 struct netdev_hw_addr *ha;
693
694 /* program multicast address list into ALE register */
695 netdev_for_each_mc_addr(ha, ndev) {
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300696 cpsw_add_mcast(cpsw, priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000697 }
698 }
699}
700
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300701static void cpsw_intr_enable(struct cpsw_common *cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000702{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600703 writel_relaxed(0xFF, &cpsw->wr_regs->tx_en);
704 writel_relaxed(0xFF, &cpsw->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000705
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300706 cpdma_ctlr_int_ctrl(cpsw->dma, true);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000707 return;
708}
709
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300710static void cpsw_intr_disable(struct cpsw_common *cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000711{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600712 writel_relaxed(0, &cpsw->wr_regs->tx_en);
713 writel_relaxed(0, &cpsw->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000714
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300715 cpdma_ctlr_int_ctrl(cpsw->dma, false);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000716 return;
717}
718
Olof Johansson1a3b5052013-12-11 15:58:07 -0800719static void cpsw_tx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000720{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300721 struct netdev_queue *txq;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000722 struct sk_buff *skb = token;
723 struct net_device *ndev = skb->dev;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300724 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000725
Mugunthan V Nfae50822013-01-17 06:31:34 +0000726 /* Check whether the queue is stopped due to stalled tx dma, if the
727 * queue is stopped then start the queue as we have free desc for tx
728 */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300729 txq = netdev_get_tx_queue(ndev, skb_get_queue_mapping(skb));
730 if (unlikely(netif_tx_queue_stopped(txq)))
731 netif_tx_wake_queue(txq);
732
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300733 cpts_tx_timestamp(cpsw->cpts, skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100734 ndev->stats.tx_packets++;
735 ndev->stats.tx_bytes += len;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000736 dev_kfree_skb_any(skb);
737}
738
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500739static void cpsw_rx_vlan_encap(struct sk_buff *skb)
740{
741 struct cpsw_priv *priv = netdev_priv(skb->dev);
742 struct cpsw_common *cpsw = priv->cpsw;
743 u32 rx_vlan_encap_hdr = *((u32 *)skb->data);
744 u16 vtag, vid, prio, pkt_type;
745
746 /* Remove VLAN header encapsulation word */
747 skb_pull(skb, CPSW_RX_VLAN_ENCAP_HDR_SIZE);
748
749 pkt_type = (rx_vlan_encap_hdr >>
750 CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_SHIFT) &
751 CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_MSK;
752 /* Ignore unknown & Priority-tagged packets*/
753 if (pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_RESERV ||
754 pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_PRIO_TAG)
755 return;
756
757 vid = (rx_vlan_encap_hdr >>
758 CPSW_RX_VLAN_ENCAP_HDR_VID_SHIFT) &
759 VLAN_VID_MASK;
760 /* Ignore vid 0 and pass packet as is */
761 if (!vid)
762 return;
763 /* Ignore default vlans in dual mac mode */
764 if (cpsw->data.dual_emac &&
765 vid == cpsw->slaves[priv->emac_port].port_vlan)
766 return;
767
768 prio = (rx_vlan_encap_hdr >>
769 CPSW_RX_VLAN_ENCAP_HDR_PRIO_SHIFT) &
770 CPSW_RX_VLAN_ENCAP_HDR_PRIO_MSK;
771
772 vtag = (prio << VLAN_PRIO_SHIFT) | vid;
773 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
774
775 /* strip vlan tag for VLAN-tagged packet */
776 if (pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_VLAN_TAG) {
777 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
778 skb_pull(skb, VLAN_HLEN);
779 }
780}
781
Olof Johansson1a3b5052013-12-11 15:58:07 -0800782static void cpsw_rx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000783{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300784 struct cpdma_chan *ch;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000785 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000786 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000787 struct net_device *ndev = skb->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000788 int ret = 0;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300789 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000790
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300791 cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000792
Mugunthan V N16e5c572014-04-10 14:23:23 +0530793 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Ivan Khoronzhukfe734d02017-01-19 18:58:26 +0200794 /* In dual emac mode check for all interfaces */
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200795 if (cpsw->data.dual_emac && cpsw->usage_count &&
Ivan Khoronzhukfe734d02017-01-19 18:58:26 +0200796 (status >= 0)) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530797 /* The packet received is for the interface which
798 * is already down and the other interface is up
Joe Perchesdbedd442015-03-06 20:49:12 -0800799 * and running, instead of freeing which results
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530800 * in reducing of the number of rx descriptor in
801 * DMA engine, requeue skb back to cpdma.
802 */
803 new_skb = skb;
804 goto requeue;
805 }
806
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000807 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000808 dev_kfree_skb_any(skb);
809 return;
810 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000811
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300812 new_skb = netdev_alloc_skb_ip_align(ndev, cpsw->rx_packet_max);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000813 if (new_skb) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300814 skb_copy_queue_mapping(new_skb, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000815 skb_put(skb, len);
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500816 if (status & CPDMA_RX_VLAN_ENCAP)
817 cpsw_rx_vlan_encap(skb);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300818 cpts_rx_timestamp(cpsw->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000819 skb->protocol = eth_type_trans(skb, ndev);
820 netif_receive_skb(skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100821 ndev->stats.rx_bytes += len;
822 ndev->stats.rx_packets++;
Grygorii Strashko254a49d2016-08-09 15:09:44 +0300823 kmemleak_not_leak(new_skb);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000824 } else {
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100825 ndev->stats.rx_dropped++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000826 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000827 }
828
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530829requeue:
Ivan Khoronzhukce52c742016-08-22 21:18:28 +0300830 if (netif_dormant(ndev)) {
831 dev_kfree_skb_any(new_skb);
832 return;
833 }
834
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200835 ch = cpsw->rxv[skb_get_queue_mapping(new_skb)].ch;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300836 ret = cpdma_chan_submit(ch, new_skb, new_skb->data,
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300837 skb_tailroom(new_skb), 0);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000838 if (WARN_ON(ret < 0))
839 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000840}
841
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200842static void cpsw_split_res(struct net_device *ndev)
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200843{
844 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200845 u32 consumed_rate = 0, bigest_rate = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200846 struct cpsw_common *cpsw = priv->cpsw;
847 struct cpsw_vector *txv = cpsw->txv;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200848 int i, ch_weight, rlim_ch_num = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200849 int budget, bigest_rate_ch = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200850 u32 ch_rate, max_rate;
851 int ch_budget = 0;
852
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200853 for (i = 0; i < cpsw->tx_ch_num; i++) {
854 ch_rate = cpdma_chan_get_rate(txv[i].ch);
855 if (!ch_rate)
856 continue;
857
858 rlim_ch_num++;
859 consumed_rate += ch_rate;
860 }
861
862 if (cpsw->tx_ch_num == rlim_ch_num) {
863 max_rate = consumed_rate;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200864 } else if (!rlim_ch_num) {
865 ch_budget = CPSW_POLL_WEIGHT / cpsw->tx_ch_num;
866 bigest_rate = 0;
867 max_rate = consumed_rate;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200868 } else {
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200869 max_rate = cpsw->speed * 1000;
870
871 /* if max_rate is less then expected due to reduced link speed,
872 * split proportionally according next potential max speed
873 */
874 if (max_rate < consumed_rate)
875 max_rate *= 10;
876
877 if (max_rate < consumed_rate)
878 max_rate *= 10;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200879
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200880 ch_budget = (consumed_rate * CPSW_POLL_WEIGHT) / max_rate;
881 ch_budget = (CPSW_POLL_WEIGHT - ch_budget) /
882 (cpsw->tx_ch_num - rlim_ch_num);
883 bigest_rate = (max_rate - consumed_rate) /
884 (cpsw->tx_ch_num - rlim_ch_num);
885 }
886
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200887 /* split tx weight/budget */
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200888 budget = CPSW_POLL_WEIGHT;
889 for (i = 0; i < cpsw->tx_ch_num; i++) {
890 ch_rate = cpdma_chan_get_rate(txv[i].ch);
891 if (ch_rate) {
892 txv[i].budget = (ch_rate * CPSW_POLL_WEIGHT) / max_rate;
893 if (!txv[i].budget)
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200894 txv[i].budget++;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200895 if (ch_rate > bigest_rate) {
896 bigest_rate_ch = i;
897 bigest_rate = ch_rate;
898 }
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200899
900 ch_weight = (ch_rate * 100) / max_rate;
901 if (!ch_weight)
902 ch_weight++;
903 cpdma_chan_set_weight(cpsw->txv[i].ch, ch_weight);
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200904 } else {
905 txv[i].budget = ch_budget;
906 if (!bigest_rate_ch)
907 bigest_rate_ch = i;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200908 cpdma_chan_set_weight(cpsw->txv[i].ch, 0);
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200909 }
910
911 budget -= txv[i].budget;
912 }
913
914 if (budget)
915 txv[bigest_rate_ch].budget += budget;
916
917 /* split rx budget */
918 budget = CPSW_POLL_WEIGHT;
919 ch_budget = budget / cpsw->rx_ch_num;
920 for (i = 0; i < cpsw->rx_ch_num; i++) {
921 cpsw->rxv[i].budget = ch_budget;
922 budget -= ch_budget;
923 }
924
925 if (budget)
926 cpsw->rxv[0].budget += budget;
927}
928
Felipe Balbic03abd82015-01-16 10:11:12 -0600929static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000930{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300931 struct cpsw_common *cpsw = dev_id;
Felipe Balbi7ce67a32015-01-02 16:15:59 -0600932
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300933 writel(0, &cpsw->wr_regs->tx_en);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300934 cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_TX);
Felipe Balbic03abd82015-01-16 10:11:12 -0600935
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300936 if (cpsw->quirk_irq) {
937 disable_irq_nosync(cpsw->irqs_table[1]);
938 cpsw->tx_irq_disabled = true;
Mugunthan V N7da11602015-08-12 15:22:53 +0530939 }
940
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300941 napi_schedule(&cpsw->napi_tx);
Felipe Balbic03abd82015-01-16 10:11:12 -0600942 return IRQ_HANDLED;
943}
944
945static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id)
946{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300947 struct cpsw_common *cpsw = dev_id;
Felipe Balbic03abd82015-01-16 10:11:12 -0600948
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300949 cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_RX);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300950 writel(0, &cpsw->wr_regs->rx_en);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000951
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300952 if (cpsw->quirk_irq) {
953 disable_irq_nosync(cpsw->irqs_table[0]);
954 cpsw->rx_irq_disabled = true;
Mugunthan V N7da11602015-08-12 15:22:53 +0530955 }
956
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300957 napi_schedule(&cpsw->napi_rx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +0530958 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000959}
960
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +0300961static int cpsw_tx_mq_poll(struct napi_struct *napi_tx, int budget)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000962{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300963 u32 ch_map;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200964 int num_tx, cur_budget, ch;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300965 struct cpsw_common *cpsw = napi_to_cpsw(napi_tx);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200966 struct cpsw_vector *txv;
Mugunthan V N32a74322015-08-04 16:06:20 +0530967
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300968 /* process every unprocessed channel */
969 ch_map = cpdma_ctrl_txchs_state(cpsw->dma);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +0200970 for (ch = 0, num_tx = 0; ch_map; ch_map >>= 1, ch++) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300971 if (!(ch_map & 0x01))
972 continue;
973
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200974 txv = &cpsw->txv[ch];
975 if (unlikely(txv->budget > budget - num_tx))
976 cur_budget = budget - num_tx;
977 else
978 cur_budget = txv->budget;
979
980 num_tx += cpdma_chan_process(txv->ch, cur_budget);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +0200981 if (num_tx >= budget)
982 break;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300983 }
984
Mugunthan V N32a74322015-08-04 16:06:20 +0530985 if (num_tx < budget) {
986 napi_complete(napi_tx);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300987 writel(0xff, &cpsw->wr_regs->tx_en);
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +0300988 }
989
990 return num_tx;
991}
992
993static int cpsw_tx_poll(struct napi_struct *napi_tx, int budget)
994{
995 struct cpsw_common *cpsw = napi_to_cpsw(napi_tx);
996 int num_tx;
997
998 num_tx = cpdma_chan_process(cpsw->txv[0].ch, budget);
999 if (num_tx < budget) {
1000 napi_complete(napi_tx);
1001 writel(0xff, &cpsw->wr_regs->tx_en);
1002 if (cpsw->tx_irq_disabled) {
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001003 cpsw->tx_irq_disabled = false;
1004 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301005 }
Mugunthan V N32a74322015-08-04 16:06:20 +05301006 }
1007
Mugunthan V N32a74322015-08-04 16:06:20 +05301008 return num_tx;
1009}
1010
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03001011static int cpsw_rx_mq_poll(struct napi_struct *napi_rx, int budget)
Mugunthan V N32a74322015-08-04 16:06:20 +05301012{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001013 u32 ch_map;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001014 int num_rx, cur_budget, ch;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001015 struct cpsw_common *cpsw = napi_to_cpsw(napi_rx);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001016 struct cpsw_vector *rxv;
Mugunthan V N510a1e722013-02-17 22:19:20 +00001017
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001018 /* process every unprocessed channel */
1019 ch_map = cpdma_ctrl_rxchs_state(cpsw->dma);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +02001020 for (ch = 0, num_rx = 0; ch_map; ch_map >>= 1, ch++) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001021 if (!(ch_map & 0x01))
1022 continue;
1023
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001024 rxv = &cpsw->rxv[ch];
1025 if (unlikely(rxv->budget > budget - num_rx))
1026 cur_budget = budget - num_rx;
1027 else
1028 cur_budget = rxv->budget;
1029
1030 num_rx += cpdma_chan_process(rxv->ch, cur_budget);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +02001031 if (num_rx >= budget)
1032 break;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001033 }
1034
Mugunthan V N510a1e722013-02-17 22:19:20 +00001035 if (num_rx < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001036 napi_complete_done(napi_rx, num_rx);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001037 writel(0xff, &cpsw->wr_regs->rx_en);
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03001038 }
1039
1040 return num_rx;
1041}
1042
1043static int cpsw_rx_poll(struct napi_struct *napi_rx, int budget)
1044{
1045 struct cpsw_common *cpsw = napi_to_cpsw(napi_rx);
1046 int num_rx;
1047
1048 num_rx = cpdma_chan_process(cpsw->rxv[0].ch, budget);
1049 if (num_rx < budget) {
1050 napi_complete_done(napi_rx, num_rx);
1051 writel(0xff, &cpsw->wr_regs->rx_en);
1052 if (cpsw->rx_irq_disabled) {
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001053 cpsw->rx_irq_disabled = false;
1054 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301055 }
Mugunthan V N510a1e722013-02-17 22:19:20 +00001056 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001057
Mugunthan V Ndf828592012-03-18 20:17:54 +00001058 return num_rx;
1059}
1060
1061static inline void soft_reset(const char *module, void __iomem *reg)
1062{
1063 unsigned long timeout = jiffies + HZ;
1064
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001065 writel_relaxed(1, reg);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001066 do {
1067 cpu_relax();
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001068 } while ((readl_relaxed(reg) & 1) && time_after(timeout, jiffies));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001069
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001070 WARN(readl_relaxed(reg) & 1, "failed to soft-reset %s\n", module);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001071}
1072
Mugunthan V Ndf828592012-03-18 20:17:54 +00001073static void cpsw_set_slave_mac(struct cpsw_slave *slave,
1074 struct cpsw_priv *priv)
1075{
Richard Cochran9750a3a2012-10-29 08:45:15 +00001076 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
1077 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001078}
1079
1080static void _cpsw_adjust_link(struct cpsw_slave *slave,
1081 struct cpsw_priv *priv, bool *link)
1082{
1083 struct phy_device *phy = slave->phy;
1084 u32 mac_control = 0;
1085 u32 slave_port;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001086 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001087
1088 if (!phy)
1089 return;
1090
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001091 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001092
1093 if (phy->link) {
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001094 mac_control = cpsw->data.mac_control;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001095
1096 /* enable forwarding */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001097 cpsw_ale_control_set(cpsw->ale, slave_port,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001098 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1099
1100 if (phy->speed == 1000)
1101 mac_control |= BIT(7); /* GIGABITEN */
1102 if (phy->duplex)
1103 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +00001104
1105 /* set speed_in input in case RMII mode is used in 100Mbps */
1106 if (phy->speed == 100)
1107 mac_control |= BIT(15);
SZ Lin (林上智)f9db5062018-03-16 00:56:01 +08001108 /* in band mode only works in 10Mbps RGMII mode */
1109 else if ((phy->speed == 10) && phy_interface_is_rgmii(phy))
Mugunthan V Na81d8762013-12-13 18:42:55 +05301110 mac_control |= BIT(18); /* In Band mode */
Daniel Mack342b7b72012-09-27 09:19:34 +00001111
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301112 if (priv->rx_pause)
1113 mac_control |= BIT(3);
1114
1115 if (priv->tx_pause)
1116 mac_control |= BIT(4);
1117
Mugunthan V Ndf828592012-03-18 20:17:54 +00001118 *link = true;
1119 } else {
1120 mac_control = 0;
1121 /* disable forwarding */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001122 cpsw_ale_control_set(cpsw->ale, slave_port,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001123 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
1124 }
1125
1126 if (mac_control != slave->mac_control) {
1127 phy_print_status(phy);
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001128 writel_relaxed(mac_control, &slave->sliver->mac_control);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001129 }
1130
1131 slave->mac_control = mac_control;
1132}
1133
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001134static int cpsw_get_common_speed(struct cpsw_common *cpsw)
1135{
1136 int i, speed;
1137
1138 for (i = 0, speed = 0; i < cpsw->data.slaves; i++)
1139 if (cpsw->slaves[i].phy && cpsw->slaves[i].phy->link)
1140 speed += cpsw->slaves[i].phy->speed;
1141
1142 return speed;
1143}
1144
1145static int cpsw_need_resplit(struct cpsw_common *cpsw)
1146{
1147 int i, rlim_ch_num;
1148 int speed, ch_rate;
1149
1150 /* re-split resources only in case speed was changed */
1151 speed = cpsw_get_common_speed(cpsw);
1152 if (speed == cpsw->speed || !speed)
1153 return 0;
1154
1155 cpsw->speed = speed;
1156
1157 for (i = 0, rlim_ch_num = 0; i < cpsw->tx_ch_num; i++) {
1158 ch_rate = cpdma_chan_get_rate(cpsw->txv[i].ch);
1159 if (!ch_rate)
1160 break;
1161
1162 rlim_ch_num++;
1163 }
1164
1165 /* cases not dependent on speed */
1166 if (!rlim_ch_num || rlim_ch_num == cpsw->tx_ch_num)
1167 return 0;
1168
1169 return 1;
1170}
1171
Mugunthan V Ndf828592012-03-18 20:17:54 +00001172static void cpsw_adjust_link(struct net_device *ndev)
1173{
1174 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001175 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001176 bool link = false;
1177
1178 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
1179
1180 if (link) {
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001181 if (cpsw_need_resplit(cpsw))
1182 cpsw_split_res(ndev);
1183
Mugunthan V Ndf828592012-03-18 20:17:54 +00001184 netif_carrier_on(ndev);
1185 if (netif_running(ndev))
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001186 netif_tx_wake_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001187 } else {
1188 netif_carrier_off(ndev);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001189 netif_tx_stop_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001190 }
1191}
1192
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001193static int cpsw_get_coalesce(struct net_device *ndev,
1194 struct ethtool_coalesce *coal)
1195{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001196 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001197
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001198 coal->rx_coalesce_usecs = cpsw->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001199 return 0;
1200}
1201
1202static int cpsw_set_coalesce(struct net_device *ndev,
1203 struct ethtool_coalesce *coal)
1204{
1205 struct cpsw_priv *priv = netdev_priv(ndev);
1206 u32 int_ctrl;
1207 u32 num_interrupts = 0;
1208 u32 prescale = 0;
1209 u32 addnl_dvdr = 1;
1210 u32 coal_intvl = 0;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001211 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001212
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001213 coal_intvl = coal->rx_coalesce_usecs;
1214
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001215 int_ctrl = readl(&cpsw->wr_regs->int_control);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001216 prescale = cpsw->bus_freq_mhz * 4;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001217
Mugunthan V Na84bc2a2014-07-15 20:26:53 +05301218 if (!coal->rx_coalesce_usecs) {
1219 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
1220 goto update_return;
1221 }
1222
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001223 if (coal_intvl < CPSW_CMINTMIN_INTVL)
1224 coal_intvl = CPSW_CMINTMIN_INTVL;
1225
1226 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
1227 /* Interrupt pacer works with 4us Pulse, we can
1228 * throttle further by dilating the 4us pulse.
1229 */
1230 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
1231
1232 if (addnl_dvdr > 1) {
1233 prescale *= addnl_dvdr;
1234 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
1235 coal_intvl = (CPSW_CMINTMAX_INTVL
1236 * addnl_dvdr);
1237 } else {
1238 addnl_dvdr = 1;
1239 coal_intvl = CPSW_CMINTMAX_INTVL;
1240 }
1241 }
1242
1243 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001244 writel(num_interrupts, &cpsw->wr_regs->rx_imax);
1245 writel(num_interrupts, &cpsw->wr_regs->tx_imax);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001246
1247 int_ctrl |= CPSW_INTPACEEN;
1248 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
1249 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
Mugunthan V Na84bc2a2014-07-15 20:26:53 +05301250
1251update_return:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001252 writel(int_ctrl, &cpsw->wr_regs->int_control);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001253
1254 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001255 cpsw->coal_intvl = coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001256
1257 return 0;
1258}
1259
Mugunthan V Nd9718542013-07-23 15:38:17 +05301260static int cpsw_get_sset_count(struct net_device *ndev, int sset)
1261{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001262 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1263
Mugunthan V Nd9718542013-07-23 15:38:17 +05301264 switch (sset) {
1265 case ETH_SS_STATS:
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001266 return (CPSW_STATS_COMMON_LEN +
1267 (cpsw->rx_ch_num + cpsw->tx_ch_num) *
1268 CPSW_STATS_CH_LEN);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301269 default:
1270 return -EOPNOTSUPP;
1271 }
1272}
1273
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001274static void cpsw_add_ch_strings(u8 **p, int ch_num, int rx_dir)
1275{
1276 int ch_stats_len;
1277 int line;
1278 int i;
1279
1280 ch_stats_len = CPSW_STATS_CH_LEN * ch_num;
1281 for (i = 0; i < ch_stats_len; i++) {
1282 line = i % CPSW_STATS_CH_LEN;
1283 snprintf(*p, ETH_GSTRING_LEN,
Florian Fainellibf2ce3f2018-05-21 11:45:53 -07001284 "%s DMA chan %ld: %s", rx_dir ? "Rx" : "Tx",
1285 (long)(i / CPSW_STATS_CH_LEN),
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001286 cpsw_gstrings_ch_stats[line].stat_string);
1287 *p += ETH_GSTRING_LEN;
1288 }
1289}
1290
Mugunthan V Nd9718542013-07-23 15:38:17 +05301291static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
1292{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001293 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301294 u8 *p = data;
1295 int i;
1296
1297 switch (stringset) {
1298 case ETH_SS_STATS:
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001299 for (i = 0; i < CPSW_STATS_COMMON_LEN; i++) {
Mugunthan V Nd9718542013-07-23 15:38:17 +05301300 memcpy(p, cpsw_gstrings_stats[i].stat_string,
1301 ETH_GSTRING_LEN);
1302 p += ETH_GSTRING_LEN;
1303 }
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001304
1305 cpsw_add_ch_strings(&p, cpsw->rx_ch_num, 1);
1306 cpsw_add_ch_strings(&p, cpsw->tx_ch_num, 0);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301307 break;
1308 }
1309}
1310
1311static void cpsw_get_ethtool_stats(struct net_device *ndev,
1312 struct ethtool_stats *stats, u64 *data)
1313{
Mugunthan V Nd9718542013-07-23 15:38:17 +05301314 u8 *p;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001315 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001316 struct cpdma_chan_stats ch_stats;
1317 int i, l, ch;
Mugunthan V Nd9718542013-07-23 15:38:17 +05301318
1319 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001320 for (l = 0; l < CPSW_STATS_COMMON_LEN; l++)
1321 data[l] = readl(cpsw->hw_stats +
1322 cpsw_gstrings_stats[l].stat_offset);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301323
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001324 for (ch = 0; ch < cpsw->rx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001325 cpdma_chan_get_stats(cpsw->rxv[ch].ch, &ch_stats);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001326 for (i = 0; i < CPSW_STATS_CH_LEN; i++, l++) {
1327 p = (u8 *)&ch_stats +
1328 cpsw_gstrings_ch_stats[i].stat_offset;
1329 data[l] = *(u32 *)p;
1330 }
1331 }
Mugunthan V Nd9718542013-07-23 15:38:17 +05301332
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001333 for (ch = 0; ch < cpsw->tx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001334 cpdma_chan_get_stats(cpsw->txv[ch].ch, &ch_stats);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001335 for (i = 0; i < CPSW_STATS_CH_LEN; i++, l++) {
1336 p = (u8 *)&ch_stats +
1337 cpsw_gstrings_ch_stats[i].stat_offset;
1338 data[l] = *(u32 *)p;
Mugunthan V Nd9718542013-07-23 15:38:17 +05301339 }
1340 }
1341}
1342
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001343static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv,
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001344 struct sk_buff *skb,
1345 struct cpdma_chan *txch)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001346{
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001347 struct cpsw_common *cpsw = priv->cpsw;
1348
Ivan Khoronzhuk98fdd852017-06-27 16:58:51 +03001349 skb_tx_timestamp(skb);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001350 return cpdma_chan_submit(txch, skb, skb->data, skb->len,
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001351 priv->emac_port + cpsw->data.dual_emac);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001352}
1353
1354static inline void cpsw_add_dual_emac_def_ale_entries(
1355 struct cpsw_priv *priv, struct cpsw_slave *slave,
1356 u32 slave_port)
1357{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001358 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001359 u32 port_mask = 1 << slave_port | ALE_PORT_HOST;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001360
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001361 if (cpsw->version == CPSW_VERSION_1)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001362 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1363 else
1364 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001365 cpsw_ale_add_vlan(cpsw->ale, slave->port_vlan, port_mask,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001366 port_mask, port_mask, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001367 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001368 port_mask, ALE_VLAN, slave->port_vlan, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001369 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
1370 HOST_PORT_NUM, ALE_VLAN |
1371 ALE_SECURE, slave->port_vlan);
Grygorii Strashko5e5add12018-05-01 12:41:22 -05001372 cpsw_ale_control_set(cpsw->ale, slave_port,
1373 ALE_PORT_DROP_UNKNOWN_VLAN, 1);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001374}
1375
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001376static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001377{
1378 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001379
1380 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1381 soft_reset(name, &slave->sliver->soft_reset);
1382}
1383
1384static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1385{
Mugunthan V Ndf828592012-03-18 20:17:54 +00001386 u32 slave_port;
Sekhar Nori30c57f02017-04-03 17:34:28 +05301387 struct phy_device *phy;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001388 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001389
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001390 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001391
1392 /* setup priority mapping */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001393 writel_relaxed(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001394
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001395 switch (cpsw->version) {
Richard Cochran9750a3a2012-10-29 08:45:15 +00001396 case CPSW_VERSION_1:
1397 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -05001398 /* Increase RX FIFO size to 5 for supporting fullduplex
1399 * flow control mode
1400 */
1401 slave_write(slave,
1402 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
1403 CPSW_MAX_BLKS_RX, CPSW1_MAX_BLKS);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001404 break;
1405 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05301406 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05301407 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +00001408 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -05001409 /* Increase RX FIFO size to 5 for supporting fullduplex
1410 * flow control mode
1411 */
1412 slave_write(slave,
1413 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
1414 CPSW_MAX_BLKS_RX, CPSW2_MAX_BLKS);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001415 break;
1416 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001417
1418 /* setup max packet size, and mac address */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001419 writel_relaxed(cpsw->rx_packet_max, &slave->sliver->rx_maxlen);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001420 cpsw_set_slave_mac(slave, priv);
1421
1422 slave->mac_control = 0; /* no link yet */
1423
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001424 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001425
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001426 if (cpsw->data.dual_emac)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001427 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1428 else
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001429 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001430 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001431
David Rivshind733f7542016-04-27 21:32:31 -04001432 if (slave->data->phy_node) {
Sekhar Nori30c57f02017-04-03 17:34:28 +05301433 phy = of_phy_connect(priv->ndev, slave->data->phy_node,
Heiko Schocher9e42f712015-10-17 06:04:35 +02001434 &cpsw_adjust_link, 0, slave->data->phy_if);
Sekhar Nori30c57f02017-04-03 17:34:28 +05301435 if (!phy) {
Rob Herringf7ce9102017-07-18 16:43:19 -05001436 dev_err(priv->dev, "phy \"%pOF\" not found on slave %d\n",
1437 slave->data->phy_node,
David Rivshind733f7542016-04-27 21:32:31 -04001438 slave->slave_num);
1439 return;
1440 }
1441 } else {
Sekhar Nori30c57f02017-04-03 17:34:28 +05301442 phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001443 &cpsw_adjust_link, slave->data->phy_if);
Sekhar Nori30c57f02017-04-03 17:34:28 +05301444 if (IS_ERR(phy)) {
David Rivshind733f7542016-04-27 21:32:31 -04001445 dev_err(priv->dev,
1446 "phy \"%s\" not found on slave %d, err %ld\n",
1447 slave->data->phy_id, slave->slave_num,
Sekhar Nori30c57f02017-04-03 17:34:28 +05301448 PTR_ERR(phy));
David Rivshind733f7542016-04-27 21:32:31 -04001449 return;
1450 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001451 }
David Rivshind733f7542016-04-27 21:32:31 -04001452
Sekhar Nori30c57f02017-04-03 17:34:28 +05301453 slave->phy = phy;
1454
David Rivshind733f7542016-04-27 21:32:31 -04001455 phy_attached_info(slave->phy);
1456
1457 phy_start(slave->phy);
1458
1459 /* Configure GMII_SEL register */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001460 cpsw_phy_sel(cpsw->dev, slave->phy->interface, slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001461}
1462
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001463static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1464{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001465 struct cpsw_common *cpsw = priv->cpsw;
1466 const int vlan = cpsw->data.default_vlan;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001467 u32 reg;
1468 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001469 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001470
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001471 reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001472 CPSW2_PORT_VLAN;
1473
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001474 writel(vlan, &cpsw->host_port_regs->port_vlan);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001475
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001476 for (i = 0; i < cpsw->data.slaves; i++)
1477 slave_write(cpsw->slaves + i, vlan, reg);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001478
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001479 if (priv->ndev->flags & IFF_ALLMULTI)
1480 unreg_mcast_mask = ALE_ALL_PORTS;
1481 else
1482 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1483
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001484 cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001485 ALE_ALL_PORTS, ALE_ALL_PORTS,
1486 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001487}
1488
Mugunthan V Ndf828592012-03-18 20:17:54 +00001489static void cpsw_init_host_port(struct cpsw_priv *priv)
1490{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001491 u32 fifo_mode;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001492 u32 control_reg;
1493 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001494
Mugunthan V Ndf828592012-03-18 20:17:54 +00001495 /* soft reset the controller and initialize ale */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001496 soft_reset("cpsw", &cpsw->regs->soft_reset);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001497 cpsw_ale_start(cpsw->ale);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001498
1499 /* switch to vlan unaware mode */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001500 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_VLAN_AWARE,
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001501 CPSW_ALE_VLAN_AWARE);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001502 control_reg = readl(&cpsw->regs->control);
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -05001503 control_reg |= CPSW_VLAN_AWARE | CPSW_RX_VLAN_ENCAP;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001504 writel(control_reg, &cpsw->regs->control);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001505 fifo_mode = (cpsw->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001506 CPSW_FIFO_NORMAL_MODE;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001507 writel(fifo_mode, &cpsw->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001508
1509 /* setup host port priority mapping */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001510 writel_relaxed(CPDMA_TX_PRIORITY_MAP,
1511 &cpsw->host_port_regs->cpdma_tx_pri_map);
1512 writel_relaxed(0, &cpsw->host_port_regs->cpdma_rx_chan_map);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001513
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001514 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001515 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1516
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001517 if (!cpsw->data.dual_emac) {
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001518 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001519 0, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001520 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001521 ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001522 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001523}
1524
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001525static int cpsw_fill_rx_channels(struct cpsw_priv *priv)
1526{
1527 struct cpsw_common *cpsw = priv->cpsw;
1528 struct sk_buff *skb;
1529 int ch_buf_num;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001530 int ch, i, ret;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001531
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001532 for (ch = 0; ch < cpsw->rx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001533 ch_buf_num = cpdma_chan_get_rx_buf_num(cpsw->rxv[ch].ch);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001534 for (i = 0; i < ch_buf_num; i++) {
1535 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1536 cpsw->rx_packet_max,
1537 GFP_KERNEL);
1538 if (!skb) {
1539 cpsw_err(priv, ifup, "cannot allocate skb\n");
1540 return -ENOMEM;
1541 }
1542
1543 skb_set_queue_mapping(skb, ch);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001544 ret = cpdma_chan_submit(cpsw->rxv[ch].ch, skb,
1545 skb->data, skb_tailroom(skb),
1546 0);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001547 if (ret < 0) {
1548 cpsw_err(priv, ifup,
1549 "cannot submit skb to channel %d rx, error %d\n",
1550 ch, ret);
1551 kfree_skb(skb);
1552 return ret;
1553 }
1554 kmemleak_not_leak(skb);
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001555 }
1556
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001557 cpsw_info(priv, ifup, "ch %d rx, submitted %d descriptors\n",
1558 ch, ch_buf_num);
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001559 }
1560
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001561 return 0;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001562}
1563
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001564static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_common *cpsw)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001565{
Schuyler Patton3995d262014-03-03 16:19:06 +05301566 u32 slave_port;
1567
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001568 slave_port = cpsw_get_slave_port(slave->slave_num);
Schuyler Patton3995d262014-03-03 16:19:06 +05301569
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001570 if (!slave->phy)
1571 return;
1572 phy_stop(slave->phy);
1573 phy_disconnect(slave->phy);
1574 slave->phy = NULL;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001575 cpsw_ale_control_set(cpsw->ale, slave_port,
Schuyler Patton3995d262014-03-03 16:19:06 +05301576 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Grygorii Strashko1f95ba02016-06-24 21:23:41 +03001577 soft_reset_slave(slave);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001578}
1579
Mugunthan V Ndf828592012-03-18 20:17:54 +00001580static int cpsw_ndo_open(struct net_device *ndev)
1581{
1582 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001583 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001584 int ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001585 u32 reg;
1586
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001587 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001588 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001589 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001590 return ret;
1591 }
Grygorii Strashko3fa88c52016-04-19 21:09:49 +03001592
Mugunthan V Ndf828592012-03-18 20:17:54 +00001593 netif_carrier_off(ndev);
1594
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001595 /* Notify the stack of the actual queue counts. */
1596 ret = netif_set_real_num_tx_queues(ndev, cpsw->tx_ch_num);
1597 if (ret) {
1598 dev_err(priv->dev, "cannot set real number of tx queues\n");
1599 goto err_cleanup;
1600 }
1601
1602 ret = netif_set_real_num_rx_queues(ndev, cpsw->rx_ch_num);
1603 if (ret) {
1604 dev_err(priv->dev, "cannot set real number of rx queues\n");
1605 goto err_cleanup;
1606 }
1607
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001608 reg = cpsw->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001609
1610 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1611 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1612 CPSW_RTL_VERSION(reg));
1613
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001614 /* Initialize host and slave ports */
1615 if (!cpsw->usage_count)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001616 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001617 for_each_slave(priv, cpsw_slave_open, priv);
1618
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001619 /* Add default VLAN */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001620 if (!cpsw->data.dual_emac)
Mugunthan V Ne6afea02014-06-18 17:21:48 +05301621 cpsw_add_default_vlan(priv);
1622 else
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001623 cpsw_ale_add_vlan(cpsw->ale, cpsw->data.default_vlan,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001624 ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001625
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001626 /* initialize shared resources for every ndev */
1627 if (!cpsw->usage_count) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001628 /* disable priority elevation */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001629 writel_relaxed(0, &cpsw->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001630
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001631 /* enable statistics collection only on all ports */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001632 writel_relaxed(0x7, &cpsw->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001633
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301634 /* Enable internal fifo flow control */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001635 writel(0x7, &cpsw->regs->flow_control);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301636
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001637 napi_enable(&cpsw->napi_rx);
1638 napi_enable(&cpsw->napi_tx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301639
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001640 if (cpsw->tx_irq_disabled) {
1641 cpsw->tx_irq_disabled = false;
1642 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301643 }
1644
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001645 if (cpsw->rx_irq_disabled) {
1646 cpsw->rx_irq_disabled = false;
1647 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301648 }
1649
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001650 ret = cpsw_fill_rx_channels(priv);
1651 if (ret < 0)
1652 goto err_cleanup;
Mugunthan V Nf280e892013-12-11 22:09:05 -06001653
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06001654 if (cpts_register(cpsw->cpts))
Mugunthan V Nf280e892013-12-11 22:09:05 -06001655 dev_err(priv->dev, "error registering cpts device\n");
1656
Mugunthan V Ndf828592012-03-18 20:17:54 +00001657 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001658
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001659 /* Enable Interrupt pacing if configured */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001660 if (cpsw->coal_intvl != 0) {
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001661 struct ethtool_coalesce coal;
1662
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001663 coal.rx_coalesce_usecs = cpsw->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001664 cpsw_set_coalesce(ndev, &coal);
1665 }
1666
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001667 cpdma_ctlr_start(cpsw->dma);
1668 cpsw_intr_enable(cpsw);
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001669 cpsw->usage_count++;
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301670
Mugunthan V Ndf828592012-03-18 20:17:54 +00001671 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001672
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001673err_cleanup:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001674 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001675 for_each_slave(priv, cpsw_slave_stop, cpsw);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001676 pm_runtime_put_sync(cpsw->dev);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001677 netif_carrier_off(priv->ndev);
1678 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001679}
1680
1681static int cpsw_ndo_stop(struct net_device *ndev)
1682{
1683 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001684 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001685
1686 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001687 netif_tx_stop_all_queues(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001688 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001689
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001690 if (cpsw->usage_count <= 1) {
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001691 napi_disable(&cpsw->napi_rx);
1692 napi_disable(&cpsw->napi_tx);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001693 cpts_unregister(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001694 cpsw_intr_disable(cpsw);
1695 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001696 cpsw_ale_stop(cpsw->ale);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001697 }
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001698 for_each_slave(priv, cpsw_slave_stop, cpsw);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001699
1700 if (cpsw_need_resplit(cpsw))
1701 cpsw_split_res(ndev);
1702
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001703 cpsw->usage_count--;
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001704 pm_runtime_put_sync(cpsw->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001705 return 0;
1706}
1707
1708static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1709 struct net_device *ndev)
1710{
1711 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001712 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhukf44f8412017-06-27 16:58:52 +03001713 struct cpts *cpts = cpsw->cpts;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001714 struct netdev_queue *txq;
1715 struct cpdma_chan *txch;
1716 int ret, q_idx;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001717
Mugunthan V Ndf828592012-03-18 20:17:54 +00001718 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1719 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001720 ndev->stats.tx_dropped++;
Ivan Khoronzhuk1bf96052017-02-11 03:49:57 +02001721 return NET_XMIT_DROP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001722 }
1723
Mugunthan V N9232b162013-02-11 09:52:19 +00001724 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
Ivan Khoronzhukf44f8412017-06-27 16:58:52 +03001725 cpts_is_tx_enabled(cpts) && cpts_can_timestamp(cpts, skb))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001726 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1727
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001728 q_idx = skb_get_queue_mapping(skb);
1729 if (q_idx >= cpsw->tx_ch_num)
1730 q_idx = q_idx % cpsw->tx_ch_num;
1731
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001732 txch = cpsw->txv[q_idx].ch;
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001733 txq = netdev_get_tx_queue(ndev, q_idx);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001734 ret = cpsw_tx_packet_submit(priv, skb, txch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001735 if (unlikely(ret != 0)) {
1736 cpsw_err(priv, tx_err, "desc submit failed\n");
1737 goto fail;
1738 }
1739
Mugunthan V Nfae50822013-01-17 06:31:34 +00001740 /* If there is no more tx desc left free then we need to
1741 * tell the kernel to stop sending us tx frames.
1742 */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001743 if (unlikely(!cpdma_check_free_tx_desc(txch))) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001744 netif_tx_stop_queue(txq);
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001745
1746 /* Barrier, so that stop_queue visible to other cpus */
1747 smp_mb__after_atomic();
1748
1749 if (cpdma_check_free_tx_desc(txch))
1750 netif_tx_wake_queue(txq);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001751 }
Mugunthan V Nfae50822013-01-17 06:31:34 +00001752
Mugunthan V Ndf828592012-03-18 20:17:54 +00001753 return NETDEV_TX_OK;
1754fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001755 ndev->stats.tx_dropped++;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001756 netif_tx_stop_queue(txq);
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001757
1758 /* Barrier, so that stop_queue visible to other cpus */
1759 smp_mb__after_atomic();
1760
1761 if (cpdma_check_free_tx_desc(txch))
1762 netif_tx_wake_queue(txq);
1763
Mugunthan V Ndf828592012-03-18 20:17:54 +00001764 return NETDEV_TX_BUSY;
1765}
1766
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001767#if IS_ENABLED(CONFIG_TI_CPTS)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001768
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001769static void cpsw_hwtstamp_v1(struct cpsw_common *cpsw)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001770{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001771 struct cpsw_slave *slave = &cpsw->slaves[cpsw->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001772 u32 ts_en, seq_id;
1773
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001774 if (!cpts_is_tx_enabled(cpsw->cpts) &&
1775 !cpts_is_rx_enabled(cpsw->cpts)) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001776 slave_write(slave, 0, CPSW1_TS_CTL);
1777 return;
1778 }
1779
1780 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1781 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1782
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001783 if (cpts_is_tx_enabled(cpsw->cpts))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001784 ts_en |= CPSW_V1_TS_TX_EN;
1785
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001786 if (cpts_is_rx_enabled(cpsw->cpts))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001787 ts_en |= CPSW_V1_TS_RX_EN;
1788
1789 slave_write(slave, ts_en, CPSW1_TS_CTL);
1790 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1791}
1792
1793static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1794{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001795 struct cpsw_slave *slave;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001796 struct cpsw_common *cpsw = priv->cpsw;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001797 u32 ctrl, mtype;
1798
Ivan Khoronzhukcb7d78d02016-12-10 14:23:46 +02001799 slave = &cpsw->slaves[cpsw_slave_index(cpsw, priv)];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001800
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001801 ctrl = slave_read(slave, CPSW2_CONTROL);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001802 switch (cpsw->version) {
George Cherian09c55372014-05-02 12:02:02 +05301803 case CPSW_VERSION_2:
1804 ctrl &= ~CTRL_V2_ALL_TS_MASK;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001805
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001806 if (cpts_is_tx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301807 ctrl |= CTRL_V2_TX_TS_BITS;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001808
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001809 if (cpts_is_rx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301810 ctrl |= CTRL_V2_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001811 break;
George Cherian09c55372014-05-02 12:02:02 +05301812 case CPSW_VERSION_3:
1813 default:
1814 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1815
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001816 if (cpts_is_tx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301817 ctrl |= CTRL_V3_TX_TS_BITS;
1818
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001819 if (cpts_is_rx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301820 ctrl |= CTRL_V3_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001821 break;
George Cherian09c55372014-05-02 12:02:02 +05301822 }
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001823
1824 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1825
1826 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1827 slave_write(slave, ctrl, CPSW2_CONTROL);
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001828 writel_relaxed(ETH_P_1588, &cpsw->regs->ts_ltype);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001829}
1830
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001831static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001832{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001833 struct cpsw_priv *priv = netdev_priv(dev);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001834 struct hwtstamp_config cfg;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001835 struct cpsw_common *cpsw = priv->cpsw;
1836 struct cpts *cpts = cpsw->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001837
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001838 if (cpsw->version != CPSW_VERSION_1 &&
1839 cpsw->version != CPSW_VERSION_2 &&
1840 cpsw->version != CPSW_VERSION_3)
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001841 return -EOPNOTSUPP;
1842
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001843 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1844 return -EFAULT;
1845
1846 /* reserved for future extensions */
1847 if (cfg.flags)
1848 return -EINVAL;
1849
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001850 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001851 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001852
1853 switch (cfg.rx_filter) {
1854 case HWTSTAMP_FILTER_NONE:
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001855 cpts_rx_enable(cpts, 0);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001856 break;
1857 case HWTSTAMP_FILTER_ALL:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001858 case HWTSTAMP_FILTER_NTP_ALL:
1859 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001860 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1861 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1862 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001863 cpts_rx_enable(cpts, HWTSTAMP_FILTER_PTP_V1_L4_EVENT);
1864 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
1865 break;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001866 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1867 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1868 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1869 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1870 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1871 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1872 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1873 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1874 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001875 cpts_rx_enable(cpts, HWTSTAMP_FILTER_PTP_V2_EVENT);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001876 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1877 break;
1878 default:
1879 return -ERANGE;
1880 }
1881
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001882 cpts_tx_enable(cpts, cfg.tx_type == HWTSTAMP_TX_ON);
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001883
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001884 switch (cpsw->version) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001885 case CPSW_VERSION_1:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001886 cpsw_hwtstamp_v1(cpsw);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001887 break;
1888 case CPSW_VERSION_2:
George Cherianf7d403c2014-05-02 12:02:01 +05301889 case CPSW_VERSION_3:
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001890 cpsw_hwtstamp_v2(priv);
1891 break;
1892 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001893 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001894 }
1895
1896 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1897}
1898
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001899static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1900{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001901 struct cpsw_common *cpsw = ndev_to_cpsw(dev);
1902 struct cpts *cpts = cpsw->cpts;
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001903 struct hwtstamp_config cfg;
1904
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001905 if (cpsw->version != CPSW_VERSION_1 &&
1906 cpsw->version != CPSW_VERSION_2 &&
1907 cpsw->version != CPSW_VERSION_3)
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001908 return -EOPNOTSUPP;
1909
1910 cfg.flags = 0;
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001911 cfg.tx_type = cpts_is_tx_enabled(cpts) ?
1912 HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1913 cfg.rx_filter = (cpts_is_rx_enabled(cpts) ?
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001914 cpts->rx_enable : HWTSTAMP_FILTER_NONE);
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001915
1916 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1917}
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001918#else
1919static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1920{
1921 return -EOPNOTSUPP;
1922}
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001923
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001924static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
1925{
1926 return -EOPNOTSUPP;
1927}
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001928#endif /*CONFIG_TI_CPTS*/
1929
1930static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1931{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001932 struct cpsw_priv *priv = netdev_priv(dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001933 struct cpsw_common *cpsw = priv->cpsw;
1934 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001935
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001936 if (!netif_running(dev))
1937 return -EINVAL;
1938
Mugunthan V N11f2c982013-03-11 23:16:38 +00001939 switch (cmd) {
Mugunthan V N11f2c982013-03-11 23:16:38 +00001940 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001941 return cpsw_hwtstamp_set(dev, req);
1942 case SIOCGHWTSTAMP:
1943 return cpsw_hwtstamp_get(dev, req);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001944 }
1945
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001946 if (!cpsw->slaves[slave_no].phy)
Stefan Sørensenc1b59942014-02-16 14:54:25 +01001947 return -EOPNOTSUPP;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001948 return phy_mii_ioctl(cpsw->slaves[slave_no].phy, req, cmd);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001949}
1950
Mugunthan V Ndf828592012-03-18 20:17:54 +00001951static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1952{
1953 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001954 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001955 int ch;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001956
1957 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001958 ndev->stats.tx_errors++;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001959 cpsw_intr_disable(cpsw);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001960 for (ch = 0; ch < cpsw->tx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001961 cpdma_chan_stop(cpsw->txv[ch].ch);
1962 cpdma_chan_start(cpsw->txv[ch].ch);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001963 }
1964
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001965 cpsw_intr_enable(cpsw);
Grygorii Strashko75514b62017-03-31 18:41:23 -05001966 netif_trans_update(ndev);
1967 netif_tx_wake_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001968}
1969
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301970static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1971{
1972 struct cpsw_priv *priv = netdev_priv(ndev);
1973 struct sockaddr *addr = (struct sockaddr *)p;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001974 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301975 int flags = 0;
1976 u16 vid = 0;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001977 int ret;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301978
1979 if (!is_valid_ether_addr(addr->sa_data))
1980 return -EADDRNOTAVAIL;
1981
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001982 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001983 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001984 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001985 return ret;
1986 }
1987
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001988 if (cpsw->data.dual_emac) {
1989 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301990 flags = ALE_VLAN;
1991 }
1992
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001993 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301994 flags, vid);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001995 cpsw_ale_add_ucast(cpsw->ale, addr->sa_data, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301996 flags, vid);
1997
1998 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1999 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
2000 for_each_slave(priv, cpsw_set_slave_mac, priv);
2001
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002002 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002003
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05302004 return 0;
2005}
2006
Mugunthan V Ndf828592012-03-18 20:17:54 +00002007#ifdef CONFIG_NET_POLL_CONTROLLER
2008static void cpsw_ndo_poll_controller(struct net_device *ndev)
2009{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03002010 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002011
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03002012 cpsw_intr_disable(cpsw);
2013 cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw);
2014 cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw);
2015 cpsw_intr_enable(cpsw);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002016}
2017#endif
2018
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002019static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
2020 unsigned short vid)
2021{
2022 int ret;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05302023 int unreg_mcast_mask = 0;
2024 u32 port_mask;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002025 struct cpsw_common *cpsw = priv->cpsw;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04002026
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002027 if (cpsw->data.dual_emac) {
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05302028 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002029
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05302030 if (priv->ndev->flags & IFF_ALLMULTI)
2031 unreg_mcast_mask = port_mask;
2032 } else {
2033 port_mask = ALE_ALL_PORTS;
2034
2035 if (priv->ndev->flags & IFF_ALLMULTI)
2036 unreg_mcast_mask = ALE_ALL_PORTS;
2037 else
2038 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
2039 }
2040
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002041 ret = cpsw_ale_add_vlan(cpsw->ale, vid, port_mask, 0, port_mask,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03002042 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002043 if (ret != 0)
2044 return ret;
2045
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002046 ret = cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03002047 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002048 if (ret != 0)
2049 goto clean_vid;
2050
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002051 ret = cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05302052 port_mask, ALE_VLAN, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002053 if (ret != 0)
2054 goto clean_vlan_ucast;
2055 return 0;
2056
2057clean_vlan_ucast:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002058 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03002059 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002060clean_vid:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002061 cpsw_ale_del_vlan(cpsw->ale, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002062 return ret;
2063}
2064
2065static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00002066 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002067{
2068 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002069 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002070 int ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002071
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002072 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002073 return 0;
2074
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002075 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002076 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002077 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002078 return ret;
2079 }
2080
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002081 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05302082 /* In dual EMAC, reserved VLAN id should not be used for
2083 * creating VLAN interfaces as this can break the dual
2084 * EMAC port separation
2085 */
2086 int i;
2087
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002088 for (i = 0; i < cpsw->data.slaves; i++) {
2089 if (vid == cpsw->slaves[i].port_vlan)
Mugunthan V N02a54162015-01-22 15:19:22 +05302090 return -EINVAL;
2091 }
2092 }
2093
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002094 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002095 ret = cpsw_add_vlan_ale_entry(priv, vid);
2096
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002097 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002098 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002099}
2100
2101static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00002102 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002103{
2104 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002105 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002106 int ret;
2107
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002108 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002109 return 0;
2110
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002111 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002112 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002113 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002114 return ret;
2115 }
2116
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002117 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05302118 int i;
2119
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002120 for (i = 0; i < cpsw->data.slaves; i++) {
2121 if (vid == cpsw->slaves[i].port_vlan)
Mugunthan V N02a54162015-01-22 15:19:22 +05302122 return -EINVAL;
2123 }
2124 }
2125
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002126 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002127 ret = cpsw_ale_del_vlan(cpsw->ale, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002128 if (ret != 0)
2129 return ret;
2130
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002131 ret = cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03002132 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002133 if (ret != 0)
2134 return ret;
2135
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002136 ret = cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast,
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002137 0, ALE_VLAN, vid);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002138 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002139 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002140}
2141
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002142static int cpsw_ndo_set_tx_maxrate(struct net_device *ndev, int queue, u32 rate)
2143{
2144 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002145 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002146 struct cpsw_slave *slave;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002147 u32 min_rate;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002148 u32 ch_rate;
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002149 int i, ret;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002150
2151 ch_rate = netdev_get_tx_queue(ndev, queue)->tx_maxrate;
2152 if (ch_rate == rate)
2153 return 0;
2154
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002155 ch_rate = rate * 1000;
2156 min_rate = cpdma_chan_get_min_rate(cpsw->dma);
2157 if ((ch_rate < min_rate && ch_rate)) {
2158 dev_err(priv->dev, "The channel rate cannot be less than %dMbps",
2159 min_rate);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002160 return -EINVAL;
2161 }
2162
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02002163 if (rate > cpsw->speed) {
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002164 dev_err(priv->dev, "The channel rate cannot be more than 2Gbps");
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002165 return -EINVAL;
2166 }
2167
2168 ret = pm_runtime_get_sync(cpsw->dev);
2169 if (ret < 0) {
2170 pm_runtime_put_noidle(cpsw->dev);
2171 return ret;
2172 }
2173
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002174 ret = cpdma_chan_set_rate(cpsw->txv[queue].ch, ch_rate);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002175 pm_runtime_put(cpsw->dev);
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002176
2177 if (ret)
2178 return ret;
2179
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002180 /* update rates for slaves tx queues */
2181 for (i = 0; i < cpsw->data.slaves; i++) {
2182 slave = &cpsw->slaves[i];
2183 if (!slave->ndev)
2184 continue;
2185
2186 netdev_get_tx_queue(slave->ndev, queue)->tx_maxrate = rate;
2187 }
2188
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002189 cpsw_split_res(ndev);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002190 return ret;
2191}
2192
Mugunthan V Ndf828592012-03-18 20:17:54 +00002193static const struct net_device_ops cpsw_netdev_ops = {
2194 .ndo_open = cpsw_ndo_open,
2195 .ndo_stop = cpsw_ndo_stop,
2196 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05302197 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002198 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002199 .ndo_validate_addr = eth_validate_addr,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002200 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00002201 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002202 .ndo_set_tx_maxrate = cpsw_ndo_set_tx_maxrate,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002203#ifdef CONFIG_NET_POLL_CONTROLLER
2204 .ndo_poll_controller = cpsw_ndo_poll_controller,
2205#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002206 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
2207 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002208};
2209
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302210static int cpsw_get_regs_len(struct net_device *ndev)
2211{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002212 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302213
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002214 return cpsw->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302215}
2216
2217static void cpsw_get_regs(struct net_device *ndev,
2218 struct ethtool_regs *regs, void *p)
2219{
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302220 u32 *reg = p;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002221 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302222
2223 /* update CPSW IP version */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002224 regs->version = cpsw->version;
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302225
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002226 cpsw_ale_dump(cpsw->ale, reg);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302227}
2228
Mugunthan V Ndf828592012-03-18 20:17:54 +00002229static void cpsw_get_drvinfo(struct net_device *ndev,
2230 struct ethtool_drvinfo *info)
2231{
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002232 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002233 struct platform_device *pdev = to_platform_device(cpsw->dev);
Jiri Pirko7826d432013-01-06 00:44:26 +00002234
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302235 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00002236 strlcpy(info->version, "1.0", sizeof(info->version));
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002237 strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00002238}
2239
2240static u32 cpsw_get_msglevel(struct net_device *ndev)
2241{
2242 struct cpsw_priv *priv = netdev_priv(ndev);
2243 return priv->msg_enable;
2244}
2245
2246static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
2247{
2248 struct cpsw_priv *priv = netdev_priv(ndev);
2249 priv->msg_enable = value;
2250}
2251
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002252#if IS_ENABLED(CONFIG_TI_CPTS)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002253static int cpsw_get_ts_info(struct net_device *ndev,
2254 struct ethtool_ts_info *info)
2255{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002256 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002257
2258 info->so_timestamping =
2259 SOF_TIMESTAMPING_TX_HARDWARE |
2260 SOF_TIMESTAMPING_TX_SOFTWARE |
2261 SOF_TIMESTAMPING_RX_HARDWARE |
2262 SOF_TIMESTAMPING_RX_SOFTWARE |
2263 SOF_TIMESTAMPING_SOFTWARE |
2264 SOF_TIMESTAMPING_RAW_HARDWARE;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002265 info->phc_index = cpsw->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002266 info->tx_types =
2267 (1 << HWTSTAMP_TX_OFF) |
2268 (1 << HWTSTAMP_TX_ON);
2269 info->rx_filters =
2270 (1 << HWTSTAMP_FILTER_NONE) |
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05002271 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002272 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002273 return 0;
2274}
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002275#else
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002276static int cpsw_get_ts_info(struct net_device *ndev,
2277 struct ethtool_ts_info *info)
2278{
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002279 info->so_timestamping =
2280 SOF_TIMESTAMPING_TX_SOFTWARE |
2281 SOF_TIMESTAMPING_RX_SOFTWARE |
2282 SOF_TIMESTAMPING_SOFTWARE;
2283 info->phc_index = -1;
2284 info->tx_types = 0;
2285 info->rx_filters = 0;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002286 return 0;
2287}
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002288#endif
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002289
Philippe Reynes24798762016-10-08 17:46:15 +02002290static int cpsw_get_link_ksettings(struct net_device *ndev,
2291 struct ethtool_link_ksettings *ecmd)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002292{
2293 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002294 struct cpsw_common *cpsw = priv->cpsw;
2295 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002296
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03002297 if (!cpsw->slaves[slave_no].phy)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002298 return -EOPNOTSUPP;
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03002299
2300 phy_ethtool_ksettings_get(cpsw->slaves[slave_no].phy, ecmd);
2301 return 0;
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002302}
2303
Philippe Reynes24798762016-10-08 17:46:15 +02002304static int cpsw_set_link_ksettings(struct net_device *ndev,
2305 const struct ethtool_link_ksettings *ecmd)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002306{
2307 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002308 struct cpsw_common *cpsw = priv->cpsw;
2309 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002310
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002311 if (cpsw->slaves[slave_no].phy)
Philippe Reynes24798762016-10-08 17:46:15 +02002312 return phy_ethtool_ksettings_set(cpsw->slaves[slave_no].phy,
2313 ecmd);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002314 else
2315 return -EOPNOTSUPP;
2316}
2317
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002318static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2319{
2320 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002321 struct cpsw_common *cpsw = priv->cpsw;
2322 int slave_no = cpsw_slave_index(cpsw, priv);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002323
2324 wol->supported = 0;
2325 wol->wolopts = 0;
2326
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002327 if (cpsw->slaves[slave_no].phy)
2328 phy_ethtool_get_wol(cpsw->slaves[slave_no].phy, wol);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002329}
2330
2331static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2332{
2333 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002334 struct cpsw_common *cpsw = priv->cpsw;
2335 int slave_no = cpsw_slave_index(cpsw, priv);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002336
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002337 if (cpsw->slaves[slave_no].phy)
2338 return phy_ethtool_set_wol(cpsw->slaves[slave_no].phy, wol);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002339 else
2340 return -EOPNOTSUPP;
2341}
2342
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302343static void cpsw_get_pauseparam(struct net_device *ndev,
2344 struct ethtool_pauseparam *pause)
2345{
2346 struct cpsw_priv *priv = netdev_priv(ndev);
2347
2348 pause->autoneg = AUTONEG_DISABLE;
2349 pause->rx_pause = priv->rx_pause ? true : false;
2350 pause->tx_pause = priv->tx_pause ? true : false;
2351}
2352
2353static int cpsw_set_pauseparam(struct net_device *ndev,
2354 struct ethtool_pauseparam *pause)
2355{
2356 struct cpsw_priv *priv = netdev_priv(ndev);
2357 bool link;
2358
2359 priv->rx_pause = pause->rx_pause ? true : false;
2360 priv->tx_pause = pause->tx_pause ? true : false;
2361
2362 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302363 return 0;
2364}
2365
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002366static int cpsw_ethtool_op_begin(struct net_device *ndev)
2367{
2368 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002369 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002370 int ret;
2371
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002372 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002373 if (ret < 0) {
2374 cpsw_err(priv, drv, "ethtool begin failed %d\n", ret);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002375 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002376 }
2377
2378 return ret;
2379}
2380
2381static void cpsw_ethtool_op_complete(struct net_device *ndev)
2382{
2383 struct cpsw_priv *priv = netdev_priv(ndev);
2384 int ret;
2385
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002386 ret = pm_runtime_put(priv->cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002387 if (ret < 0)
2388 cpsw_err(priv, drv, "ethtool complete failed %d\n", ret);
2389}
2390
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002391static void cpsw_get_channels(struct net_device *ndev,
2392 struct ethtool_channels *ch)
2393{
2394 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
2395
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03002396 ch->max_rx = cpsw->quirk_irq ? 1 : CPSW_MAX_QUEUES;
2397 ch->max_tx = cpsw->quirk_irq ? 1 : CPSW_MAX_QUEUES;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002398 ch->max_combined = 0;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002399 ch->max_other = 0;
2400 ch->other_count = 0;
2401 ch->rx_count = cpsw->rx_ch_num;
2402 ch->tx_count = cpsw->tx_ch_num;
2403 ch->combined_count = 0;
2404}
2405
2406static int cpsw_check_ch_settings(struct cpsw_common *cpsw,
2407 struct ethtool_channels *ch)
2408{
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03002409 if (cpsw->quirk_irq) {
2410 dev_err(cpsw->dev, "Maximum one tx/rx queue is allowed");
2411 return -EOPNOTSUPP;
2412 }
2413
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002414 if (ch->combined_count)
2415 return -EINVAL;
2416
2417 /* verify we have at least one channel in each direction */
2418 if (!ch->rx_count || !ch->tx_count)
2419 return -EINVAL;
2420
2421 if (ch->rx_count > cpsw->data.channels ||
2422 ch->tx_count > cpsw->data.channels)
2423 return -EINVAL;
2424
2425 return 0;
2426}
2427
2428static int cpsw_update_channels_res(struct cpsw_priv *priv, int ch_num, int rx)
2429{
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002430 struct cpsw_common *cpsw = priv->cpsw;
2431 void (*handler)(void *, int, int);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002432 struct netdev_queue *queue;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002433 struct cpsw_vector *vec;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002434 int ret, *ch;
2435
2436 if (rx) {
2437 ch = &cpsw->rx_ch_num;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002438 vec = cpsw->rxv;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002439 handler = cpsw_rx_handler;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002440 } else {
2441 ch = &cpsw->tx_ch_num;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002442 vec = cpsw->txv;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002443 handler = cpsw_tx_handler;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002444 }
2445
2446 while (*ch < ch_num) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002447 vec[*ch].ch = cpdma_chan_create(cpsw->dma, *ch, handler, rx);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002448 queue = netdev_get_tx_queue(priv->ndev, *ch);
2449 queue->tx_maxrate = 0;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002450
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002451 if (IS_ERR(vec[*ch].ch))
2452 return PTR_ERR(vec[*ch].ch);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002453
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002454 if (!vec[*ch].ch)
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002455 return -EINVAL;
2456
2457 cpsw_info(priv, ifup, "created new %d %s channel\n", *ch,
2458 (rx ? "rx" : "tx"));
2459 (*ch)++;
2460 }
2461
2462 while (*ch > ch_num) {
2463 (*ch)--;
2464
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002465 ret = cpdma_chan_destroy(vec[*ch].ch);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002466 if (ret)
2467 return ret;
2468
2469 cpsw_info(priv, ifup, "destroyed %d %s channel\n", *ch,
2470 (rx ? "rx" : "tx"));
2471 }
2472
2473 return 0;
2474}
2475
2476static int cpsw_update_channels(struct cpsw_priv *priv,
2477 struct ethtool_channels *ch)
2478{
2479 int ret;
2480
2481 ret = cpsw_update_channels_res(priv, ch->rx_count, 1);
2482 if (ret)
2483 return ret;
2484
2485 ret = cpsw_update_channels_res(priv, ch->tx_count, 0);
2486 if (ret)
2487 return ret;
2488
2489 return 0;
2490}
2491
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002492static void cpsw_suspend_data_pass(struct net_device *ndev)
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002493{
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002494 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002495 struct cpsw_slave *slave;
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002496 int i;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002497
2498 /* Disable NAPI scheduling */
2499 cpsw_intr_disable(cpsw);
2500
2501 /* Stop all transmit queues for every network device.
2502 * Disable re-using rx descriptors with dormant_on.
2503 */
2504 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) {
2505 if (!(slave->ndev && netif_running(slave->ndev)))
2506 continue;
2507
2508 netif_tx_stop_all_queues(slave->ndev);
2509 netif_dormant_on(slave->ndev);
2510 }
2511
2512 /* Handle rest of tx packets and stop cpdma channels */
2513 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002514}
2515
2516static int cpsw_resume_data_pass(struct net_device *ndev)
2517{
2518 struct cpsw_priv *priv = netdev_priv(ndev);
2519 struct cpsw_common *cpsw = priv->cpsw;
2520 struct cpsw_slave *slave;
2521 int i, ret;
2522
2523 /* Allow rx packets handling */
2524 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++)
2525 if (slave->ndev && netif_running(slave->ndev))
2526 netif_dormant_off(slave->ndev);
2527
2528 /* After this receive is started */
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002529 if (cpsw->usage_count) {
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002530 ret = cpsw_fill_rx_channels(priv);
2531 if (ret)
2532 return ret;
2533
2534 cpdma_ctlr_start(cpsw->dma);
2535 cpsw_intr_enable(cpsw);
2536 }
2537
2538 /* Resume transmit for every affected interface */
2539 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++)
2540 if (slave->ndev && netif_running(slave->ndev))
2541 netif_tx_start_all_queues(slave->ndev);
2542
2543 return 0;
2544}
2545
2546static int cpsw_set_channels(struct net_device *ndev,
2547 struct ethtool_channels *chs)
2548{
2549 struct cpsw_priv *priv = netdev_priv(ndev);
2550 struct cpsw_common *cpsw = priv->cpsw;
2551 struct cpsw_slave *slave;
2552 int i, ret;
2553
2554 ret = cpsw_check_ch_settings(cpsw, chs);
2555 if (ret < 0)
2556 return ret;
2557
2558 cpsw_suspend_data_pass(ndev);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002559 ret = cpsw_update_channels(priv, chs);
2560 if (ret)
2561 goto err;
2562
2563 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) {
2564 if (!(slave->ndev && netif_running(slave->ndev)))
2565 continue;
2566
2567 /* Inform stack about new count of queues */
2568 ret = netif_set_real_num_tx_queues(slave->ndev,
2569 cpsw->tx_ch_num);
2570 if (ret) {
2571 dev_err(priv->dev, "cannot set real number of tx queues\n");
2572 goto err;
2573 }
2574
2575 ret = netif_set_real_num_rx_queues(slave->ndev,
2576 cpsw->rx_ch_num);
2577 if (ret) {
2578 dev_err(priv->dev, "cannot set real number of rx queues\n");
2579 goto err;
2580 }
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002581 }
2582
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002583 if (cpsw->usage_count)
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002584 cpsw_split_res(ndev);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002585
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002586 ret = cpsw_resume_data_pass(ndev);
2587 if (!ret)
2588 return 0;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002589err:
2590 dev_err(priv->dev, "cannot update channels number, closing device\n");
2591 dev_close(ndev);
2592 return ret;
2593}
2594
Yegor Yefremova0909942016-11-28 09:41:33 +01002595static int cpsw_get_eee(struct net_device *ndev, struct ethtool_eee *edata)
2596{
2597 struct cpsw_priv *priv = netdev_priv(ndev);
2598 struct cpsw_common *cpsw = priv->cpsw;
2599 int slave_no = cpsw_slave_index(cpsw, priv);
2600
2601 if (cpsw->slaves[slave_no].phy)
2602 return phy_ethtool_get_eee(cpsw->slaves[slave_no].phy, edata);
2603 else
2604 return -EOPNOTSUPP;
2605}
2606
2607static int cpsw_set_eee(struct net_device *ndev, struct ethtool_eee *edata)
2608{
2609 struct cpsw_priv *priv = netdev_priv(ndev);
2610 struct cpsw_common *cpsw = priv->cpsw;
2611 int slave_no = cpsw_slave_index(cpsw, priv);
2612
2613 if (cpsw->slaves[slave_no].phy)
2614 return phy_ethtool_set_eee(cpsw->slaves[slave_no].phy, edata);
2615 else
2616 return -EOPNOTSUPP;
2617}
2618
Yegor Yefremov6bb10c22016-11-28 10:47:52 +01002619static int cpsw_nway_reset(struct net_device *ndev)
2620{
2621 struct cpsw_priv *priv = netdev_priv(ndev);
2622 struct cpsw_common *cpsw = priv->cpsw;
2623 int slave_no = cpsw_slave_index(cpsw, priv);
2624
2625 if (cpsw->slaves[slave_no].phy)
2626 return genphy_restart_aneg(cpsw->slaves[slave_no].phy);
2627 else
2628 return -EOPNOTSUPP;
2629}
2630
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002631static void cpsw_get_ringparam(struct net_device *ndev,
2632 struct ethtool_ringparam *ering)
2633{
2634 struct cpsw_priv *priv = netdev_priv(ndev);
2635 struct cpsw_common *cpsw = priv->cpsw;
2636
2637 /* not supported */
2638 ering->tx_max_pending = 0;
2639 ering->tx_pending = cpdma_get_num_tx_descs(cpsw->dma);
Ivan Khoronzhukf89d21b2017-01-08 22:12:27 +02002640 ering->rx_max_pending = descs_pool_size - CPSW_MAX_QUEUES;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002641 ering->rx_pending = cpdma_get_num_rx_descs(cpsw->dma);
2642}
2643
2644static int cpsw_set_ringparam(struct net_device *ndev,
2645 struct ethtool_ringparam *ering)
2646{
2647 struct cpsw_priv *priv = netdev_priv(ndev);
2648 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002649 int ret;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002650
2651 /* ignore ering->tx_pending - only rx_pending adjustment is supported */
2652
2653 if (ering->rx_mini_pending || ering->rx_jumbo_pending ||
Ivan Khoronzhukf89d21b2017-01-08 22:12:27 +02002654 ering->rx_pending < CPSW_MAX_QUEUES ||
2655 ering->rx_pending > (descs_pool_size - CPSW_MAX_QUEUES))
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002656 return -EINVAL;
2657
2658 if (ering->rx_pending == cpdma_get_num_rx_descs(cpsw->dma))
2659 return 0;
2660
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002661 cpsw_suspend_data_pass(ndev);
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002662
2663 cpdma_set_num_rx_descs(cpsw->dma, ering->rx_pending);
2664
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002665 if (cpsw->usage_count)
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002666 cpdma_chan_split_pool(cpsw->dma);
2667
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002668 ret = cpsw_resume_data_pass(ndev);
2669 if (!ret)
2670 return 0;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002671
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002672 dev_err(&ndev->dev, "cannot set ring params, closing device\n");
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002673 dev_close(ndev);
2674 return ret;
2675}
2676
Mugunthan V Ndf828592012-03-18 20:17:54 +00002677static const struct ethtool_ops cpsw_ethtool_ops = {
2678 .get_drvinfo = cpsw_get_drvinfo,
2679 .get_msglevel = cpsw_get_msglevel,
2680 .set_msglevel = cpsw_set_msglevel,
2681 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002682 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002683 .get_coalesce = cpsw_get_coalesce,
2684 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05302685 .get_sset_count = cpsw_get_sset_count,
2686 .get_strings = cpsw_get_strings,
2687 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302688 .get_pauseparam = cpsw_get_pauseparam,
2689 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002690 .get_wol = cpsw_get_wol,
2691 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302692 .get_regs_len = cpsw_get_regs_len,
2693 .get_regs = cpsw_get_regs,
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002694 .begin = cpsw_ethtool_op_begin,
2695 .complete = cpsw_ethtool_op_complete,
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002696 .get_channels = cpsw_get_channels,
2697 .set_channels = cpsw_set_channels,
Philippe Reynes24798762016-10-08 17:46:15 +02002698 .get_link_ksettings = cpsw_get_link_ksettings,
2699 .set_link_ksettings = cpsw_set_link_ksettings,
Yegor Yefremova0909942016-11-28 09:41:33 +01002700 .get_eee = cpsw_get_eee,
2701 .set_eee = cpsw_set_eee,
Yegor Yefremov6bb10c22016-11-28 10:47:52 +01002702 .nway_reset = cpsw_nway_reset,
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002703 .get_ringparam = cpsw_get_ringparam,
2704 .set_ringparam = cpsw_set_ringparam,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002705};
2706
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002707static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_common *cpsw,
Richard Cochran549985e2012-11-14 09:07:56 +00002708 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002709{
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002710 void __iomem *regs = cpsw->regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002711 int slave_num = slave->slave_num;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002712 struct cpsw_slave_data *data = cpsw->data.slave_data + slave_num;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002713
2714 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00002715 slave->regs = regs + slave_reg_ofs;
2716 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002717 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002718}
2719
David Rivshin552165b2016-04-27 21:25:25 -04002720static int cpsw_probe_dt(struct cpsw_platform_data *data,
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002721 struct platform_device *pdev)
2722{
2723 struct device_node *node = pdev->dev.of_node;
2724 struct device_node *slave_node;
2725 int i = 0, ret;
2726 u32 prop;
2727
2728 if (!node)
2729 return -EINVAL;
2730
2731 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302732 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002733 return -EINVAL;
2734 }
2735 data->slaves = prop;
2736
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002737 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302738 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302739 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002740 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002741 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002742
Kees Cooka86854d2018-06-12 14:07:58 -07002743 data->slave_data = devm_kcalloc(&pdev->dev,
2744 data->slaves,
2745 sizeof(struct cpsw_slave_data),
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302746 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00002747 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302748 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002749
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002750 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302751 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302752 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002753 }
2754 data->channels = prop;
2755
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002756 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302757 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302758 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002759 }
2760 data->ale_entries = prop;
2761
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002762 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302763 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302764 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002765 }
2766 data->bd_ram_size = prop;
2767
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002768 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302769 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302770 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002771 }
2772 data->mac_control = prop;
2773
Markus Pargmann281abd92013-10-04 14:44:40 +02002774 if (of_property_read_bool(node, "dual_emac"))
2775 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002776
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002777 /*
2778 * Populate all the child nodes here...
2779 */
2780 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2781 /* We do not want to force this, as in some cases may not have child */
2782 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05302783 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002784
Ben Hutchings8658aaf2016-06-21 01:16:31 +01002785 for_each_available_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00002786 struct cpsw_slave_data *slave_data = data->slave_data + i;
2787 const void *mac_addr = NULL;
Richard Cochran549985e2012-11-14 09:07:56 +00002788 int lenp;
2789 const __be32 *parp;
Richard Cochran549985e2012-11-14 09:07:56 +00002790
Markus Pargmannf468b102013-10-04 14:44:39 +02002791 /* This is no slave child node, continue */
2792 if (strcmp(slave_node->name, "slave"))
2793 continue;
2794
David Rivshin552165b2016-04-27 21:25:25 -04002795 slave_data->phy_node = of_parse_phandle(slave_node,
2796 "phy-handle", 0);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002797 parp = of_get_property(slave_node, "phy_id", &lenp);
David Rivshinae092b52016-04-27 21:38:26 -04002798 if (slave_data->phy_node) {
2799 dev_dbg(&pdev->dev,
Rob Herringf7ce9102017-07-18 16:43:19 -05002800 "slave[%d] using phy-handle=\"%pOF\"\n",
2801 i, slave_data->phy_node);
David Rivshinae092b52016-04-27 21:38:26 -04002802 } else if (of_phy_is_fixed_link(slave_node)) {
David Rivshindfc0a6d2015-12-16 23:02:11 -05002803 /* In the case of a fixed PHY, the DT node associated
2804 * to the PHY is the Ethernet MAC DT node.
2805 */
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002806 ret = of_phy_register_fixed_link(slave_node);
Johan Hovold23a09872016-11-17 17:40:04 +01002807 if (ret) {
2808 if (ret != -EPROBE_DEFER)
2809 dev_err(&pdev->dev, "failed to register fixed-link phy: %d\n", ret);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002810 return ret;
Johan Hovold23a09872016-11-17 17:40:04 +01002811 }
David Rivshin06cd6d62016-04-27 21:45:45 -04002812 slave_data->phy_node = of_node_get(slave_node);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002813 } else if (parp) {
2814 u32 phyid;
2815 struct device_node *mdio_node;
2816 struct platform_device *mdio;
2817
2818 if (lenp != (sizeof(__be32) * 2)) {
2819 dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
2820 goto no_phy_slave;
2821 }
2822 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2823 phyid = be32_to_cpup(parp+1);
2824 mdio = of_find_device_by_node(mdio_node);
2825 of_node_put(mdio_node);
2826 if (!mdio) {
2827 dev_err(&pdev->dev, "Missing mdio platform device\n");
2828 return -EINVAL;
2829 }
2830 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2831 PHY_ID_FMT, mdio->name, phyid);
Johan Hovold86e1d5a2016-11-17 17:39:59 +01002832 put_device(&mdio->dev);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002833 } else {
David Rivshinae092b52016-04-27 21:38:26 -04002834 dev_err(&pdev->dev,
2835 "No slave[%d] phy_id, phy-handle, or fixed-link property\n",
2836 i);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002837 goto no_phy_slave;
2838 }
Mugunthan V N47276fc2014-10-24 18:51:33 +05302839 slave_data->phy_if = of_get_phy_mode(slave_node);
2840 if (slave_data->phy_if < 0) {
2841 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2842 i);
2843 return slave_data->phy_if;
2844 }
2845
2846no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00002847 mac_addr = of_get_mac_address(slave_node);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002848 if (mac_addr) {
Richard Cochran549985e2012-11-14 09:07:56 +00002849 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002850 } else {
Mugunthan V Nb6745f62015-09-21 15:56:50 +05302851 ret = ti_cm_get_macid(&pdev->dev, i,
2852 slave_data->mac_addr);
2853 if (ret)
2854 return ret;
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002855 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002856 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00002857 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002858 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302859 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002860 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05302861 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2862 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002863 } else {
2864 slave_data->dual_emac_res_vlan = prop;
2865 }
2866 }
2867
Richard Cochran549985e2012-11-14 09:07:56 +00002868 i++;
Mugunthan V N3a27bfa2013-12-02 12:53:39 +05302869 if (i == data->slaves)
2870 break;
Richard Cochran549985e2012-11-14 09:07:56 +00002871 }
2872
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002873 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002874}
2875
Johan Hovolda4e32b02016-11-17 17:40:00 +01002876static void cpsw_remove_dt(struct platform_device *pdev)
2877{
Johan Hovold8cbcc462016-11-17 17:40:01 +01002878 struct net_device *ndev = platform_get_drvdata(pdev);
2879 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
2880 struct cpsw_platform_data *data = &cpsw->data;
2881 struct device_node *node = pdev->dev.of_node;
2882 struct device_node *slave_node;
2883 int i = 0;
2884
2885 for_each_available_child_of_node(node, slave_node) {
2886 struct cpsw_slave_data *slave_data = &data->slave_data[i];
2887
2888 if (strcmp(slave_node->name, "slave"))
2889 continue;
2890
Johan Hovold3f650472016-11-28 19:24:55 +01002891 if (of_phy_is_fixed_link(slave_node))
2892 of_phy_deregister_fixed_link(slave_node);
Johan Hovold8cbcc462016-11-17 17:40:01 +01002893
2894 of_node_put(slave_data->phy_node);
2895
2896 i++;
2897 if (i == data->slaves)
2898 break;
2899 }
2900
Johan Hovolda4e32b02016-11-17 17:40:00 +01002901 of_platform_depopulate(&pdev->dev);
2902}
2903
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002904static int cpsw_probe_dual_emac(struct cpsw_priv *priv)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002905{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002906 struct cpsw_common *cpsw = priv->cpsw;
2907 struct cpsw_platform_data *data = &cpsw->data;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002908 struct net_device *ndev;
2909 struct cpsw_priv *priv_sl2;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03002910 int ret = 0;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002911
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03002912 ndev = alloc_etherdev_mq(sizeof(struct cpsw_priv), CPSW_MAX_QUEUES);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002913 if (!ndev) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002914 dev_err(cpsw->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002915 return -ENOMEM;
2916 }
2917
2918 priv_sl2 = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002919 priv_sl2->cpsw = cpsw;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002920 priv_sl2->ndev = ndev;
2921 priv_sl2->dev = &ndev->dev;
2922 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002923
2924 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2925 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2926 ETH_ALEN);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002927 dev_info(cpsw->dev, "cpsw: Detected MACID = %pM\n",
2928 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002929 } else {
Joe Perches6c1f0a12018-06-22 10:51:00 -07002930 eth_random_addr(priv_sl2->mac_addr);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002931 dev_info(cpsw->dev, "cpsw: Random MACID = %pM\n",
2932 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002933 }
2934 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2935
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002936 priv_sl2->emac_port = 1;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002937 cpsw->slaves[1].ndev = ndev;
Patrick McHardyf6469682013-04-19 02:04:27 +00002938 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002939
2940 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002941 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002942
2943 /* register the network device */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002944 SET_NETDEV_DEV(ndev, cpsw->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002945 ret = register_netdev(ndev);
2946 if (ret) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002947 dev_err(cpsw->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002948 free_netdev(ndev);
2949 ret = -ENODEV;
2950 }
2951
2952 return ret;
2953}
2954
Mugunthan V N7da11602015-08-12 15:22:53 +05302955static const struct of_device_id cpsw_of_mtable[] = {
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03002956 { .compatible = "ti,cpsw"},
2957 { .compatible = "ti,am335x-cpsw"},
2958 { .compatible = "ti,am4372-cpsw"},
2959 { .compatible = "ti,dra7-cpsw"},
Mugunthan V N7da11602015-08-12 15:22:53 +05302960 { /* sentinel */ },
2961};
2962MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
2963
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03002964static const struct soc_device_attribute cpsw_soc_devices[] = {
2965 { .family = "AM33xx", .revision = "ES1.0"},
2966 { /* sentinel */ }
2967};
2968
Bill Pemberton663e12e2012-12-03 09:23:45 -05002969static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002970{
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002971 struct clk *clk;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002972 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002973 struct net_device *ndev;
2974 struct cpsw_priv *priv;
2975 struct cpdma_params dma_params;
2976 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302977 void __iomem *ss_regs;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06002978 void __iomem *cpts_regs;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302979 struct resource *res, *ss_res;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302980 struct gpio_descs *mode;
Richard Cochran549985e2012-11-14 09:07:56 +00002981 u32 slave_offset, sliver_offset, slave_size;
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03002982 const struct soc_device_attribute *soc;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002983 struct cpsw_common *cpsw;
Felipe Balbi5087b912015-01-16 10:11:11 -06002984 int ret = 0, i;
2985 int irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002986
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002987 cpsw = devm_kzalloc(&pdev->dev, sizeof(struct cpsw_common), GFP_KERNEL);
Johan Hovold3420ea82016-11-17 17:40:03 +01002988 if (!cpsw)
2989 return -ENOMEM;
2990
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002991 cpsw->dev = &pdev->dev;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002992
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03002993 ndev = alloc_etherdev_mq(sizeof(struct cpsw_priv), CPSW_MAX_QUEUES);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002994 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302995 dev_err(&pdev->dev, "error allocating net_device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002996 return -ENOMEM;
2997 }
2998
2999 platform_set_drvdata(pdev, ndev);
3000 priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03003001 priv->cpsw = cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003002 priv->ndev = ndev;
3003 priv->dev = &ndev->dev;
3004 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003005 cpsw->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003006
Mugunthan V N1d147cc2015-09-07 15:16:44 +05303007 mode = devm_gpiod_get_array_optional(&pdev->dev, "mode", GPIOD_OUT_LOW);
3008 if (IS_ERR(mode)) {
3009 ret = PTR_ERR(mode);
3010 dev_err(&pdev->dev, "gpio request failed, ret %d\n", ret);
3011 goto clean_ndev_ret;
3012 }
3013
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00003014 /*
3015 * This may be required here for child devices.
3016 */
3017 pm_runtime_enable(&pdev->dev);
3018
Mugunthan V N739683b2013-06-06 23:45:14 +05303019 /* Select default pin state */
3020 pinctrl_pm_select_default_state(&pdev->dev);
3021
Johan Hovolda4e32b02016-11-17 17:40:00 +01003022 /* Need to enable clocks with runtime PM api to access module
3023 * registers
3024 */
3025 ret = pm_runtime_get_sync(&pdev->dev);
3026 if (ret < 0) {
3027 pm_runtime_put_noidle(&pdev->dev);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303028 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00003029 }
Johan Hovolda4e32b02016-11-17 17:40:00 +01003030
Johan Hovold23a09872016-11-17 17:40:04 +01003031 ret = cpsw_probe_dt(&cpsw->data, pdev);
3032 if (ret)
Johan Hovolda4e32b02016-11-17 17:40:00 +01003033 goto clean_dt_ret;
Johan Hovold23a09872016-11-17 17:40:04 +01003034
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003035 data = &cpsw->data;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03003036 cpsw->rx_ch_num = 1;
3037 cpsw->tx_ch_num = 1;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00003038
Mugunthan V Ndf828592012-03-18 20:17:54 +00003039 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
3040 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05303041 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003042 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00003043 eth_random_addr(priv->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05303044 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003045 }
3046
3047 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
3048
Kees Cooka86854d2018-06-12 14:07:58 -07003049 cpsw->slaves = devm_kcalloc(&pdev->dev,
3050 data->slaves, sizeof(struct cpsw_slave),
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303051 GFP_KERNEL);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003052 if (!cpsw->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303053 ret = -ENOMEM;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003054 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003055 }
3056 for (i = 0; i < data->slaves; i++)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003057 cpsw->slaves[i].slave_num = i;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003058
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003059 cpsw->slaves[0].ndev = ndev;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00003060 priv->emac_port = 0;
3061
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03003062 clk = devm_clk_get(&pdev->dev, "fck");
3063 if (IS_ERR(clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303064 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00003065 ret = -ENODEV;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003066 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003067 }
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003068 cpsw->bus_freq_mhz = clk_get_rate(clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003069
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303070 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3071 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
3072 if (IS_ERR(ss_regs)) {
3073 ret = PTR_ERR(ss_regs);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003074 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003075 }
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003076 cpsw->regs = ss_regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003077
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003078 cpsw->version = readl(&cpsw->regs->id_ver);
Mugunthan V Nf280e892013-12-11 22:09:05 -06003079
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303080 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003081 cpsw->wr_regs = devm_ioremap_resource(&pdev->dev, res);
3082 if (IS_ERR(cpsw->wr_regs)) {
3083 ret = PTR_ERR(cpsw->wr_regs);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003084 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003085 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00003086
3087 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00003088 memset(&ale_params, 0, sizeof(ale_params));
3089
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003090 switch (cpsw->version) {
Richard Cochran549985e2012-11-14 09:07:56 +00003091 case CPSW_VERSION_1:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003092 cpsw->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003093 cpts_regs = ss_regs + CPSW1_CPTS_OFFSET;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003094 cpsw->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00003095 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
3096 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
3097 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
3098 slave_offset = CPSW1_SLAVE_OFFSET;
3099 slave_size = CPSW1_SLAVE_SIZE;
3100 sliver_offset = CPSW1_SLIVER_OFFSET;
3101 dma_params.desc_mem_phys = 0;
3102 break;
3103 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05303104 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05303105 case CPSW_VERSION_4:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003106 cpsw->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003107 cpts_regs = ss_regs + CPSW2_CPTS_OFFSET;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003108 cpsw->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00003109 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
3110 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
3111 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
3112 slave_offset = CPSW2_SLAVE_OFFSET;
3113 slave_size = CPSW2_SLAVE_SIZE;
3114 sliver_offset = CPSW2_SLIVER_OFFSET;
3115 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303116 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00003117 break;
3118 default:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003119 dev_err(priv->dev, "unknown version 0x%08x\n", cpsw->version);
Richard Cochran549985e2012-11-14 09:07:56 +00003120 ret = -ENODEV;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003121 goto clean_dt_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00003122 }
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003123 for (i = 0; i < cpsw->data.slaves; i++) {
3124 struct cpsw_slave *slave = &cpsw->slaves[i];
3125
3126 cpsw_slave_init(slave, cpsw, slave_offset, sliver_offset);
Richard Cochran549985e2012-11-14 09:07:56 +00003127 slave_offset += slave_size;
3128 sliver_offset += SLIVER_SIZE;
3129 }
3130
Mugunthan V Ndf828592012-03-18 20:17:54 +00003131 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00003132 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
3133 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
3134 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
3135 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
3136 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003137
3138 dma_params.num_chan = data->channels;
3139 dma_params.has_soft_reset = true;
3140 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
3141 dma_params.desc_mem_size = data->bd_ram_size;
3142 dma_params.desc_align = 16;
3143 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00003144 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02003145 dma_params.bus_freq_mhz = cpsw->bus_freq_mhz;
Grygorii Strashko90225bf2017-01-06 14:07:33 -06003146 dma_params.descs_pool_size = descs_pool_size;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003147
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003148 cpsw->dma = cpdma_ctlr_create(&dma_params);
3149 if (!cpsw->dma) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00003150 dev_err(priv->dev, "error initializing dma\n");
3151 ret = -ENOMEM;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003152 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003153 }
3154
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03003155 soc = soc_device_match(cpsw_soc_devices);
3156 if (soc)
3157 cpsw->quirk_irq = 1;
3158
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02003159 cpsw->txv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_tx_handler, 0);
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02003160 if (IS_ERR(cpsw->txv[0].ch)) {
3161 dev_err(priv->dev, "error initializing tx dma channel\n");
3162 ret = PTR_ERR(cpsw->txv[0].ch);
3163 goto clean_dma_ret;
3164 }
3165
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02003166 cpsw->rxv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_rx_handler, 1);
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02003167 if (IS_ERR(cpsw->rxv[0].ch)) {
3168 dev_err(priv->dev, "error initializing rx dma channel\n");
3169 ret = PTR_ERR(cpsw->rxv[0].ch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003170 goto clean_dma_ret;
3171 }
3172
Ivan Khoronzhuk9fe9aa02017-02-15 19:45:02 +02003173 ale_params.dev = &pdev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003174 ale_params.ale_ageout = ale_ageout;
3175 ale_params.ale_entries = data->ale_entries;
Grygorii Strashkoc6395f12017-11-30 18:21:14 -06003176 ale_params.ale_ports = CPSW_ALE_PORTS_NUM;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003177
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003178 cpsw->ale = cpsw_ale_create(&ale_params);
3179 if (!cpsw->ale) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00003180 dev_err(priv->dev, "error initializing ale engine\n");
3181 ret = -ENODEV;
3182 goto clean_dma_ret;
3183 }
3184
Grygorii Strashko4a88fb92016-12-06 18:00:42 -06003185 cpsw->cpts = cpts_create(cpsw->dev, cpts_regs, cpsw->dev->of_node);
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003186 if (IS_ERR(cpsw->cpts)) {
3187 ret = PTR_ERR(cpsw->cpts);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003188 goto clean_dma_ret;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003189 }
3190
Felipe Balbic03abd82015-01-16 10:11:12 -06003191 ndev->irq = platform_get_irq(pdev, 1);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003192 if (ndev->irq < 0) {
3193 dev_err(priv->dev, "error getting irq resource\n");
Julia Lawallc1e33342015-12-26 20:12:13 +01003194 ret = ndev->irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003195 goto clean_dma_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003196 }
3197
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -05003198 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX;
Keerthy070f9c62017-07-20 16:59:52 +05303199
3200 ndev->netdev_ops = &cpsw_netdev_ops;
3201 ndev->ethtool_ops = &cpsw_ethtool_ops;
Ivan Khoronzhuk9611d6d2018-05-17 01:21:45 +03003202 netif_napi_add(ndev, &cpsw->napi_rx,
3203 cpsw->quirk_irq ? cpsw_rx_poll : cpsw_rx_mq_poll,
3204 CPSW_POLL_WEIGHT);
3205 netif_tx_napi_add(ndev, &cpsw->napi_tx,
3206 cpsw->quirk_irq ? cpsw_tx_poll : cpsw_tx_mq_poll,
3207 CPSW_POLL_WEIGHT);
Keerthy070f9c62017-07-20 16:59:52 +05303208 cpsw_split_res(ndev);
3209
3210 /* register the network device */
3211 SET_NETDEV_DEV(ndev, &pdev->dev);
3212 ret = register_netdev(ndev);
3213 if (ret) {
3214 dev_err(priv->dev, "error registering net device\n");
3215 ret = -ENODEV;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003216 goto clean_dma_ret;
Keerthy070f9c62017-07-20 16:59:52 +05303217 }
3218
3219 if (cpsw->data.dual_emac) {
3220 ret = cpsw_probe_dual_emac(priv);
3221 if (ret) {
3222 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
3223 goto clean_unregister_netdev_ret;
3224 }
3225 }
3226
Felipe Balbic03abd82015-01-16 10:11:12 -06003227 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
3228 * MISC IRQs which are always kept disabled with this driver so
3229 * we will not request them.
3230 *
3231 * If anyone wants to implement support for those, make sure to
3232 * first request and append them to irqs_table array.
3233 */
Daniel Mackc2b32e52014-09-04 09:00:23 +02003234
Felipe Balbic03abd82015-01-16 10:11:12 -06003235 /* RX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06003236 irq = platform_get_irq(pdev, 1);
Julia Lawallc1e33342015-12-26 20:12:13 +01003237 if (irq < 0) {
3238 ret = irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003239 goto clean_dma_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01003240 }
Felipe Balbi5087b912015-01-16 10:11:11 -06003241
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03003242 cpsw->irqs_table[0] = irq;
Felipe Balbic03abd82015-01-16 10:11:12 -06003243 ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03003244 0, dev_name(&pdev->dev), cpsw);
Felipe Balbi5087b912015-01-16 10:11:11 -06003245 if (ret < 0) {
3246 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003247 goto clean_dma_ret;
Felipe Balbi5087b912015-01-16 10:11:11 -06003248 }
3249
Felipe Balbic03abd82015-01-16 10:11:12 -06003250 /* TX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06003251 irq = platform_get_irq(pdev, 2);
Julia Lawallc1e33342015-12-26 20:12:13 +01003252 if (irq < 0) {
3253 ret = irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003254 goto clean_dma_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01003255 }
Felipe Balbi5087b912015-01-16 10:11:11 -06003256
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03003257 cpsw->irqs_table[1] = irq;
Felipe Balbic03abd82015-01-16 10:11:12 -06003258 ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt,
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03003259 0, dev_name(&pdev->dev), cpsw);
Felipe Balbi5087b912015-01-16 10:11:11 -06003260 if (ret < 0) {
3261 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003262 goto clean_dma_ret;
Felipe Balbi5087b912015-01-16 10:11:11 -06003263 }
Daniel Mackc2b32e52014-09-04 09:00:23 +02003264
Grygorii Strashko90225bf2017-01-06 14:07:33 -06003265 cpsw_notice(priv, probe,
3266 "initialized device (regs %pa, irq %d, pool size %d)\n",
3267 &ss_res->start, ndev->irq, dma_params.descs_pool_size);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00003268
Johan Hovoldc46ab7e2016-11-17 17:39:58 +01003269 pm_runtime_put(&pdev->dev);
3270
Mugunthan V Ndf828592012-03-18 20:17:54 +00003271 return 0;
3272
Johan Hovolda7fe9d42016-11-17 17:40:02 +01003273clean_unregister_netdev_ret:
3274 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003275clean_dma_ret:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003276 cpdma_ctlr_destroy(cpsw->dma);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003277clean_dt_ret:
3278 cpsw_remove_dt(pdev);
Johan Hovoldc46ab7e2016-11-17 17:39:58 +01003279 pm_runtime_put_sync(&pdev->dev);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303280clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00003281 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003282clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00003283 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003284 return ret;
3285}
3286
Bill Pemberton663e12e2012-12-03 09:23:45 -05003287static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00003288{
3289 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003290 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03003291 int ret;
3292
3293 ret = pm_runtime_get_sync(&pdev->dev);
3294 if (ret < 0) {
3295 pm_runtime_put_noidle(&pdev->dev);
3296 return ret;
3297 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00003298
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003299 if (cpsw->data.dual_emac)
3300 unregister_netdev(cpsw->slaves[1].ndev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00003301 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003302
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003303 cpts_release(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003304 cpdma_ctlr_destroy(cpsw->dma);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003305 cpsw_remove_dt(pdev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03003306 pm_runtime_put_sync(&pdev->dev);
3307 pm_runtime_disable(&pdev->dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003308 if (cpsw->data.dual_emac)
3309 free_netdev(cpsw->slaves[1].ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003310 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003311 return 0;
3312}
3313
Grygorii Strashko8963a502015-02-27 13:19:45 +02003314#ifdef CONFIG_PM_SLEEP
Mugunthan V Ndf828592012-03-18 20:17:54 +00003315static int cpsw_suspend(struct device *dev)
3316{
3317 struct platform_device *pdev = to_platform_device(dev);
3318 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003319 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003320
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003321 if (cpsw->data.dual_emac) {
Mugunthan V N618073e2014-09-11 22:52:38 +05303322 int i;
Daniel Mack1e7a2e22013-11-15 08:29:16 +01003323
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003324 for (i = 0; i < cpsw->data.slaves; i++) {
3325 if (netif_running(cpsw->slaves[i].ndev))
3326 cpsw_ndo_stop(cpsw->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303327 }
3328 } else {
3329 if (netif_running(ndev))
3330 cpsw_ndo_stop(ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303331 }
Daniel Mack1e7a2e22013-11-15 08:29:16 +01003332
Mugunthan V N739683b2013-06-06 23:45:14 +05303333 /* Select sleep pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03003334 pinctrl_pm_select_sleep_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05303335
Mugunthan V Ndf828592012-03-18 20:17:54 +00003336 return 0;
3337}
3338
3339static int cpsw_resume(struct device *dev)
3340{
3341 struct platform_device *pdev = to_platform_device(dev);
3342 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuka60ced92017-02-14 14:42:15 +02003343 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003344
Mugunthan V N739683b2013-06-06 23:45:14 +05303345 /* Select default pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03003346 pinctrl_pm_select_default_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05303347
Grygorii Strashko4ccfd632016-11-29 16:27:03 -06003348 /* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
3349 rtnl_lock();
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003350 if (cpsw->data.dual_emac) {
Mugunthan V N618073e2014-09-11 22:52:38 +05303351 int i;
3352
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003353 for (i = 0; i < cpsw->data.slaves; i++) {
3354 if (netif_running(cpsw->slaves[i].ndev))
3355 cpsw_ndo_open(cpsw->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303356 }
3357 } else {
3358 if (netif_running(ndev))
3359 cpsw_ndo_open(ndev);
3360 }
Grygorii Strashko4ccfd632016-11-29 16:27:03 -06003361 rtnl_unlock();
3362
Mugunthan V Ndf828592012-03-18 20:17:54 +00003363 return 0;
3364}
Grygorii Strashko8963a502015-02-27 13:19:45 +02003365#endif
Mugunthan V Ndf828592012-03-18 20:17:54 +00003366
Grygorii Strashko8963a502015-02-27 13:19:45 +02003367static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003368
3369static struct platform_driver cpsw_driver = {
3370 .driver = {
3371 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00003372 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05303373 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00003374 },
3375 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05003376 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00003377};
3378
Grygorii Strashko6fb3b6b52015-10-23 14:41:12 +03003379module_platform_driver(cpsw_driver);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003380
3381MODULE_LICENSE("GPL");
3382MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
3383MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
3384MODULE_DESCRIPTION("TI CPSW Ethernet driver");