blob: 8af8891078e2f3e2034409d639b35b39036d8ec0 [file] [log] [blame]
Mugunthan V Ndf828592012-03-18 20:17:54 +00001/*
2 * Texas Instruments Ethernet Switch Driver
3 *
4 * Copyright (C) 2012 Texas Instruments
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/kernel.h>
17#include <linux/io.h>
18#include <linux/clk.h>
19#include <linux/timer.h>
20#include <linux/module.h>
21#include <linux/platform_device.h>
22#include <linux/irqreturn.h>
23#include <linux/interrupt.h>
24#include <linux/if_ether.h>
25#include <linux/etherdevice.h>
26#include <linux/netdevice.h>
Richard Cochran2e5b38a2012-10-29 08:45:20 +000027#include <linux/net_tstamp.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000028#include <linux/phy.h>
29#include <linux/workqueue.h>
30#include <linux/delay.h>
Mugunthan V Nf150bd72012-07-17 08:09:50 +000031#include <linux/pm_runtime.h>
Mugunthan V N1d147cc2015-09-07 15:16:44 +053032#include <linux/gpio.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000033#include <linux/of.h>
Heiko Schocher9e42f712015-10-17 06:04:35 +020034#include <linux/of_mdio.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000035#include <linux/of_net.h>
36#include <linux/of_device.h>
Mugunthan V N3b72c2f2013-02-05 08:26:48 +000037#include <linux/if_vlan.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000038
Mugunthan V N739683b2013-06-06 23:45:14 +053039#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000040
Mugunthan V Ndbe34722013-08-19 17:47:40 +053041#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000042#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000043#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000044#include "davinci_cpdma.h"
45
46#define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \
47 NETIF_MSG_DRV | NETIF_MSG_LINK | \
48 NETIF_MSG_IFUP | NETIF_MSG_INTR | \
49 NETIF_MSG_PROBE | NETIF_MSG_TIMER | \
50 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \
51 NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \
52 NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \
53 NETIF_MSG_RX_STATUS)
54
55#define cpsw_info(priv, type, format, ...) \
56do { \
57 if (netif_msg_##type(priv) && net_ratelimit()) \
58 dev_info(priv->dev, format, ## __VA_ARGS__); \
59} while (0)
60
61#define cpsw_err(priv, type, format, ...) \
62do { \
63 if (netif_msg_##type(priv) && net_ratelimit()) \
64 dev_err(priv->dev, format, ## __VA_ARGS__); \
65} while (0)
66
67#define cpsw_dbg(priv, type, format, ...) \
68do { \
69 if (netif_msg_##type(priv) && net_ratelimit()) \
70 dev_dbg(priv->dev, format, ## __VA_ARGS__); \
71} while (0)
72
73#define cpsw_notice(priv, type, format, ...) \
74do { \
75 if (netif_msg_##type(priv) && net_ratelimit()) \
76 dev_notice(priv->dev, format, ## __VA_ARGS__); \
77} while (0)
78
Mugunthan V N5c50a852012-10-29 08:45:11 +000079#define ALE_ALL_PORTS 0x7
80
Mugunthan V Ndf828592012-03-18 20:17:54 +000081#define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7)
82#define CPSW_MINOR_VERSION(reg) (reg & 0xff)
83#define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f)
84
Richard Cochrane90cfac2012-10-29 08:45:14 +000085#define CPSW_VERSION_1 0x19010a
86#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053087#define CPSW_VERSION_3 0x19010f
Mugunthan V N926489b2013-08-12 17:11:15 +053088#define CPSW_VERSION_4 0x190112
Richard Cochran549985e2012-11-14 09:07:56 +000089
90#define HOST_PORT_NUM 0
Grygorii Strashkoc6395f12017-11-30 18:21:14 -060091#define CPSW_ALE_PORTS_NUM 3
Richard Cochran549985e2012-11-14 09:07:56 +000092#define SLIVER_SIZE 0x40
93
94#define CPSW1_HOST_PORT_OFFSET 0x028
95#define CPSW1_SLAVE_OFFSET 0x050
96#define CPSW1_SLAVE_SIZE 0x040
97#define CPSW1_CPDMA_OFFSET 0x100
98#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +053099#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +0000100#define CPSW1_CPTS_OFFSET 0x500
101#define CPSW1_ALE_OFFSET 0x600
102#define CPSW1_SLIVER_OFFSET 0x700
103
104#define CPSW2_HOST_PORT_OFFSET 0x108
105#define CPSW2_SLAVE_OFFSET 0x200
106#define CPSW2_SLAVE_SIZE 0x100
107#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530108#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000109#define CPSW2_STATERAM_OFFSET 0xa00
110#define CPSW2_CPTS_OFFSET 0xc00
111#define CPSW2_ALE_OFFSET 0xd00
112#define CPSW2_SLIVER_OFFSET 0xd80
113#define CPSW2_BD_OFFSET 0x2000
114
Mugunthan V Ndf828592012-03-18 20:17:54 +0000115#define CPDMA_RXTHRESH 0x0c0
116#define CPDMA_RXFREE 0x0e0
117#define CPDMA_TXHDP 0x00
118#define CPDMA_RXHDP 0x20
119#define CPDMA_TXCP 0x40
120#define CPDMA_RXCP 0x60
121
Mugunthan V Ndf828592012-03-18 20:17:54 +0000122#define CPSW_POLL_WEIGHT 64
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500123#define CPSW_RX_VLAN_ENCAP_HDR_SIZE 4
Grygorii Strashko9421c902017-11-15 09:46:35 -0600124#define CPSW_MIN_PACKET_SIZE (VLAN_ETH_ZLEN)
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500125#define CPSW_MAX_PACKET_SIZE (VLAN_ETH_FRAME_LEN +\
126 ETH_FCS_LEN +\
127 CPSW_RX_VLAN_ENCAP_HDR_SIZE)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000128
129#define RX_PRIORITY_MAPPING 0x76543210
130#define TX_PRIORITY_MAPPING 0x33221100
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300131#define CPDMA_TX_PRIORITY_MAP 0x01234567
Mugunthan V Ndf828592012-03-18 20:17:54 +0000132
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000133#define CPSW_VLAN_AWARE BIT(1)
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500134#define CPSW_RX_VLAN_ENCAP BIT(2)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000135#define CPSW_ALE_VLAN_AWARE 1
136
John Ogness35717d82014-11-14 15:42:52 +0100137#define CPSW_FIFO_NORMAL_MODE (0 << 16)
138#define CPSW_FIFO_DUAL_MAC_MODE (1 << 16)
139#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000140
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000141#define CPSW_INTPACEEN (0x3f << 16)
142#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
143#define CPSW_CMINTMAX_CNT 63
144#define CPSW_CMINTMIN_CNT 2
145#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
146#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
147
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300148#define cpsw_slave_index(cpsw, priv) \
149 ((cpsw->data.dual_emac) ? priv->emac_port : \
150 cpsw->data.active_slave)
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300151#define IRQ_NUM 2
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300152#define CPSW_MAX_QUEUES 8
Grygorii Strashko90225bf2017-01-06 14:07:33 -0600153#define CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT 256
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000154
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500155#define CPSW_RX_VLAN_ENCAP_HDR_PRIO_SHIFT 29
156#define CPSW_RX_VLAN_ENCAP_HDR_PRIO_MSK GENMASK(2, 0)
157#define CPSW_RX_VLAN_ENCAP_HDR_VID_SHIFT 16
158#define CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_SHIFT 8
159#define CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_MSK GENMASK(1, 0)
160enum {
161 CPSW_RX_VLAN_ENCAP_HDR_PKT_VLAN_TAG = 0,
162 CPSW_RX_VLAN_ENCAP_HDR_PKT_RESERV,
163 CPSW_RX_VLAN_ENCAP_HDR_PKT_PRIO_TAG,
164 CPSW_RX_VLAN_ENCAP_HDR_PKT_UNTAG,
165};
166
Mugunthan V Ndf828592012-03-18 20:17:54 +0000167static int debug_level;
168module_param(debug_level, int, 0);
169MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
170
171static int ale_ageout = 10;
172module_param(ale_ageout, int, 0);
173MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
174
175static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
176module_param(rx_packet_max, int, 0);
177MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
178
Grygorii Strashko90225bf2017-01-06 14:07:33 -0600179static int descs_pool_size = CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT;
180module_param(descs_pool_size, int, 0444);
181MODULE_PARM_DESC(descs_pool_size, "Number of CPDMA CPPI descriptors in pool");
182
Richard Cochran996a5c22012-10-29 08:45:12 +0000183struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000184 u32 id_ver;
185 u32 soft_reset;
186 u32 control;
187 u32 int_control;
188 u32 rx_thresh_en;
189 u32 rx_en;
190 u32 tx_en;
191 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000192 u32 mem_allign1[8];
193 u32 rx_thresh_stat;
194 u32 rx_stat;
195 u32 tx_stat;
196 u32 misc_stat;
197 u32 mem_allign2[8];
198 u32 rx_imax;
199 u32 tx_imax;
200
Mugunthan V Ndf828592012-03-18 20:17:54 +0000201};
202
Richard Cochran996a5c22012-10-29 08:45:12 +0000203struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000204 u32 id_ver;
205 u32 control;
206 u32 soft_reset;
207 u32 stat_port_en;
208 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000209 u32 soft_idle;
210 u32 thru_rate;
211 u32 gap_thresh;
212 u32 tx_start_wds;
213 u32 flow_control;
214 u32 vlan_ltype;
215 u32 ts_ltype;
216 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000217};
218
Richard Cochran9750a3a2012-10-29 08:45:15 +0000219/* CPSW_PORT_V1 */
220#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
221#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
222#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
223#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
224#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
225#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
226#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
227#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
228
229/* CPSW_PORT_V2 */
230#define CPSW2_CONTROL 0x00 /* Control Register */
231#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
232#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
233#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
234#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
235#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
236#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
237
238/* CPSW_PORT_V1 and V2 */
239#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
240#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
241#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
242
243/* CPSW_PORT_V2 only */
244#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
245#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
246#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
247#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
248#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
249#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
250#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
251#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
252
253/* Bit definitions for the CPSW2_CONTROL register */
254#define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */
255#define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */
256#define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */
257#define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */
258#define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */
259#define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */
260#define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */
261#define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */
262#define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */
263#define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */
George Cherian09c55372014-05-02 12:02:02 +0530264#define TS_TTL_NONZERO (1<<8) /* Time Sync Time To Live Non-zero enable */
265#define TS_ANNEX_F_EN (1<<6) /* Time Sync Annex F enable */
Richard Cochran9750a3a2012-10-29 08:45:15 +0000266#define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */
267#define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */
268#define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */
269#define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */
270#define TS_RX_EN (1<<0) /* Time Sync Receive Enable */
271
George Cherian09c55372014-05-02 12:02:02 +0530272#define CTRL_V2_TS_BITS \
273 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
274 TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000275
George Cherian09c55372014-05-02 12:02:02 +0530276#define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN)
277#define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN)
278#define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN)
279
280
281#define CTRL_V3_TS_BITS \
282 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
283 TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\
284 TS_LTYPE1_EN)
285
286#define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN)
287#define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN)
288#define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000289
290/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
291#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
292#define TS_SEQ_ID_OFFSET_MASK (0x3f)
293#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
294#define TS_MSG_TYPE_EN_MASK (0xffff)
295
296/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
297#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000298
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000299/* Bit definitions for the CPSW1_TS_CTL register */
300#define CPSW_V1_TS_RX_EN BIT(0)
301#define CPSW_V1_TS_TX_EN BIT(4)
302#define CPSW_V1_MSG_TYPE_OFS 16
303
304/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
305#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
306
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -0500307#define CPSW_MAX_BLKS_TX 15
308#define CPSW_MAX_BLKS_TX_SHIFT 4
309#define CPSW_MAX_BLKS_RX 5
310
Mugunthan V Ndf828592012-03-18 20:17:54 +0000311struct cpsw_host_regs {
312 u32 max_blks;
313 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000314 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000315 u32 port_vlan;
316 u32 tx_pri_map;
317 u32 cpdma_tx_pri_map;
318 u32 cpdma_rx_chan_map;
319};
320
321struct cpsw_sliver_regs {
322 u32 id_ver;
323 u32 mac_control;
324 u32 mac_status;
325 u32 soft_reset;
326 u32 rx_maxlen;
327 u32 __reserved_0;
328 u32 rx_pause;
329 u32 tx_pause;
330 u32 __reserved_1;
331 u32 rx_pri_map;
332};
333
Mugunthan V Nd9718542013-07-23 15:38:17 +0530334struct cpsw_hw_stats {
335 u32 rxgoodframes;
336 u32 rxbroadcastframes;
337 u32 rxmulticastframes;
338 u32 rxpauseframes;
339 u32 rxcrcerrors;
340 u32 rxaligncodeerrors;
341 u32 rxoversizedframes;
342 u32 rxjabberframes;
343 u32 rxundersizedframes;
344 u32 rxfragments;
345 u32 __pad_0[2];
346 u32 rxoctets;
347 u32 txgoodframes;
348 u32 txbroadcastframes;
349 u32 txmulticastframes;
350 u32 txpauseframes;
351 u32 txdeferredframes;
352 u32 txcollisionframes;
353 u32 txsinglecollframes;
354 u32 txmultcollframes;
355 u32 txexcessivecollisions;
356 u32 txlatecollisions;
357 u32 txunderrun;
358 u32 txcarriersenseerrors;
359 u32 txoctets;
360 u32 octetframes64;
361 u32 octetframes65t127;
362 u32 octetframes128t255;
363 u32 octetframes256t511;
364 u32 octetframes512t1023;
365 u32 octetframes1024tup;
366 u32 netoctets;
367 u32 rxsofoverruns;
368 u32 rxmofoverruns;
369 u32 rxdmaoverruns;
370};
371
Grygorii Strashko2c8a14d2017-11-30 18:21:12 -0600372struct cpsw_slave_data {
373 struct device_node *phy_node;
374 char phy_id[MII_BUS_ID_SIZE];
375 int phy_if;
376 u8 mac_addr[ETH_ALEN];
377 u16 dual_emac_res_vlan; /* Reserved VLAN for DualEMAC */
378};
379
380struct cpsw_platform_data {
381 struct cpsw_slave_data *slave_data;
382 u32 ss_reg_ofs; /* Subsystem control register offset */
383 u32 channels; /* number of cpdma channels (symmetric) */
384 u32 slaves; /* number of slave cpgmac ports */
385 u32 active_slave; /* time stamping, ethtool and SIOCGMIIPHY slave */
386 u32 ale_entries; /* ale table size */
387 u32 bd_ram_size; /*buffer descriptor ram size */
388 u32 mac_control; /* Mac control register */
389 u16 default_vlan; /* Def VLAN for ALE lookup in VLAN aware mode*/
390 bool dual_emac; /* Enable Dual EMAC mode */
391};
392
Mugunthan V Ndf828592012-03-18 20:17:54 +0000393struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000394 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000395 struct cpsw_sliver_regs __iomem *sliver;
396 int slave_num;
397 u32 mac_control;
398 struct cpsw_slave_data *data;
399 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000400 struct net_device *ndev;
401 u32 port_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000402};
403
Richard Cochran9750a3a2012-10-29 08:45:15 +0000404static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
405{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600406 return readl_relaxed(slave->regs + offset);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000407}
408
409static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
410{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600411 writel_relaxed(val, slave->regs + offset);
Richard Cochran9750a3a2012-10-29 08:45:15 +0000412}
413
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200414struct cpsw_vector {
415 struct cpdma_chan *ch;
416 int budget;
417};
418
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300419struct cpsw_common {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300420 struct device *dev;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300421 struct cpsw_platform_data data;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300422 struct napi_struct napi_rx;
423 struct napi_struct napi_tx;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300424 struct cpsw_ss_regs __iomem *regs;
425 struct cpsw_wr_regs __iomem *wr_regs;
426 u8 __iomem *hw_stats;
427 struct cpsw_host_regs __iomem *host_port_regs;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300428 u32 version;
429 u32 coal_intvl;
430 u32 bus_freq_mhz;
431 int rx_packet_max;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300432 struct cpsw_slave *slaves;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300433 struct cpdma_ctlr *dma;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200434 struct cpsw_vector txv[CPSW_MAX_QUEUES];
435 struct cpsw_vector rxv[CPSW_MAX_QUEUES];
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300436 struct cpsw_ale *ale;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300437 bool quirk_irq;
438 bool rx_irq_disabled;
439 bool tx_irq_disabled;
440 u32 irqs_table[IRQ_NUM];
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300441 struct cpts *cpts;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300442 int rx_ch_num, tx_ch_num;
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200443 int speed;
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200444 int usage_count;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300445};
446
447struct cpsw_priv {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000448 struct net_device *ndev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000449 struct device *dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000450 u32 msg_enable;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000451 u8 mac_addr[ETH_ALEN];
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530452 bool rx_pause;
453 bool tx_pause;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000454 u32 emac_port;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300455 struct cpsw_common *cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000456};
457
Mugunthan V Nd9718542013-07-23 15:38:17 +0530458struct cpsw_stats {
459 char stat_string[ETH_GSTRING_LEN];
460 int type;
461 int sizeof_stat;
462 int stat_offset;
463};
464
465enum {
466 CPSW_STATS,
467 CPDMA_RX_STATS,
468 CPDMA_TX_STATS,
469};
470
471#define CPSW_STAT(m) CPSW_STATS, \
472 sizeof(((struct cpsw_hw_stats *)0)->m), \
473 offsetof(struct cpsw_hw_stats, m)
474#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
475 sizeof(((struct cpdma_chan_stats *)0)->m), \
476 offsetof(struct cpdma_chan_stats, m)
477#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
478 sizeof(((struct cpdma_chan_stats *)0)->m), \
479 offsetof(struct cpdma_chan_stats, m)
480
481static const struct cpsw_stats cpsw_gstrings_stats[] = {
482 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
483 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
484 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
485 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
486 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
487 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
488 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
489 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
490 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
491 { "Rx Fragments", CPSW_STAT(rxfragments) },
492 { "Rx Octets", CPSW_STAT(rxoctets) },
493 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
494 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
495 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
496 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
497 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
498 { "Collisions", CPSW_STAT(txcollisionframes) },
499 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
500 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
501 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
502 { "Late Collisions", CPSW_STAT(txlatecollisions) },
503 { "Tx Underrun", CPSW_STAT(txunderrun) },
504 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
505 { "Tx Octets", CPSW_STAT(txoctets) },
506 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
507 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
508 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
509 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
510 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
511 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
512 { "Net Octets", CPSW_STAT(netoctets) },
513 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
514 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
515 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
Mugunthan V Nd9718542013-07-23 15:38:17 +0530516};
517
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300518static const struct cpsw_stats cpsw_gstrings_ch_stats[] = {
519 { "head_enqueue", CPDMA_RX_STAT(head_enqueue) },
520 { "tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
521 { "pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
522 { "misqueued", CPDMA_RX_STAT(misqueued) },
523 { "desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
524 { "pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
525 { "runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
526 { "runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
527 { "empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
528 { "busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
529 { "good_dequeue", CPDMA_RX_STAT(good_dequeue) },
530 { "requeue", CPDMA_RX_STAT(requeue) },
531 { "teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
532};
533
534#define CPSW_STATS_COMMON_LEN ARRAY_SIZE(cpsw_gstrings_stats)
535#define CPSW_STATS_CH_LEN ARRAY_SIZE(cpsw_gstrings_ch_stats)
Mugunthan V Nd9718542013-07-23 15:38:17 +0530536
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300537#define ndev_to_cpsw(ndev) (((struct cpsw_priv *)netdev_priv(ndev))->cpsw)
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300538#define napi_to_cpsw(napi) container_of(napi, struct cpsw_common, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000539#define for_each_slave(priv, func, arg...) \
540 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000541 struct cpsw_slave *slave; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300542 struct cpsw_common *cpsw = (priv)->cpsw; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000543 int n; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300544 if (cpsw->data.dual_emac) \
545 (func)((cpsw)->slaves + priv->emac_port, ##arg);\
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000546 else \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300547 for (n = cpsw->data.slaves, \
548 slave = cpsw->slaves; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000549 n; n--) \
550 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000551 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000552
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300553#define cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000554 do { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300555 if (!cpsw->data.dual_emac) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000556 break; \
557 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300558 ndev = cpsw->slaves[0].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000559 skb->dev = ndev; \
560 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300561 ndev = cpsw->slaves[1].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000562 skb->dev = ndev; \
563 } \
564 } while (0)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300565#define cpsw_add_mcast(cpsw, priv, addr) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000566 do { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300567 if (cpsw->data.dual_emac) { \
568 struct cpsw_slave *slave = cpsw->slaves + \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000569 priv->emac_port; \
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300570 int slave_port = cpsw_get_slave_port( \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000571 slave->slave_num); \
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300572 cpsw_ale_add_mcast(cpsw->ale, addr, \
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300573 1 << slave_port | ALE_PORT_HOST, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000574 ALE_VLAN, slave->port_vlan, 0); \
575 } else { \
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300576 cpsw_ale_add_mcast(cpsw->ale, addr, \
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300577 ALE_ALL_PORTS, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000578 0, 0, 0); \
579 } \
580 } while (0)
581
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300582static inline int cpsw_get_slave_port(u32 slave_num)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000583{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300584 return slave_num + 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000585}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000586
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530587static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
588{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300589 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
590 struct cpsw_ale *ale = cpsw->ale;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530591 int i;
592
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300593 if (cpsw->data.dual_emac) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530594 bool flag = false;
595
596 /* Enabling promiscuous mode for one interface will be
597 * common for both the interface as the interface shares
598 * the same hardware resource.
599 */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300600 for (i = 0; i < cpsw->data.slaves; i++)
601 if (cpsw->slaves[i].ndev->flags & IFF_PROMISC)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530602 flag = true;
603
604 if (!enable && flag) {
605 enable = true;
606 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
607 }
608
609 if (enable) {
610 /* Enable Bypass */
611 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
612
613 dev_dbg(&ndev->dev, "promiscuity enabled\n");
614 } else {
615 /* Disable Bypass */
616 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
617 dev_dbg(&ndev->dev, "promiscuity disabled\n");
618 }
619 } else {
620 if (enable) {
621 unsigned long timeout = jiffies + HZ;
622
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400623 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300624 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530625 cpsw_ale_control_set(ale, i,
626 ALE_PORT_NOLEARN, 1);
627 cpsw_ale_control_set(ale, i,
628 ALE_PORT_NO_SA_UPDATE, 1);
629 }
630
631 /* Clear All Untouched entries */
632 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
633 do {
634 cpu_relax();
635 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
636 break;
637 } while (time_after(timeout, jiffies));
638 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
639
640 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300641 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1);
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530642
643 /* Flood All Unicast Packets to Host port */
644 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
645 dev_dbg(&ndev->dev, "promiscuity enabled\n");
646 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400647 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530648 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
649
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400650 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300651 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530652 cpsw_ale_control_set(ale, i,
653 ALE_PORT_NOLEARN, 0);
654 cpsw_ale_control_set(ale, i,
655 ALE_PORT_NO_SA_UPDATE, 0);
656 }
657 dev_dbg(&ndev->dev, "promiscuity disabled\n");
658 }
659 }
660}
661
Mugunthan V N5c50a852012-10-29 08:45:11 +0000662static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
663{
664 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300665 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N25906052015-01-13 17:35:49 +0530666 int vid;
667
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300668 if (cpsw->data.dual_emac)
669 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V N25906052015-01-13 17:35:49 +0530670 else
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300671 vid = cpsw->data.default_vlan;
Mugunthan V N5c50a852012-10-29 08:45:11 +0000672
673 if (ndev->flags & IFF_PROMISC) {
674 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530675 cpsw_set_promiscious(ndev, true);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300676 cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000677 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530678 } else {
679 /* Disable promiscuous mode */
680 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000681 }
682
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400683 /* Restore allmulti on vlans if necessary */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300684 cpsw_ale_set_allmulti(cpsw->ale, priv->ndev->flags & IFF_ALLMULTI);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400685
Mugunthan V N5c50a852012-10-29 08:45:11 +0000686 /* Clear all mcast from ALE */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300687 cpsw_ale_flush_multicast(cpsw->ale, ALE_ALL_PORTS, vid);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000688
689 if (!netdev_mc_empty(ndev)) {
690 struct netdev_hw_addr *ha;
691
692 /* program multicast address list into ALE register */
693 netdev_for_each_mc_addr(ha, ndev) {
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300694 cpsw_add_mcast(cpsw, priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000695 }
696 }
697}
698
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300699static void cpsw_intr_enable(struct cpsw_common *cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000700{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600701 writel_relaxed(0xFF, &cpsw->wr_regs->tx_en);
702 writel_relaxed(0xFF, &cpsw->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000703
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300704 cpdma_ctlr_int_ctrl(cpsw->dma, true);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000705 return;
706}
707
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300708static void cpsw_intr_disable(struct cpsw_common *cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000709{
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -0600710 writel_relaxed(0, &cpsw->wr_regs->tx_en);
711 writel_relaxed(0, &cpsw->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000712
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300713 cpdma_ctlr_int_ctrl(cpsw->dma, false);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000714 return;
715}
716
Olof Johansson1a3b5052013-12-11 15:58:07 -0800717static void cpsw_tx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000718{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300719 struct netdev_queue *txq;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000720 struct sk_buff *skb = token;
721 struct net_device *ndev = skb->dev;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300722 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000723
Mugunthan V Nfae50822013-01-17 06:31:34 +0000724 /* Check whether the queue is stopped due to stalled tx dma, if the
725 * queue is stopped then start the queue as we have free desc for tx
726 */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300727 txq = netdev_get_tx_queue(ndev, skb_get_queue_mapping(skb));
728 if (unlikely(netif_tx_queue_stopped(txq)))
729 netif_tx_wake_queue(txq);
730
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300731 cpts_tx_timestamp(cpsw->cpts, skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100732 ndev->stats.tx_packets++;
733 ndev->stats.tx_bytes += len;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000734 dev_kfree_skb_any(skb);
735}
736
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500737static void cpsw_rx_vlan_encap(struct sk_buff *skb)
738{
739 struct cpsw_priv *priv = netdev_priv(skb->dev);
740 struct cpsw_common *cpsw = priv->cpsw;
741 u32 rx_vlan_encap_hdr = *((u32 *)skb->data);
742 u16 vtag, vid, prio, pkt_type;
743
744 /* Remove VLAN header encapsulation word */
745 skb_pull(skb, CPSW_RX_VLAN_ENCAP_HDR_SIZE);
746
747 pkt_type = (rx_vlan_encap_hdr >>
748 CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_SHIFT) &
749 CPSW_RX_VLAN_ENCAP_HDR_PKT_TYPE_MSK;
750 /* Ignore unknown & Priority-tagged packets*/
751 if (pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_RESERV ||
752 pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_PRIO_TAG)
753 return;
754
755 vid = (rx_vlan_encap_hdr >>
756 CPSW_RX_VLAN_ENCAP_HDR_VID_SHIFT) &
757 VLAN_VID_MASK;
758 /* Ignore vid 0 and pass packet as is */
759 if (!vid)
760 return;
761 /* Ignore default vlans in dual mac mode */
762 if (cpsw->data.dual_emac &&
763 vid == cpsw->slaves[priv->emac_port].port_vlan)
764 return;
765
766 prio = (rx_vlan_encap_hdr >>
767 CPSW_RX_VLAN_ENCAP_HDR_PRIO_SHIFT) &
768 CPSW_RX_VLAN_ENCAP_HDR_PRIO_MSK;
769
770 vtag = (prio << VLAN_PRIO_SHIFT) | vid;
771 __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vtag);
772
773 /* strip vlan tag for VLAN-tagged packet */
774 if (pkt_type == CPSW_RX_VLAN_ENCAP_HDR_PKT_VLAN_TAG) {
775 memmove(skb->data + VLAN_HLEN, skb->data, 2 * ETH_ALEN);
776 skb_pull(skb, VLAN_HLEN);
777 }
778}
779
Olof Johansson1a3b5052013-12-11 15:58:07 -0800780static void cpsw_rx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000781{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300782 struct cpdma_chan *ch;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000783 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000784 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000785 struct net_device *ndev = skb->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000786 int ret = 0;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300787 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000788
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300789 cpsw_dual_emac_src_port_detect(cpsw, status, ndev, skb);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000790
Mugunthan V N16e5c572014-04-10 14:23:23 +0530791 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Ivan Khoronzhukfe734d02017-01-19 18:58:26 +0200792 /* In dual emac mode check for all interfaces */
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +0200793 if (cpsw->data.dual_emac && cpsw->usage_count &&
Ivan Khoronzhukfe734d02017-01-19 18:58:26 +0200794 (status >= 0)) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530795 /* The packet received is for the interface which
796 * is already down and the other interface is up
Joe Perchesdbedd442015-03-06 20:49:12 -0800797 * and running, instead of freeing which results
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530798 * in reducing of the number of rx descriptor in
799 * DMA engine, requeue skb back to cpdma.
800 */
801 new_skb = skb;
802 goto requeue;
803 }
804
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000805 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000806 dev_kfree_skb_any(skb);
807 return;
808 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000809
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300810 new_skb = netdev_alloc_skb_ip_align(ndev, cpsw->rx_packet_max);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000811 if (new_skb) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300812 skb_copy_queue_mapping(new_skb, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000813 skb_put(skb, len);
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -0500814 if (status & CPDMA_RX_VLAN_ENCAP)
815 cpsw_rx_vlan_encap(skb);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +0300816 cpts_rx_timestamp(cpsw->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000817 skb->protocol = eth_type_trans(skb, ndev);
818 netif_receive_skb(skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100819 ndev->stats.rx_bytes += len;
820 ndev->stats.rx_packets++;
Grygorii Strashko254a49d2016-08-09 15:09:44 +0300821 kmemleak_not_leak(new_skb);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000822 } else {
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100823 ndev->stats.rx_dropped++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000824 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000825 }
826
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530827requeue:
Ivan Khoronzhukce52c742016-08-22 21:18:28 +0300828 if (netif_dormant(ndev)) {
829 dev_kfree_skb_any(new_skb);
830 return;
831 }
832
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200833 ch = cpsw->rxv[skb_get_queue_mapping(new_skb)].ch;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300834 ret = cpdma_chan_submit(ch, new_skb, new_skb->data,
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300835 skb_tailroom(new_skb), 0);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000836 if (WARN_ON(ret < 0))
837 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000838}
839
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200840static void cpsw_split_res(struct net_device *ndev)
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200841{
842 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200843 u32 consumed_rate = 0, bigest_rate = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200844 struct cpsw_common *cpsw = priv->cpsw;
845 struct cpsw_vector *txv = cpsw->txv;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200846 int i, ch_weight, rlim_ch_num = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200847 int budget, bigest_rate_ch = 0;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200848 u32 ch_rate, max_rate;
849 int ch_budget = 0;
850
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200851 for (i = 0; i < cpsw->tx_ch_num; i++) {
852 ch_rate = cpdma_chan_get_rate(txv[i].ch);
853 if (!ch_rate)
854 continue;
855
856 rlim_ch_num++;
857 consumed_rate += ch_rate;
858 }
859
860 if (cpsw->tx_ch_num == rlim_ch_num) {
861 max_rate = consumed_rate;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200862 } else if (!rlim_ch_num) {
863 ch_budget = CPSW_POLL_WEIGHT / cpsw->tx_ch_num;
864 bigest_rate = 0;
865 max_rate = consumed_rate;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200866 } else {
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +0200867 max_rate = cpsw->speed * 1000;
868
869 /* if max_rate is less then expected due to reduced link speed,
870 * split proportionally according next potential max speed
871 */
872 if (max_rate < consumed_rate)
873 max_rate *= 10;
874
875 if (max_rate < consumed_rate)
876 max_rate *= 10;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200877
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200878 ch_budget = (consumed_rate * CPSW_POLL_WEIGHT) / max_rate;
879 ch_budget = (CPSW_POLL_WEIGHT - ch_budget) /
880 (cpsw->tx_ch_num - rlim_ch_num);
881 bigest_rate = (max_rate - consumed_rate) /
882 (cpsw->tx_ch_num - rlim_ch_num);
883 }
884
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200885 /* split tx weight/budget */
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200886 budget = CPSW_POLL_WEIGHT;
887 for (i = 0; i < cpsw->tx_ch_num; i++) {
888 ch_rate = cpdma_chan_get_rate(txv[i].ch);
889 if (ch_rate) {
890 txv[i].budget = (ch_rate * CPSW_POLL_WEIGHT) / max_rate;
891 if (!txv[i].budget)
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200892 txv[i].budget++;
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200893 if (ch_rate > bigest_rate) {
894 bigest_rate_ch = i;
895 bigest_rate = ch_rate;
896 }
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200897
898 ch_weight = (ch_rate * 100) / max_rate;
899 if (!ch_weight)
900 ch_weight++;
901 cpdma_chan_set_weight(cpsw->txv[i].ch, ch_weight);
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200902 } else {
903 txv[i].budget = ch_budget;
904 if (!bigest_rate_ch)
905 bigest_rate_ch = i;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +0200906 cpdma_chan_set_weight(cpsw->txv[i].ch, 0);
Ivan Khoronzhuk48e0a832016-12-06 03:45:00 +0200907 }
908
909 budget -= txv[i].budget;
910 }
911
912 if (budget)
913 txv[bigest_rate_ch].budget += budget;
914
915 /* split rx budget */
916 budget = CPSW_POLL_WEIGHT;
917 ch_budget = budget / cpsw->rx_ch_num;
918 for (i = 0; i < cpsw->rx_ch_num; i++) {
919 cpsw->rxv[i].budget = ch_budget;
920 budget -= ch_budget;
921 }
922
923 if (budget)
924 cpsw->rxv[0].budget += budget;
925}
926
Felipe Balbic03abd82015-01-16 10:11:12 -0600927static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000928{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300929 struct cpsw_common *cpsw = dev_id;
Felipe Balbi7ce67a32015-01-02 16:15:59 -0600930
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300931 writel(0, &cpsw->wr_regs->tx_en);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300932 cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_TX);
Felipe Balbic03abd82015-01-16 10:11:12 -0600933
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300934 if (cpsw->quirk_irq) {
935 disable_irq_nosync(cpsw->irqs_table[1]);
936 cpsw->tx_irq_disabled = true;
Mugunthan V N7da11602015-08-12 15:22:53 +0530937 }
938
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300939 napi_schedule(&cpsw->napi_tx);
Felipe Balbic03abd82015-01-16 10:11:12 -0600940 return IRQ_HANDLED;
941}
942
943static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id)
944{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300945 struct cpsw_common *cpsw = dev_id;
Felipe Balbic03abd82015-01-16 10:11:12 -0600946
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300947 cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_RX);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300948 writel(0, &cpsw->wr_regs->rx_en);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000949
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300950 if (cpsw->quirk_irq) {
951 disable_irq_nosync(cpsw->irqs_table[0]);
952 cpsw->rx_irq_disabled = true;
Mugunthan V N7da11602015-08-12 15:22:53 +0530953 }
954
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300955 napi_schedule(&cpsw->napi_rx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +0530956 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000957}
958
Mugunthan V N32a74322015-08-04 16:06:20 +0530959static int cpsw_tx_poll(struct napi_struct *napi_tx, int budget)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000960{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300961 u32 ch_map;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200962 int num_tx, cur_budget, ch;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300963 struct cpsw_common *cpsw = napi_to_cpsw(napi_tx);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200964 struct cpsw_vector *txv;
Mugunthan V N32a74322015-08-04 16:06:20 +0530965
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300966 /* process every unprocessed channel */
967 ch_map = cpdma_ctrl_txchs_state(cpsw->dma);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +0200968 for (ch = 0, num_tx = 0; ch_map; ch_map >>= 1, ch++) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300969 if (!(ch_map & 0x01))
970 continue;
971
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200972 txv = &cpsw->txv[ch];
973 if (unlikely(txv->budget > budget - num_tx))
974 cur_budget = budget - num_tx;
975 else
976 cur_budget = txv->budget;
977
978 num_tx += cpdma_chan_process(txv->ch, cur_budget);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +0200979 if (num_tx >= budget)
980 break;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300981 }
982
Mugunthan V N32a74322015-08-04 16:06:20 +0530983 if (num_tx < budget) {
984 napi_complete(napi_tx);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300985 writel(0xff, &cpsw->wr_regs->tx_en);
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300986 if (cpsw->quirk_irq && cpsw->tx_irq_disabled) {
987 cpsw->tx_irq_disabled = false;
988 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +0530989 }
Mugunthan V N32a74322015-08-04 16:06:20 +0530990 }
991
Mugunthan V N32a74322015-08-04 16:06:20 +0530992 return num_tx;
993}
994
995static int cpsw_rx_poll(struct napi_struct *napi_rx, int budget)
996{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +0300997 u32 ch_map;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +0200998 int num_rx, cur_budget, ch;
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +0300999 struct cpsw_common *cpsw = napi_to_cpsw(napi_rx);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001000 struct cpsw_vector *rxv;
Mugunthan V N510a1e722013-02-17 22:19:20 +00001001
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001002 /* process every unprocessed channel */
1003 ch_map = cpdma_ctrl_rxchs_state(cpsw->dma);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +02001004 for (ch = 0, num_rx = 0; ch_map; ch_map >>= 1, ch++) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001005 if (!(ch_map & 0x01))
1006 continue;
1007
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001008 rxv = &cpsw->rxv[ch];
1009 if (unlikely(rxv->budget > budget - num_rx))
1010 cur_budget = budget - num_rx;
1011 else
1012 cur_budget = rxv->budget;
1013
1014 num_rx += cpdma_chan_process(rxv->ch, cur_budget);
Ivan Khoronzhuk342934a2016-11-29 17:00:50 +02001015 if (num_rx >= budget)
1016 break;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001017 }
1018
Mugunthan V N510a1e722013-02-17 22:19:20 +00001019 if (num_rx < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001020 napi_complete_done(napi_rx, num_rx);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001021 writel(0xff, &cpsw->wr_regs->rx_en);
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001022 if (cpsw->quirk_irq && cpsw->rx_irq_disabled) {
1023 cpsw->rx_irq_disabled = false;
1024 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301025 }
Mugunthan V N510a1e722013-02-17 22:19:20 +00001026 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001027
Mugunthan V Ndf828592012-03-18 20:17:54 +00001028 return num_rx;
1029}
1030
1031static inline void soft_reset(const char *module, void __iomem *reg)
1032{
1033 unsigned long timeout = jiffies + HZ;
1034
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001035 writel_relaxed(1, reg);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001036 do {
1037 cpu_relax();
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001038 } while ((readl_relaxed(reg) & 1) && time_after(timeout, jiffies));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001039
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001040 WARN(readl_relaxed(reg) & 1, "failed to soft-reset %s\n", module);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001041}
1042
Mugunthan V Ndf828592012-03-18 20:17:54 +00001043static void cpsw_set_slave_mac(struct cpsw_slave *slave,
1044 struct cpsw_priv *priv)
1045{
Richard Cochran9750a3a2012-10-29 08:45:15 +00001046 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
1047 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001048}
1049
1050static void _cpsw_adjust_link(struct cpsw_slave *slave,
1051 struct cpsw_priv *priv, bool *link)
1052{
1053 struct phy_device *phy = slave->phy;
1054 u32 mac_control = 0;
1055 u32 slave_port;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001056 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001057
1058 if (!phy)
1059 return;
1060
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001061 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001062
1063 if (phy->link) {
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001064 mac_control = cpsw->data.mac_control;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001065
1066 /* enable forwarding */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001067 cpsw_ale_control_set(cpsw->ale, slave_port,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001068 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1069
1070 if (phy->speed == 1000)
1071 mac_control |= BIT(7); /* GIGABITEN */
1072 if (phy->duplex)
1073 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +00001074
1075 /* set speed_in input in case RMII mode is used in 100Mbps */
1076 if (phy->speed == 100)
1077 mac_control |= BIT(15);
Mugunthan V Na81d8762013-12-13 18:42:55 +05301078 else if (phy->speed == 10)
1079 mac_control |= BIT(18); /* In Band mode */
Daniel Mack342b7b72012-09-27 09:19:34 +00001080
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301081 if (priv->rx_pause)
1082 mac_control |= BIT(3);
1083
1084 if (priv->tx_pause)
1085 mac_control |= BIT(4);
1086
Mugunthan V Ndf828592012-03-18 20:17:54 +00001087 *link = true;
1088 } else {
1089 mac_control = 0;
1090 /* disable forwarding */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001091 cpsw_ale_control_set(cpsw->ale, slave_port,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001092 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
1093 }
1094
1095 if (mac_control != slave->mac_control) {
1096 phy_print_status(phy);
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001097 writel_relaxed(mac_control, &slave->sliver->mac_control);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001098 }
1099
1100 slave->mac_control = mac_control;
1101}
1102
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001103static int cpsw_get_common_speed(struct cpsw_common *cpsw)
1104{
1105 int i, speed;
1106
1107 for (i = 0, speed = 0; i < cpsw->data.slaves; i++)
1108 if (cpsw->slaves[i].phy && cpsw->slaves[i].phy->link)
1109 speed += cpsw->slaves[i].phy->speed;
1110
1111 return speed;
1112}
1113
1114static int cpsw_need_resplit(struct cpsw_common *cpsw)
1115{
1116 int i, rlim_ch_num;
1117 int speed, ch_rate;
1118
1119 /* re-split resources only in case speed was changed */
1120 speed = cpsw_get_common_speed(cpsw);
1121 if (speed == cpsw->speed || !speed)
1122 return 0;
1123
1124 cpsw->speed = speed;
1125
1126 for (i = 0, rlim_ch_num = 0; i < cpsw->tx_ch_num; i++) {
1127 ch_rate = cpdma_chan_get_rate(cpsw->txv[i].ch);
1128 if (!ch_rate)
1129 break;
1130
1131 rlim_ch_num++;
1132 }
1133
1134 /* cases not dependent on speed */
1135 if (!rlim_ch_num || rlim_ch_num == cpsw->tx_ch_num)
1136 return 0;
1137
1138 return 1;
1139}
1140
Mugunthan V Ndf828592012-03-18 20:17:54 +00001141static void cpsw_adjust_link(struct net_device *ndev)
1142{
1143 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001144 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001145 bool link = false;
1146
1147 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
1148
1149 if (link) {
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001150 if (cpsw_need_resplit(cpsw))
1151 cpsw_split_res(ndev);
1152
Mugunthan V Ndf828592012-03-18 20:17:54 +00001153 netif_carrier_on(ndev);
1154 if (netif_running(ndev))
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001155 netif_tx_wake_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001156 } else {
1157 netif_carrier_off(ndev);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001158 netif_tx_stop_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001159 }
1160}
1161
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001162static int cpsw_get_coalesce(struct net_device *ndev,
1163 struct ethtool_coalesce *coal)
1164{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001165 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001166
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001167 coal->rx_coalesce_usecs = cpsw->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001168 return 0;
1169}
1170
1171static int cpsw_set_coalesce(struct net_device *ndev,
1172 struct ethtool_coalesce *coal)
1173{
1174 struct cpsw_priv *priv = netdev_priv(ndev);
1175 u32 int_ctrl;
1176 u32 num_interrupts = 0;
1177 u32 prescale = 0;
1178 u32 addnl_dvdr = 1;
1179 u32 coal_intvl = 0;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001180 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001181
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001182 coal_intvl = coal->rx_coalesce_usecs;
1183
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001184 int_ctrl = readl(&cpsw->wr_regs->int_control);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001185 prescale = cpsw->bus_freq_mhz * 4;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001186
Mugunthan V Na84bc2a2014-07-15 20:26:53 +05301187 if (!coal->rx_coalesce_usecs) {
1188 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
1189 goto update_return;
1190 }
1191
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001192 if (coal_intvl < CPSW_CMINTMIN_INTVL)
1193 coal_intvl = CPSW_CMINTMIN_INTVL;
1194
1195 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
1196 /* Interrupt pacer works with 4us Pulse, we can
1197 * throttle further by dilating the 4us pulse.
1198 */
1199 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
1200
1201 if (addnl_dvdr > 1) {
1202 prescale *= addnl_dvdr;
1203 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
1204 coal_intvl = (CPSW_CMINTMAX_INTVL
1205 * addnl_dvdr);
1206 } else {
1207 addnl_dvdr = 1;
1208 coal_intvl = CPSW_CMINTMAX_INTVL;
1209 }
1210 }
1211
1212 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001213 writel(num_interrupts, &cpsw->wr_regs->rx_imax);
1214 writel(num_interrupts, &cpsw->wr_regs->tx_imax);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001215
1216 int_ctrl |= CPSW_INTPACEEN;
1217 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
1218 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
Mugunthan V Na84bc2a2014-07-15 20:26:53 +05301219
1220update_return:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001221 writel(int_ctrl, &cpsw->wr_regs->int_control);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001222
1223 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001224 cpsw->coal_intvl = coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001225
1226 return 0;
1227}
1228
Mugunthan V Nd9718542013-07-23 15:38:17 +05301229static int cpsw_get_sset_count(struct net_device *ndev, int sset)
1230{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001231 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
1232
Mugunthan V Nd9718542013-07-23 15:38:17 +05301233 switch (sset) {
1234 case ETH_SS_STATS:
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001235 return (CPSW_STATS_COMMON_LEN +
1236 (cpsw->rx_ch_num + cpsw->tx_ch_num) *
1237 CPSW_STATS_CH_LEN);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301238 default:
1239 return -EOPNOTSUPP;
1240 }
1241}
1242
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001243static void cpsw_add_ch_strings(u8 **p, int ch_num, int rx_dir)
1244{
1245 int ch_stats_len;
1246 int line;
1247 int i;
1248
1249 ch_stats_len = CPSW_STATS_CH_LEN * ch_num;
1250 for (i = 0; i < ch_stats_len; i++) {
1251 line = i % CPSW_STATS_CH_LEN;
1252 snprintf(*p, ETH_GSTRING_LEN,
1253 "%s DMA chan %d: %s", rx_dir ? "Rx" : "Tx",
1254 i / CPSW_STATS_CH_LEN,
1255 cpsw_gstrings_ch_stats[line].stat_string);
1256 *p += ETH_GSTRING_LEN;
1257 }
1258}
1259
Mugunthan V Nd9718542013-07-23 15:38:17 +05301260static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
1261{
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001262 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301263 u8 *p = data;
1264 int i;
1265
1266 switch (stringset) {
1267 case ETH_SS_STATS:
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001268 for (i = 0; i < CPSW_STATS_COMMON_LEN; i++) {
Mugunthan V Nd9718542013-07-23 15:38:17 +05301269 memcpy(p, cpsw_gstrings_stats[i].stat_string,
1270 ETH_GSTRING_LEN);
1271 p += ETH_GSTRING_LEN;
1272 }
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001273
1274 cpsw_add_ch_strings(&p, cpsw->rx_ch_num, 1);
1275 cpsw_add_ch_strings(&p, cpsw->tx_ch_num, 0);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301276 break;
1277 }
1278}
1279
1280static void cpsw_get_ethtool_stats(struct net_device *ndev,
1281 struct ethtool_stats *stats, u64 *data)
1282{
Mugunthan V Nd9718542013-07-23 15:38:17 +05301283 u8 *p;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001284 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001285 struct cpdma_chan_stats ch_stats;
1286 int i, l, ch;
Mugunthan V Nd9718542013-07-23 15:38:17 +05301287
1288 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001289 for (l = 0; l < CPSW_STATS_COMMON_LEN; l++)
1290 data[l] = readl(cpsw->hw_stats +
1291 cpsw_gstrings_stats[l].stat_offset);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301292
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001293 for (ch = 0; ch < cpsw->rx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001294 cpdma_chan_get_stats(cpsw->rxv[ch].ch, &ch_stats);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001295 for (i = 0; i < CPSW_STATS_CH_LEN; i++, l++) {
1296 p = (u8 *)&ch_stats +
1297 cpsw_gstrings_ch_stats[i].stat_offset;
1298 data[l] = *(u32 *)p;
1299 }
1300 }
Mugunthan V Nd9718542013-07-23 15:38:17 +05301301
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001302 for (ch = 0; ch < cpsw->tx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001303 cpdma_chan_get_stats(cpsw->txv[ch].ch, &ch_stats);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001304 for (i = 0; i < CPSW_STATS_CH_LEN; i++, l++) {
1305 p = (u8 *)&ch_stats +
1306 cpsw_gstrings_ch_stats[i].stat_offset;
1307 data[l] = *(u32 *)p;
Mugunthan V Nd9718542013-07-23 15:38:17 +05301308 }
1309 }
1310}
1311
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001312static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv,
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001313 struct sk_buff *skb,
1314 struct cpdma_chan *txch)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001315{
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001316 struct cpsw_common *cpsw = priv->cpsw;
1317
Ivan Khoronzhuk98fdd852017-06-27 16:58:51 +03001318 skb_tx_timestamp(skb);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001319 return cpdma_chan_submit(txch, skb, skb->data, skb->len,
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001320 priv->emac_port + cpsw->data.dual_emac);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001321}
1322
1323static inline void cpsw_add_dual_emac_def_ale_entries(
1324 struct cpsw_priv *priv, struct cpsw_slave *slave,
1325 u32 slave_port)
1326{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001327 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001328 u32 port_mask = 1 << slave_port | ALE_PORT_HOST;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001329
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001330 if (cpsw->version == CPSW_VERSION_1)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001331 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1332 else
1333 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001334 cpsw_ale_add_vlan(cpsw->ale, slave->port_vlan, port_mask,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001335 port_mask, port_mask, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001336 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001337 port_mask, ALE_VLAN, slave->port_vlan, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001338 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
1339 HOST_PORT_NUM, ALE_VLAN |
1340 ALE_SECURE, slave->port_vlan);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001341}
1342
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001343static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001344{
1345 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001346
1347 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1348 soft_reset(name, &slave->sliver->soft_reset);
1349}
1350
1351static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1352{
Mugunthan V Ndf828592012-03-18 20:17:54 +00001353 u32 slave_port;
Sekhar Nori30c57f02017-04-03 17:34:28 +05301354 struct phy_device *phy;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001355 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001356
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001357 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001358
1359 /* setup priority mapping */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001360 writel_relaxed(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001361
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001362 switch (cpsw->version) {
Richard Cochran9750a3a2012-10-29 08:45:15 +00001363 case CPSW_VERSION_1:
1364 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -05001365 /* Increase RX FIFO size to 5 for supporting fullduplex
1366 * flow control mode
1367 */
1368 slave_write(slave,
1369 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
1370 CPSW_MAX_BLKS_RX, CPSW1_MAX_BLKS);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001371 break;
1372 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05301373 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05301374 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +00001375 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
Grygorii Strashko48f5bcc2017-05-08 14:21:21 -05001376 /* Increase RX FIFO size to 5 for supporting fullduplex
1377 * flow control mode
1378 */
1379 slave_write(slave,
1380 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) |
1381 CPSW_MAX_BLKS_RX, CPSW2_MAX_BLKS);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001382 break;
1383 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001384
1385 /* setup max packet size, and mac address */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001386 writel_relaxed(cpsw->rx_packet_max, &slave->sliver->rx_maxlen);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001387 cpsw_set_slave_mac(slave, priv);
1388
1389 slave->mac_control = 0; /* no link yet */
1390
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001391 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001392
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001393 if (cpsw->data.dual_emac)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001394 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1395 else
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001396 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001397 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001398
David Rivshind733f7542016-04-27 21:32:31 -04001399 if (slave->data->phy_node) {
Sekhar Nori30c57f02017-04-03 17:34:28 +05301400 phy = of_phy_connect(priv->ndev, slave->data->phy_node,
Heiko Schocher9e42f712015-10-17 06:04:35 +02001401 &cpsw_adjust_link, 0, slave->data->phy_if);
Sekhar Nori30c57f02017-04-03 17:34:28 +05301402 if (!phy) {
Rob Herringf7ce9102017-07-18 16:43:19 -05001403 dev_err(priv->dev, "phy \"%pOF\" not found on slave %d\n",
1404 slave->data->phy_node,
David Rivshind733f7542016-04-27 21:32:31 -04001405 slave->slave_num);
1406 return;
1407 }
1408 } else {
Sekhar Nori30c57f02017-04-03 17:34:28 +05301409 phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001410 &cpsw_adjust_link, slave->data->phy_if);
Sekhar Nori30c57f02017-04-03 17:34:28 +05301411 if (IS_ERR(phy)) {
David Rivshind733f7542016-04-27 21:32:31 -04001412 dev_err(priv->dev,
1413 "phy \"%s\" not found on slave %d, err %ld\n",
1414 slave->data->phy_id, slave->slave_num,
Sekhar Nori30c57f02017-04-03 17:34:28 +05301415 PTR_ERR(phy));
David Rivshind733f7542016-04-27 21:32:31 -04001416 return;
1417 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001418 }
David Rivshind733f7542016-04-27 21:32:31 -04001419
Sekhar Nori30c57f02017-04-03 17:34:28 +05301420 slave->phy = phy;
1421
David Rivshind733f7542016-04-27 21:32:31 -04001422 phy_attached_info(slave->phy);
1423
1424 phy_start(slave->phy);
1425
1426 /* Configure GMII_SEL register */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001427 cpsw_phy_sel(cpsw->dev, slave->phy->interface, slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001428}
1429
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001430static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1431{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001432 struct cpsw_common *cpsw = priv->cpsw;
1433 const int vlan = cpsw->data.default_vlan;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001434 u32 reg;
1435 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001436 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001437
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001438 reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001439 CPSW2_PORT_VLAN;
1440
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001441 writel(vlan, &cpsw->host_port_regs->port_vlan);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001442
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001443 for (i = 0; i < cpsw->data.slaves; i++)
1444 slave_write(cpsw->slaves + i, vlan, reg);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001445
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001446 if (priv->ndev->flags & IFF_ALLMULTI)
1447 unreg_mcast_mask = ALE_ALL_PORTS;
1448 else
1449 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1450
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001451 cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001452 ALE_ALL_PORTS, ALE_ALL_PORTS,
1453 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001454}
1455
Mugunthan V Ndf828592012-03-18 20:17:54 +00001456static void cpsw_init_host_port(struct cpsw_priv *priv)
1457{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001458 u32 fifo_mode;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001459 u32 control_reg;
1460 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001461
Mugunthan V Ndf828592012-03-18 20:17:54 +00001462 /* soft reset the controller and initialize ale */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001463 soft_reset("cpsw", &cpsw->regs->soft_reset);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001464 cpsw_ale_start(cpsw->ale);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001465
1466 /* switch to vlan unaware mode */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001467 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_VLAN_AWARE,
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001468 CPSW_ALE_VLAN_AWARE);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001469 control_reg = readl(&cpsw->regs->control);
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -05001470 control_reg |= CPSW_VLAN_AWARE | CPSW_RX_VLAN_ENCAP;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001471 writel(control_reg, &cpsw->regs->control);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001472 fifo_mode = (cpsw->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001473 CPSW_FIFO_NORMAL_MODE;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001474 writel(fifo_mode, &cpsw->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001475
1476 /* setup host port priority mapping */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001477 writel_relaxed(CPDMA_TX_PRIORITY_MAP,
1478 &cpsw->host_port_regs->cpdma_tx_pri_map);
1479 writel_relaxed(0, &cpsw->host_port_regs->cpdma_rx_chan_map);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001480
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001481 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001482 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1483
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001484 if (!cpsw->data.dual_emac) {
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001485 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001486 0, 0);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001487 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001488 ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001489 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001490}
1491
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001492static int cpsw_fill_rx_channels(struct cpsw_priv *priv)
1493{
1494 struct cpsw_common *cpsw = priv->cpsw;
1495 struct sk_buff *skb;
1496 int ch_buf_num;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001497 int ch, i, ret;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001498
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001499 for (ch = 0; ch < cpsw->rx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001500 ch_buf_num = cpdma_chan_get_rx_buf_num(cpsw->rxv[ch].ch);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001501 for (i = 0; i < ch_buf_num; i++) {
1502 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1503 cpsw->rx_packet_max,
1504 GFP_KERNEL);
1505 if (!skb) {
1506 cpsw_err(priv, ifup, "cannot allocate skb\n");
1507 return -ENOMEM;
1508 }
1509
1510 skb_set_queue_mapping(skb, ch);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001511 ret = cpdma_chan_submit(cpsw->rxv[ch].ch, skb,
1512 skb->data, skb_tailroom(skb),
1513 0);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001514 if (ret < 0) {
1515 cpsw_err(priv, ifup,
1516 "cannot submit skb to channel %d rx, error %d\n",
1517 ch, ret);
1518 kfree_skb(skb);
1519 return ret;
1520 }
1521 kmemleak_not_leak(skb);
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001522 }
1523
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001524 cpsw_info(priv, ifup, "ch %d rx, submitted %d descriptors\n",
1525 ch, ch_buf_num);
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001526 }
1527
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001528 return 0;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001529}
1530
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001531static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_common *cpsw)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001532{
Schuyler Patton3995d262014-03-03 16:19:06 +05301533 u32 slave_port;
1534
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001535 slave_port = cpsw_get_slave_port(slave->slave_num);
Schuyler Patton3995d262014-03-03 16:19:06 +05301536
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001537 if (!slave->phy)
1538 return;
1539 phy_stop(slave->phy);
1540 phy_disconnect(slave->phy);
1541 slave->phy = NULL;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001542 cpsw_ale_control_set(cpsw->ale, slave_port,
Schuyler Patton3995d262014-03-03 16:19:06 +05301543 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Grygorii Strashko1f95ba02016-06-24 21:23:41 +03001544 soft_reset_slave(slave);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001545}
1546
Mugunthan V Ndf828592012-03-18 20:17:54 +00001547static int cpsw_ndo_open(struct net_device *ndev)
1548{
1549 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001550 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001551 int ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001552 u32 reg;
1553
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001554 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001555 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001556 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001557 return ret;
1558 }
Grygorii Strashko3fa88c52016-04-19 21:09:49 +03001559
Mugunthan V Ndf828592012-03-18 20:17:54 +00001560 netif_carrier_off(ndev);
1561
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001562 /* Notify the stack of the actual queue counts. */
1563 ret = netif_set_real_num_tx_queues(ndev, cpsw->tx_ch_num);
1564 if (ret) {
1565 dev_err(priv->dev, "cannot set real number of tx queues\n");
1566 goto err_cleanup;
1567 }
1568
1569 ret = netif_set_real_num_rx_queues(ndev, cpsw->rx_ch_num);
1570 if (ret) {
1571 dev_err(priv->dev, "cannot set real number of rx queues\n");
1572 goto err_cleanup;
1573 }
1574
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001575 reg = cpsw->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001576
1577 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1578 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1579 CPSW_RTL_VERSION(reg));
1580
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001581 /* Initialize host and slave ports */
1582 if (!cpsw->usage_count)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001583 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001584 for_each_slave(priv, cpsw_slave_open, priv);
1585
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001586 /* Add default VLAN */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001587 if (!cpsw->data.dual_emac)
Mugunthan V Ne6afea02014-06-18 17:21:48 +05301588 cpsw_add_default_vlan(priv);
1589 else
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001590 cpsw_ale_add_vlan(cpsw->ale, cpsw->data.default_vlan,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001591 ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001592
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001593 /* initialize shared resources for every ndev */
1594 if (!cpsw->usage_count) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001595 /* disable priority elevation */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001596 writel_relaxed(0, &cpsw->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001597
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001598 /* enable statistics collection only on all ports */
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001599 writel_relaxed(0x7, &cpsw->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001600
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301601 /* Enable internal fifo flow control */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001602 writel(0x7, &cpsw->regs->flow_control);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301603
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001604 napi_enable(&cpsw->napi_rx);
1605 napi_enable(&cpsw->napi_tx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301606
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001607 if (cpsw->tx_irq_disabled) {
1608 cpsw->tx_irq_disabled = false;
1609 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301610 }
1611
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001612 if (cpsw->rx_irq_disabled) {
1613 cpsw->rx_irq_disabled = false;
1614 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301615 }
1616
Ivan Khoronzhuk3802dce12016-08-22 21:18:24 +03001617 ret = cpsw_fill_rx_channels(priv);
1618 if (ret < 0)
1619 goto err_cleanup;
Mugunthan V Nf280e892013-12-11 22:09:05 -06001620
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06001621 if (cpts_register(cpsw->cpts))
Mugunthan V Nf280e892013-12-11 22:09:05 -06001622 dev_err(priv->dev, "error registering cpts device\n");
1623
Mugunthan V Ndf828592012-03-18 20:17:54 +00001624 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001625
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001626 /* Enable Interrupt pacing if configured */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001627 if (cpsw->coal_intvl != 0) {
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001628 struct ethtool_coalesce coal;
1629
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001630 coal.rx_coalesce_usecs = cpsw->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001631 cpsw_set_coalesce(ndev, &coal);
1632 }
1633
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001634 cpdma_ctlr_start(cpsw->dma);
1635 cpsw_intr_enable(cpsw);
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001636 cpsw->usage_count++;
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301637
Mugunthan V Ndf828592012-03-18 20:17:54 +00001638 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001639
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001640err_cleanup:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001641 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001642 for_each_slave(priv, cpsw_slave_stop, cpsw);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001643 pm_runtime_put_sync(cpsw->dev);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001644 netif_carrier_off(priv->ndev);
1645 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001646}
1647
1648static int cpsw_ndo_stop(struct net_device *ndev)
1649{
1650 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001651 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001652
1653 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001654 netif_tx_stop_all_queues(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001655 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001656
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001657 if (cpsw->usage_count <= 1) {
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001658 napi_disable(&cpsw->napi_rx);
1659 napi_disable(&cpsw->napi_tx);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001660 cpts_unregister(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001661 cpsw_intr_disable(cpsw);
1662 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001663 cpsw_ale_stop(cpsw->ale);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001664 }
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001665 for_each_slave(priv, cpsw_slave_stop, cpsw);
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02001666
1667 if (cpsw_need_resplit(cpsw))
1668 cpsw_split_res(ndev);
1669
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02001670 cpsw->usage_count--;
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001671 pm_runtime_put_sync(cpsw->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001672 return 0;
1673}
1674
1675static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1676 struct net_device *ndev)
1677{
1678 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001679 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhukf44f8412017-06-27 16:58:52 +03001680 struct cpts *cpts = cpsw->cpts;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001681 struct netdev_queue *txq;
1682 struct cpdma_chan *txch;
1683 int ret, q_idx;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001684
Mugunthan V Ndf828592012-03-18 20:17:54 +00001685 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1686 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001687 ndev->stats.tx_dropped++;
Ivan Khoronzhuk1bf96052017-02-11 03:49:57 +02001688 return NET_XMIT_DROP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001689 }
1690
Mugunthan V N9232b162013-02-11 09:52:19 +00001691 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
Ivan Khoronzhukf44f8412017-06-27 16:58:52 +03001692 cpts_is_tx_enabled(cpts) && cpts_can_timestamp(cpts, skb))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001693 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1694
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001695 q_idx = skb_get_queue_mapping(skb);
1696 if (q_idx >= cpsw->tx_ch_num)
1697 q_idx = q_idx % cpsw->tx_ch_num;
1698
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001699 txch = cpsw->txv[q_idx].ch;
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001700 txq = netdev_get_tx_queue(ndev, q_idx);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001701 ret = cpsw_tx_packet_submit(priv, skb, txch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001702 if (unlikely(ret != 0)) {
1703 cpsw_err(priv, tx_err, "desc submit failed\n");
1704 goto fail;
1705 }
1706
Mugunthan V Nfae50822013-01-17 06:31:34 +00001707 /* If there is no more tx desc left free then we need to
1708 * tell the kernel to stop sending us tx frames.
1709 */
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001710 if (unlikely(!cpdma_check_free_tx_desc(txch))) {
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001711 netif_tx_stop_queue(txq);
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001712
1713 /* Barrier, so that stop_queue visible to other cpus */
1714 smp_mb__after_atomic();
1715
1716 if (cpdma_check_free_tx_desc(txch))
1717 netif_tx_wake_queue(txq);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001718 }
Mugunthan V Nfae50822013-01-17 06:31:34 +00001719
Mugunthan V Ndf828592012-03-18 20:17:54 +00001720 return NETDEV_TX_OK;
1721fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001722 ndev->stats.tx_dropped++;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001723 netif_tx_stop_queue(txq);
Grygorii Strashko62f94c22018-02-06 19:17:06 -06001724
1725 /* Barrier, so that stop_queue visible to other cpus */
1726 smp_mb__after_atomic();
1727
1728 if (cpdma_check_free_tx_desc(txch))
1729 netif_tx_wake_queue(txq);
1730
Mugunthan V Ndf828592012-03-18 20:17:54 +00001731 return NETDEV_TX_BUSY;
1732}
1733
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001734#if IS_ENABLED(CONFIG_TI_CPTS)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001735
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001736static void cpsw_hwtstamp_v1(struct cpsw_common *cpsw)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001737{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001738 struct cpsw_slave *slave = &cpsw->slaves[cpsw->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001739 u32 ts_en, seq_id;
1740
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001741 if (!cpts_is_tx_enabled(cpsw->cpts) &&
1742 !cpts_is_rx_enabled(cpsw->cpts)) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001743 slave_write(slave, 0, CPSW1_TS_CTL);
1744 return;
1745 }
1746
1747 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1748 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1749
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001750 if (cpts_is_tx_enabled(cpsw->cpts))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001751 ts_en |= CPSW_V1_TS_TX_EN;
1752
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001753 if (cpts_is_rx_enabled(cpsw->cpts))
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001754 ts_en |= CPSW_V1_TS_RX_EN;
1755
1756 slave_write(slave, ts_en, CPSW1_TS_CTL);
1757 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1758}
1759
1760static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1761{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001762 struct cpsw_slave *slave;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001763 struct cpsw_common *cpsw = priv->cpsw;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001764 u32 ctrl, mtype;
1765
Ivan Khoronzhukcb7d78d02016-12-10 14:23:46 +02001766 slave = &cpsw->slaves[cpsw_slave_index(cpsw, priv)];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001767
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001768 ctrl = slave_read(slave, CPSW2_CONTROL);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001769 switch (cpsw->version) {
George Cherian09c55372014-05-02 12:02:02 +05301770 case CPSW_VERSION_2:
1771 ctrl &= ~CTRL_V2_ALL_TS_MASK;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001772
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001773 if (cpts_is_tx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301774 ctrl |= CTRL_V2_TX_TS_BITS;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001775
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001776 if (cpts_is_rx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301777 ctrl |= CTRL_V2_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001778 break;
George Cherian09c55372014-05-02 12:02:02 +05301779 case CPSW_VERSION_3:
1780 default:
1781 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1782
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001783 if (cpts_is_tx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301784 ctrl |= CTRL_V3_TX_TS_BITS;
1785
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001786 if (cpts_is_rx_enabled(cpsw->cpts))
George Cherian09c55372014-05-02 12:02:02 +05301787 ctrl |= CTRL_V3_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001788 break;
George Cherian09c55372014-05-02 12:02:02 +05301789 }
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001790
1791 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1792
1793 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1794 slave_write(slave, ctrl, CPSW2_CONTROL);
Grygorii Strashkodda5f5fe2017-11-30 18:21:11 -06001795 writel_relaxed(ETH_P_1588, &cpsw->regs->ts_ltype);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001796}
1797
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001798static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001799{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001800 struct cpsw_priv *priv = netdev_priv(dev);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001801 struct hwtstamp_config cfg;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001802 struct cpsw_common *cpsw = priv->cpsw;
1803 struct cpts *cpts = cpsw->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001804
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001805 if (cpsw->version != CPSW_VERSION_1 &&
1806 cpsw->version != CPSW_VERSION_2 &&
1807 cpsw->version != CPSW_VERSION_3)
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001808 return -EOPNOTSUPP;
1809
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001810 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1811 return -EFAULT;
1812
1813 /* reserved for future extensions */
1814 if (cfg.flags)
1815 return -EINVAL;
1816
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001817 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001818 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001819
1820 switch (cfg.rx_filter) {
1821 case HWTSTAMP_FILTER_NONE:
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001822 cpts_rx_enable(cpts, 0);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001823 break;
1824 case HWTSTAMP_FILTER_ALL:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001825 case HWTSTAMP_FILTER_NTP_ALL:
1826 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001827 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1828 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1829 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001830 cpts_rx_enable(cpts, HWTSTAMP_FILTER_PTP_V1_L4_EVENT);
1831 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V1_L4_EVENT;
1832 break;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001833 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1834 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1835 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1836 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1837 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1838 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1839 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1840 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1841 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001842 cpts_rx_enable(cpts, HWTSTAMP_FILTER_PTP_V2_EVENT);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001843 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1844 break;
1845 default:
1846 return -ERANGE;
1847 }
1848
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001849 cpts_tx_enable(cpts, cfg.tx_type == HWTSTAMP_TX_ON);
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001850
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001851 switch (cpsw->version) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001852 case CPSW_VERSION_1:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001853 cpsw_hwtstamp_v1(cpsw);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001854 break;
1855 case CPSW_VERSION_2:
George Cherianf7d403c2014-05-02 12:02:01 +05301856 case CPSW_VERSION_3:
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001857 cpsw_hwtstamp_v2(priv);
1858 break;
1859 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001860 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001861 }
1862
1863 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1864}
1865
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001866static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1867{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001868 struct cpsw_common *cpsw = ndev_to_cpsw(dev);
1869 struct cpts *cpts = cpsw->cpts;
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001870 struct hwtstamp_config cfg;
1871
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001872 if (cpsw->version != CPSW_VERSION_1 &&
1873 cpsw->version != CPSW_VERSION_2 &&
1874 cpsw->version != CPSW_VERSION_3)
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001875 return -EOPNOTSUPP;
1876
1877 cfg.flags = 0;
Grygorii Strashkob63ba582016-12-06 18:00:35 -06001878 cfg.tx_type = cpts_is_tx_enabled(cpts) ?
1879 HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1880 cfg.rx_filter = (cpts_is_rx_enabled(cpts) ?
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05001881 cpts->rx_enable : HWTSTAMP_FILTER_NONE);
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001882
1883 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1884}
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001885#else
1886static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1887{
1888 return -EOPNOTSUPP;
1889}
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001890
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06001891static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
1892{
1893 return -EOPNOTSUPP;
1894}
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001895#endif /*CONFIG_TI_CPTS*/
1896
1897static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1898{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001899 struct cpsw_priv *priv = netdev_priv(dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001900 struct cpsw_common *cpsw = priv->cpsw;
1901 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001902
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001903 if (!netif_running(dev))
1904 return -EINVAL;
1905
Mugunthan V N11f2c982013-03-11 23:16:38 +00001906 switch (cmd) {
Mugunthan V N11f2c982013-03-11 23:16:38 +00001907 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001908 return cpsw_hwtstamp_set(dev, req);
1909 case SIOCGHWTSTAMP:
1910 return cpsw_hwtstamp_get(dev, req);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001911 }
1912
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001913 if (!cpsw->slaves[slave_no].phy)
Stefan Sørensenc1b59942014-02-16 14:54:25 +01001914 return -EOPNOTSUPP;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001915 return phy_mii_ioctl(cpsw->slaves[slave_no].phy, req, cmd);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001916}
1917
Mugunthan V Ndf828592012-03-18 20:17:54 +00001918static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1919{
1920 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001921 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001922 int ch;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001923
1924 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001925 ndev->stats.tx_errors++;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001926 cpsw_intr_disable(cpsw);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001927 for (ch = 0; ch < cpsw->tx_ch_num; ch++) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02001928 cpdma_chan_stop(cpsw->txv[ch].ch);
1929 cpdma_chan_start(cpsw->txv[ch].ch);
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03001930 }
1931
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001932 cpsw_intr_enable(cpsw);
Grygorii Strashko75514b62017-03-31 18:41:23 -05001933 netif_trans_update(ndev);
1934 netif_tx_wake_all_queues(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001935}
1936
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301937static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1938{
1939 struct cpsw_priv *priv = netdev_priv(ndev);
1940 struct sockaddr *addr = (struct sockaddr *)p;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001941 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301942 int flags = 0;
1943 u16 vid = 0;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001944 int ret;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301945
1946 if (!is_valid_ether_addr(addr->sa_data))
1947 return -EADDRNOTAVAIL;
1948
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001949 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001950 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001951 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001952 return ret;
1953 }
1954
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001955 if (cpsw->data.dual_emac) {
1956 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301957 flags = ALE_VLAN;
1958 }
1959
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001960 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301961 flags, vid);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03001962 cpsw_ale_add_ucast(cpsw->ale, addr->sa_data, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301963 flags, vid);
1964
1965 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1966 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1967 for_each_slave(priv, cpsw_set_slave_mac, priv);
1968
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001969 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001970
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301971 return 0;
1972}
1973
Mugunthan V Ndf828592012-03-18 20:17:54 +00001974#ifdef CONFIG_NET_POLL_CONTROLLER
1975static void cpsw_ndo_poll_controller(struct net_device *ndev)
1976{
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001977 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001978
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03001979 cpsw_intr_disable(cpsw);
1980 cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw);
1981 cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw);
1982 cpsw_intr_enable(cpsw);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001983}
1984#endif
1985
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001986static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1987 unsigned short vid)
1988{
1989 int ret;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301990 int unreg_mcast_mask = 0;
1991 u32 port_mask;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001992 struct cpsw_common *cpsw = priv->cpsw;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001993
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001994 if (cpsw->data.dual_emac) {
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301995 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001996
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301997 if (priv->ndev->flags & IFF_ALLMULTI)
1998 unreg_mcast_mask = port_mask;
1999 } else {
2000 port_mask = ALE_ALL_PORTS;
2001
2002 if (priv->ndev->flags & IFF_ALLMULTI)
2003 unreg_mcast_mask = ALE_ALL_PORTS;
2004 else
2005 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
2006 }
2007
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002008 ret = cpsw_ale_add_vlan(cpsw->ale, vid, port_mask, 0, port_mask,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03002009 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002010 if (ret != 0)
2011 return ret;
2012
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002013 ret = cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03002014 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002015 if (ret != 0)
2016 goto clean_vid;
2017
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002018 ret = cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast,
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05302019 port_mask, ALE_VLAN, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002020 if (ret != 0)
2021 goto clean_vlan_ucast;
2022 return 0;
2023
2024clean_vlan_ucast:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002025 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03002026 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002027clean_vid:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002028 cpsw_ale_del_vlan(cpsw->ale, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002029 return ret;
2030}
2031
2032static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00002033 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002034{
2035 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002036 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002037 int ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002038
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002039 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002040 return 0;
2041
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002042 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002043 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002044 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002045 return ret;
2046 }
2047
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002048 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05302049 /* In dual EMAC, reserved VLAN id should not be used for
2050 * creating VLAN interfaces as this can break the dual
2051 * EMAC port separation
2052 */
2053 int i;
2054
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002055 for (i = 0; i < cpsw->data.slaves; i++) {
2056 if (vid == cpsw->slaves[i].port_vlan)
Mugunthan V N02a54162015-01-22 15:19:22 +05302057 return -EINVAL;
2058 }
2059 }
2060
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002061 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002062 ret = cpsw_add_vlan_ale_entry(priv, vid);
2063
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002064 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002065 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002066}
2067
2068static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00002069 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002070{
2071 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002072 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002073 int ret;
2074
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002075 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002076 return 0;
2077
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002078 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002079 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002080 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002081 return ret;
2082 }
2083
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002084 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05302085 int i;
2086
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002087 for (i = 0; i < cpsw->data.slaves; i++) {
2088 if (vid == cpsw->slaves[i].port_vlan)
Mugunthan V N02a54162015-01-22 15:19:22 +05302089 return -EINVAL;
2090 }
2091 }
2092
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002093 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002094 ret = cpsw_ale_del_vlan(cpsw->ale, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002095 if (ret != 0)
2096 return ret;
2097
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002098 ret = cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03002099 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002100 if (ret != 0)
2101 return ret;
2102
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002103 ret = cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast,
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002104 0, ALE_VLAN, vid);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002105 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03002106 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002107}
2108
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002109static int cpsw_ndo_set_tx_maxrate(struct net_device *ndev, int queue, u32 rate)
2110{
2111 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002112 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002113 struct cpsw_slave *slave;
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002114 u32 min_rate;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002115 u32 ch_rate;
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002116 int i, ret;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002117
2118 ch_rate = netdev_get_tx_queue(ndev, queue)->tx_maxrate;
2119 if (ch_rate == rate)
2120 return 0;
2121
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002122 ch_rate = rate * 1000;
2123 min_rate = cpdma_chan_get_min_rate(cpsw->dma);
2124 if ((ch_rate < min_rate && ch_rate)) {
2125 dev_err(priv->dev, "The channel rate cannot be less than %dMbps",
2126 min_rate);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002127 return -EINVAL;
2128 }
2129
Ivan Khoronzhuk0be01b82016-12-10 14:23:49 +02002130 if (rate > cpsw->speed) {
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002131 dev_err(priv->dev, "The channel rate cannot be more than 2Gbps");
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002132 return -EINVAL;
2133 }
2134
2135 ret = pm_runtime_get_sync(cpsw->dev);
2136 if (ret < 0) {
2137 pm_runtime_put_noidle(cpsw->dev);
2138 return ret;
2139 }
2140
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002141 ret = cpdma_chan_set_rate(cpsw->txv[queue].ch, ch_rate);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002142 pm_runtime_put(cpsw->dev);
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002143
2144 if (ret)
2145 return ret;
2146
Ivan Khoronzhuk52986a22016-12-10 14:23:50 +02002147 /* update rates for slaves tx queues */
2148 for (i = 0; i < cpsw->data.slaves; i++) {
2149 slave = &cpsw->slaves[i];
2150 if (!slave->ndev)
2151 continue;
2152
2153 netdev_get_tx_queue(slave->ndev, queue)->tx_maxrate = rate;
2154 }
2155
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002156 cpsw_split_res(ndev);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002157 return ret;
2158}
2159
Mugunthan V Ndf828592012-03-18 20:17:54 +00002160static const struct net_device_ops cpsw_netdev_ops = {
2161 .ndo_open = cpsw_ndo_open,
2162 .ndo_stop = cpsw_ndo_stop,
2163 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05302164 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002165 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002166 .ndo_validate_addr = eth_validate_addr,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002167 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00002168 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002169 .ndo_set_tx_maxrate = cpsw_ndo_set_tx_maxrate,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002170#ifdef CONFIG_NET_POLL_CONTROLLER
2171 .ndo_poll_controller = cpsw_ndo_poll_controller,
2172#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00002173 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
2174 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002175};
2176
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302177static int cpsw_get_regs_len(struct net_device *ndev)
2178{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002179 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302180
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002181 return cpsw->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302182}
2183
2184static void cpsw_get_regs(struct net_device *ndev,
2185 struct ethtool_regs *regs, void *p)
2186{
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302187 u32 *reg = p;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002188 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302189
2190 /* update CPSW IP version */
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002191 regs->version = cpsw->version;
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302192
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002193 cpsw_ale_dump(cpsw->ale, reg);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302194}
2195
Mugunthan V Ndf828592012-03-18 20:17:54 +00002196static void cpsw_get_drvinfo(struct net_device *ndev,
2197 struct ethtool_drvinfo *info)
2198{
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002199 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002200 struct platform_device *pdev = to_platform_device(cpsw->dev);
Jiri Pirko7826d432013-01-06 00:44:26 +00002201
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302202 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00002203 strlcpy(info->version, "1.0", sizeof(info->version));
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002204 strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00002205}
2206
2207static u32 cpsw_get_msglevel(struct net_device *ndev)
2208{
2209 struct cpsw_priv *priv = netdev_priv(ndev);
2210 return priv->msg_enable;
2211}
2212
2213static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
2214{
2215 struct cpsw_priv *priv = netdev_priv(ndev);
2216 priv->msg_enable = value;
2217}
2218
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002219#if IS_ENABLED(CONFIG_TI_CPTS)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002220static int cpsw_get_ts_info(struct net_device *ndev,
2221 struct ethtool_ts_info *info)
2222{
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002223 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002224
2225 info->so_timestamping =
2226 SOF_TIMESTAMPING_TX_HARDWARE |
2227 SOF_TIMESTAMPING_TX_SOFTWARE |
2228 SOF_TIMESTAMPING_RX_HARDWARE |
2229 SOF_TIMESTAMPING_RX_SOFTWARE |
2230 SOF_TIMESTAMPING_SOFTWARE |
2231 SOF_TIMESTAMPING_RAW_HARDWARE;
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002232 info->phc_index = cpsw->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002233 info->tx_types =
2234 (1 << HWTSTAMP_TX_OFF) |
2235 (1 << HWTSTAMP_TX_ON);
2236 info->rx_filters =
2237 (1 << HWTSTAMP_FILTER_NONE) |
Grygorii Strashkoe9523a52017-06-08 13:51:31 -05002238 (1 << HWTSTAMP_FILTER_PTP_V1_L4_EVENT) |
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002239 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002240 return 0;
2241}
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002242#else
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002243static int cpsw_get_ts_info(struct net_device *ndev,
2244 struct ethtool_ts_info *info)
2245{
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002246 info->so_timestamping =
2247 SOF_TIMESTAMPING_TX_SOFTWARE |
2248 SOF_TIMESTAMPING_RX_SOFTWARE |
2249 SOF_TIMESTAMPING_SOFTWARE;
2250 info->phc_index = -1;
2251 info->tx_types = 0;
2252 info->rx_filters = 0;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002253 return 0;
2254}
Grygorii Strashkoc8395d42016-12-06 18:00:34 -06002255#endif
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002256
Philippe Reynes24798762016-10-08 17:46:15 +02002257static int cpsw_get_link_ksettings(struct net_device *ndev,
2258 struct ethtool_link_ksettings *ecmd)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002259{
2260 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002261 struct cpsw_common *cpsw = priv->cpsw;
2262 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002263
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03002264 if (!cpsw->slaves[slave_no].phy)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002265 return -EOPNOTSUPP;
yuval.shaia@oracle.com55141742017-06-13 10:09:46 +03002266
2267 phy_ethtool_ksettings_get(cpsw->slaves[slave_no].phy, ecmd);
2268 return 0;
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002269}
2270
Philippe Reynes24798762016-10-08 17:46:15 +02002271static int cpsw_set_link_ksettings(struct net_device *ndev,
2272 const struct ethtool_link_ksettings *ecmd)
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002273{
2274 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002275 struct cpsw_common *cpsw = priv->cpsw;
2276 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002277
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002278 if (cpsw->slaves[slave_no].phy)
Philippe Reynes24798762016-10-08 17:46:15 +02002279 return phy_ethtool_ksettings_set(cpsw->slaves[slave_no].phy,
2280 ecmd);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00002281 else
2282 return -EOPNOTSUPP;
2283}
2284
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002285static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2286{
2287 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002288 struct cpsw_common *cpsw = priv->cpsw;
2289 int slave_no = cpsw_slave_index(cpsw, priv);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002290
2291 wol->supported = 0;
2292 wol->wolopts = 0;
2293
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002294 if (cpsw->slaves[slave_no].phy)
2295 phy_ethtool_get_wol(cpsw->slaves[slave_no].phy, wol);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002296}
2297
2298static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
2299{
2300 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002301 struct cpsw_common *cpsw = priv->cpsw;
2302 int slave_no = cpsw_slave_index(cpsw, priv);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002303
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002304 if (cpsw->slaves[slave_no].phy)
2305 return phy_ethtool_set_wol(cpsw->slaves[slave_no].phy, wol);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002306 else
2307 return -EOPNOTSUPP;
2308}
2309
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302310static void cpsw_get_pauseparam(struct net_device *ndev,
2311 struct ethtool_pauseparam *pause)
2312{
2313 struct cpsw_priv *priv = netdev_priv(ndev);
2314
2315 pause->autoneg = AUTONEG_DISABLE;
2316 pause->rx_pause = priv->rx_pause ? true : false;
2317 pause->tx_pause = priv->tx_pause ? true : false;
2318}
2319
2320static int cpsw_set_pauseparam(struct net_device *ndev,
2321 struct ethtool_pauseparam *pause)
2322{
2323 struct cpsw_priv *priv = netdev_priv(ndev);
2324 bool link;
2325
2326 priv->rx_pause = pause->rx_pause ? true : false;
2327 priv->tx_pause = pause->tx_pause ? true : false;
2328
2329 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302330 return 0;
2331}
2332
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002333static int cpsw_ethtool_op_begin(struct net_device *ndev)
2334{
2335 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002336 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002337 int ret;
2338
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002339 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002340 if (ret < 0) {
2341 cpsw_err(priv, drv, "ethtool begin failed %d\n", ret);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002342 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002343 }
2344
2345 return ret;
2346}
2347
2348static void cpsw_ethtool_op_complete(struct net_device *ndev)
2349{
2350 struct cpsw_priv *priv = netdev_priv(ndev);
2351 int ret;
2352
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002353 ret = pm_runtime_put(priv->cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002354 if (ret < 0)
2355 cpsw_err(priv, drv, "ethtool complete failed %d\n", ret);
2356}
2357
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002358static void cpsw_get_channels(struct net_device *ndev,
2359 struct ethtool_channels *ch)
2360{
2361 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
2362
2363 ch->max_combined = 0;
2364 ch->max_rx = CPSW_MAX_QUEUES;
2365 ch->max_tx = CPSW_MAX_QUEUES;
2366 ch->max_other = 0;
2367 ch->other_count = 0;
2368 ch->rx_count = cpsw->rx_ch_num;
2369 ch->tx_count = cpsw->tx_ch_num;
2370 ch->combined_count = 0;
2371}
2372
2373static int cpsw_check_ch_settings(struct cpsw_common *cpsw,
2374 struct ethtool_channels *ch)
2375{
2376 if (ch->combined_count)
2377 return -EINVAL;
2378
2379 /* verify we have at least one channel in each direction */
2380 if (!ch->rx_count || !ch->tx_count)
2381 return -EINVAL;
2382
2383 if (ch->rx_count > cpsw->data.channels ||
2384 ch->tx_count > cpsw->data.channels)
2385 return -EINVAL;
2386
2387 return 0;
2388}
2389
2390static int cpsw_update_channels_res(struct cpsw_priv *priv, int ch_num, int rx)
2391{
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002392 struct cpsw_common *cpsw = priv->cpsw;
2393 void (*handler)(void *, int, int);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002394 struct netdev_queue *queue;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002395 struct cpsw_vector *vec;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002396 int ret, *ch;
2397
2398 if (rx) {
2399 ch = &cpsw->rx_ch_num;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002400 vec = cpsw->rxv;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002401 handler = cpsw_rx_handler;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002402 } else {
2403 ch = &cpsw->tx_ch_num;
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002404 vec = cpsw->txv;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002405 handler = cpsw_tx_handler;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002406 }
2407
2408 while (*ch < ch_num) {
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002409 vec[*ch].ch = cpdma_chan_create(cpsw->dma, *ch, handler, rx);
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02002410 queue = netdev_get_tx_queue(priv->ndev, *ch);
2411 queue->tx_maxrate = 0;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002412
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002413 if (IS_ERR(vec[*ch].ch))
2414 return PTR_ERR(vec[*ch].ch);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002415
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002416 if (!vec[*ch].ch)
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002417 return -EINVAL;
2418
2419 cpsw_info(priv, ifup, "created new %d %s channel\n", *ch,
2420 (rx ? "rx" : "tx"));
2421 (*ch)++;
2422 }
2423
2424 while (*ch > ch_num) {
2425 (*ch)--;
2426
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002427 ret = cpdma_chan_destroy(vec[*ch].ch);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002428 if (ret)
2429 return ret;
2430
2431 cpsw_info(priv, ifup, "destroyed %d %s channel\n", *ch,
2432 (rx ? "rx" : "tx"));
2433 }
2434
2435 return 0;
2436}
2437
2438static int cpsw_update_channels(struct cpsw_priv *priv,
2439 struct ethtool_channels *ch)
2440{
2441 int ret;
2442
2443 ret = cpsw_update_channels_res(priv, ch->rx_count, 1);
2444 if (ret)
2445 return ret;
2446
2447 ret = cpsw_update_channels_res(priv, ch->tx_count, 0);
2448 if (ret)
2449 return ret;
2450
2451 return 0;
2452}
2453
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002454static void cpsw_suspend_data_pass(struct net_device *ndev)
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002455{
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002456 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002457 struct cpsw_slave *slave;
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002458 int i;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002459
2460 /* Disable NAPI scheduling */
2461 cpsw_intr_disable(cpsw);
2462
2463 /* Stop all transmit queues for every network device.
2464 * Disable re-using rx descriptors with dormant_on.
2465 */
2466 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) {
2467 if (!(slave->ndev && netif_running(slave->ndev)))
2468 continue;
2469
2470 netif_tx_stop_all_queues(slave->ndev);
2471 netif_dormant_on(slave->ndev);
2472 }
2473
2474 /* Handle rest of tx packets and stop cpdma channels */
2475 cpdma_ctlr_stop(cpsw->dma);
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002476}
2477
2478static int cpsw_resume_data_pass(struct net_device *ndev)
2479{
2480 struct cpsw_priv *priv = netdev_priv(ndev);
2481 struct cpsw_common *cpsw = priv->cpsw;
2482 struct cpsw_slave *slave;
2483 int i, ret;
2484
2485 /* Allow rx packets handling */
2486 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++)
2487 if (slave->ndev && netif_running(slave->ndev))
2488 netif_dormant_off(slave->ndev);
2489
2490 /* After this receive is started */
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002491 if (cpsw->usage_count) {
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002492 ret = cpsw_fill_rx_channels(priv);
2493 if (ret)
2494 return ret;
2495
2496 cpdma_ctlr_start(cpsw->dma);
2497 cpsw_intr_enable(cpsw);
2498 }
2499
2500 /* Resume transmit for every affected interface */
2501 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++)
2502 if (slave->ndev && netif_running(slave->ndev))
2503 netif_tx_start_all_queues(slave->ndev);
2504
2505 return 0;
2506}
2507
2508static int cpsw_set_channels(struct net_device *ndev,
2509 struct ethtool_channels *chs)
2510{
2511 struct cpsw_priv *priv = netdev_priv(ndev);
2512 struct cpsw_common *cpsw = priv->cpsw;
2513 struct cpsw_slave *slave;
2514 int i, ret;
2515
2516 ret = cpsw_check_ch_settings(cpsw, chs);
2517 if (ret < 0)
2518 return ret;
2519
2520 cpsw_suspend_data_pass(ndev);
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002521 ret = cpsw_update_channels(priv, chs);
2522 if (ret)
2523 goto err;
2524
2525 for (i = cpsw->data.slaves, slave = cpsw->slaves; i; i--, slave++) {
2526 if (!(slave->ndev && netif_running(slave->ndev)))
2527 continue;
2528
2529 /* Inform stack about new count of queues */
2530 ret = netif_set_real_num_tx_queues(slave->ndev,
2531 cpsw->tx_ch_num);
2532 if (ret) {
2533 dev_err(priv->dev, "cannot set real number of tx queues\n");
2534 goto err;
2535 }
2536
2537 ret = netif_set_real_num_rx_queues(slave->ndev,
2538 cpsw->rx_ch_num);
2539 if (ret) {
2540 dev_err(priv->dev, "cannot set real number of rx queues\n");
2541 goto err;
2542 }
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002543 }
2544
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002545 if (cpsw->usage_count)
Ivan Khoronzhuk32b78d82016-12-10 14:23:48 +02002546 cpsw_split_res(ndev);
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02002547
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002548 ret = cpsw_resume_data_pass(ndev);
2549 if (!ret)
2550 return 0;
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002551err:
2552 dev_err(priv->dev, "cannot update channels number, closing device\n");
2553 dev_close(ndev);
2554 return ret;
2555}
2556
Yegor Yefremova0909942016-11-28 09:41:33 +01002557static int cpsw_get_eee(struct net_device *ndev, struct ethtool_eee *edata)
2558{
2559 struct cpsw_priv *priv = netdev_priv(ndev);
2560 struct cpsw_common *cpsw = priv->cpsw;
2561 int slave_no = cpsw_slave_index(cpsw, priv);
2562
2563 if (cpsw->slaves[slave_no].phy)
2564 return phy_ethtool_get_eee(cpsw->slaves[slave_no].phy, edata);
2565 else
2566 return -EOPNOTSUPP;
2567}
2568
2569static int cpsw_set_eee(struct net_device *ndev, struct ethtool_eee *edata)
2570{
2571 struct cpsw_priv *priv = netdev_priv(ndev);
2572 struct cpsw_common *cpsw = priv->cpsw;
2573 int slave_no = cpsw_slave_index(cpsw, priv);
2574
2575 if (cpsw->slaves[slave_no].phy)
2576 return phy_ethtool_set_eee(cpsw->slaves[slave_no].phy, edata);
2577 else
2578 return -EOPNOTSUPP;
2579}
2580
Yegor Yefremov6bb10c22016-11-28 10:47:52 +01002581static int cpsw_nway_reset(struct net_device *ndev)
2582{
2583 struct cpsw_priv *priv = netdev_priv(ndev);
2584 struct cpsw_common *cpsw = priv->cpsw;
2585 int slave_no = cpsw_slave_index(cpsw, priv);
2586
2587 if (cpsw->slaves[slave_no].phy)
2588 return genphy_restart_aneg(cpsw->slaves[slave_no].phy);
2589 else
2590 return -EOPNOTSUPP;
2591}
2592
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002593static void cpsw_get_ringparam(struct net_device *ndev,
2594 struct ethtool_ringparam *ering)
2595{
2596 struct cpsw_priv *priv = netdev_priv(ndev);
2597 struct cpsw_common *cpsw = priv->cpsw;
2598
2599 /* not supported */
2600 ering->tx_max_pending = 0;
2601 ering->tx_pending = cpdma_get_num_tx_descs(cpsw->dma);
Ivan Khoronzhukf89d21b2017-01-08 22:12:27 +02002602 ering->rx_max_pending = descs_pool_size - CPSW_MAX_QUEUES;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002603 ering->rx_pending = cpdma_get_num_rx_descs(cpsw->dma);
2604}
2605
2606static int cpsw_set_ringparam(struct net_device *ndev,
2607 struct ethtool_ringparam *ering)
2608{
2609 struct cpsw_priv *priv = netdev_priv(ndev);
2610 struct cpsw_common *cpsw = priv->cpsw;
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002611 int ret;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002612
2613 /* ignore ering->tx_pending - only rx_pending adjustment is supported */
2614
2615 if (ering->rx_mini_pending || ering->rx_jumbo_pending ||
Ivan Khoronzhukf89d21b2017-01-08 22:12:27 +02002616 ering->rx_pending < CPSW_MAX_QUEUES ||
2617 ering->rx_pending > (descs_pool_size - CPSW_MAX_QUEUES))
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002618 return -EINVAL;
2619
2620 if (ering->rx_pending == cpdma_get_num_rx_descs(cpsw->dma))
2621 return 0;
2622
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002623 cpsw_suspend_data_pass(ndev);
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002624
2625 cpdma_set_num_rx_descs(cpsw->dma, ering->rx_pending);
2626
Ivan Khoronzhukd5bc1612017-02-14 16:02:36 +02002627 if (cpsw->usage_count)
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002628 cpdma_chan_split_pool(cpsw->dma);
2629
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002630 ret = cpsw_resume_data_pass(ndev);
2631 if (!ret)
2632 return 0;
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002633
Ivan Khoronzhuk022d7ad2017-01-19 18:58:27 +02002634 dev_err(&ndev->dev, "cannot set ring params, closing device\n");
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002635 dev_close(ndev);
2636 return ret;
2637}
2638
Mugunthan V Ndf828592012-03-18 20:17:54 +00002639static const struct ethtool_ops cpsw_ethtool_ops = {
2640 .get_drvinfo = cpsw_get_drvinfo,
2641 .get_msglevel = cpsw_get_msglevel,
2642 .set_msglevel = cpsw_set_msglevel,
2643 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00002644 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002645 .get_coalesce = cpsw_get_coalesce,
2646 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05302647 .get_sset_count = cpsw_get_sset_count,
2648 .get_strings = cpsw_get_strings,
2649 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05302650 .get_pauseparam = cpsw_get_pauseparam,
2651 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02002652 .get_wol = cpsw_get_wol,
2653 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05302654 .get_regs_len = cpsw_get_regs_len,
2655 .get_regs = cpsw_get_regs,
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002656 .begin = cpsw_ethtool_op_begin,
2657 .complete = cpsw_ethtool_op_complete,
Ivan Khoronzhukce52c742016-08-22 21:18:28 +03002658 .get_channels = cpsw_get_channels,
2659 .set_channels = cpsw_set_channels,
Philippe Reynes24798762016-10-08 17:46:15 +02002660 .get_link_ksettings = cpsw_get_link_ksettings,
2661 .set_link_ksettings = cpsw_set_link_ksettings,
Yegor Yefremova0909942016-11-28 09:41:33 +01002662 .get_eee = cpsw_get_eee,
2663 .set_eee = cpsw_set_eee,
Yegor Yefremov6bb10c22016-11-28 10:47:52 +01002664 .nway_reset = cpsw_nway_reset,
Grygorii Strashkobe034fc2017-01-06 14:07:34 -06002665 .get_ringparam = cpsw_get_ringparam,
2666 .set_ringparam = cpsw_set_ringparam,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002667};
2668
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002669static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_common *cpsw,
Richard Cochran549985e2012-11-14 09:07:56 +00002670 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002671{
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002672 void __iomem *regs = cpsw->regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002673 int slave_num = slave->slave_num;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002674 struct cpsw_slave_data *data = cpsw->data.slave_data + slave_num;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002675
2676 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00002677 slave->regs = regs + slave_reg_ofs;
2678 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002679 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002680}
2681
David Rivshin552165b2016-04-27 21:25:25 -04002682static int cpsw_probe_dt(struct cpsw_platform_data *data,
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002683 struct platform_device *pdev)
2684{
2685 struct device_node *node = pdev->dev.of_node;
2686 struct device_node *slave_node;
2687 int i = 0, ret;
2688 u32 prop;
2689
2690 if (!node)
2691 return -EINVAL;
2692
2693 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302694 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002695 return -EINVAL;
2696 }
2697 data->slaves = prop;
2698
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002699 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302700 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302701 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002702 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002703 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002704
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302705 data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
2706 * sizeof(struct cpsw_slave_data),
2707 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00002708 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302709 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002710
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002711 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302712 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302713 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002714 }
2715 data->channels = prop;
2716
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002717 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302718 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302719 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002720 }
2721 data->ale_entries = prop;
2722
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002723 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302724 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302725 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002726 }
2727 data->bd_ram_size = prop;
2728
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002729 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302730 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302731 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002732 }
2733 data->mac_control = prop;
2734
Markus Pargmann281abd92013-10-04 14:44:40 +02002735 if (of_property_read_bool(node, "dual_emac"))
2736 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002737
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002738 /*
2739 * Populate all the child nodes here...
2740 */
2741 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2742 /* We do not want to force this, as in some cases may not have child */
2743 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05302744 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002745
Ben Hutchings8658aaf2016-06-21 01:16:31 +01002746 for_each_available_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00002747 struct cpsw_slave_data *slave_data = data->slave_data + i;
2748 const void *mac_addr = NULL;
Richard Cochran549985e2012-11-14 09:07:56 +00002749 int lenp;
2750 const __be32 *parp;
Richard Cochran549985e2012-11-14 09:07:56 +00002751
Markus Pargmannf468b102013-10-04 14:44:39 +02002752 /* This is no slave child node, continue */
2753 if (strcmp(slave_node->name, "slave"))
2754 continue;
2755
David Rivshin552165b2016-04-27 21:25:25 -04002756 slave_data->phy_node = of_parse_phandle(slave_node,
2757 "phy-handle", 0);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002758 parp = of_get_property(slave_node, "phy_id", &lenp);
David Rivshinae092b52016-04-27 21:38:26 -04002759 if (slave_data->phy_node) {
2760 dev_dbg(&pdev->dev,
Rob Herringf7ce9102017-07-18 16:43:19 -05002761 "slave[%d] using phy-handle=\"%pOF\"\n",
2762 i, slave_data->phy_node);
David Rivshinae092b52016-04-27 21:38:26 -04002763 } else if (of_phy_is_fixed_link(slave_node)) {
David Rivshindfc0a6d2015-12-16 23:02:11 -05002764 /* In the case of a fixed PHY, the DT node associated
2765 * to the PHY is the Ethernet MAC DT node.
2766 */
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002767 ret = of_phy_register_fixed_link(slave_node);
Johan Hovold23a09872016-11-17 17:40:04 +01002768 if (ret) {
2769 if (ret != -EPROBE_DEFER)
2770 dev_err(&pdev->dev, "failed to register fixed-link phy: %d\n", ret);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002771 return ret;
Johan Hovold23a09872016-11-17 17:40:04 +01002772 }
David Rivshin06cd6d62016-04-27 21:45:45 -04002773 slave_data->phy_node = of_node_get(slave_node);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002774 } else if (parp) {
2775 u32 phyid;
2776 struct device_node *mdio_node;
2777 struct platform_device *mdio;
2778
2779 if (lenp != (sizeof(__be32) * 2)) {
2780 dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
2781 goto no_phy_slave;
2782 }
2783 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2784 phyid = be32_to_cpup(parp+1);
2785 mdio = of_find_device_by_node(mdio_node);
2786 of_node_put(mdio_node);
2787 if (!mdio) {
2788 dev_err(&pdev->dev, "Missing mdio platform device\n");
2789 return -EINVAL;
2790 }
2791 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2792 PHY_ID_FMT, mdio->name, phyid);
Johan Hovold86e1d5a2016-11-17 17:39:59 +01002793 put_device(&mdio->dev);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002794 } else {
David Rivshinae092b52016-04-27 21:38:26 -04002795 dev_err(&pdev->dev,
2796 "No slave[%d] phy_id, phy-handle, or fixed-link property\n",
2797 i);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002798 goto no_phy_slave;
2799 }
Mugunthan V N47276fc2014-10-24 18:51:33 +05302800 slave_data->phy_if = of_get_phy_mode(slave_node);
2801 if (slave_data->phy_if < 0) {
2802 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2803 i);
2804 return slave_data->phy_if;
2805 }
2806
2807no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00002808 mac_addr = of_get_mac_address(slave_node);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002809 if (mac_addr) {
Richard Cochran549985e2012-11-14 09:07:56 +00002810 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002811 } else {
Mugunthan V Nb6745f62015-09-21 15:56:50 +05302812 ret = ti_cm_get_macid(&pdev->dev, i,
2813 slave_data->mac_addr);
2814 if (ret)
2815 return ret;
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002816 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002817 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00002818 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002819 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302820 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002821 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05302822 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2823 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002824 } else {
2825 slave_data->dual_emac_res_vlan = prop;
2826 }
2827 }
2828
Richard Cochran549985e2012-11-14 09:07:56 +00002829 i++;
Mugunthan V N3a27bfa2013-12-02 12:53:39 +05302830 if (i == data->slaves)
2831 break;
Richard Cochran549985e2012-11-14 09:07:56 +00002832 }
2833
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002834 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002835}
2836
Johan Hovolda4e32b02016-11-17 17:40:00 +01002837static void cpsw_remove_dt(struct platform_device *pdev)
2838{
Johan Hovold8cbcc462016-11-17 17:40:01 +01002839 struct net_device *ndev = platform_get_drvdata(pdev);
2840 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
2841 struct cpsw_platform_data *data = &cpsw->data;
2842 struct device_node *node = pdev->dev.of_node;
2843 struct device_node *slave_node;
2844 int i = 0;
2845
2846 for_each_available_child_of_node(node, slave_node) {
2847 struct cpsw_slave_data *slave_data = &data->slave_data[i];
2848
2849 if (strcmp(slave_node->name, "slave"))
2850 continue;
2851
Johan Hovold3f650472016-11-28 19:24:55 +01002852 if (of_phy_is_fixed_link(slave_node))
2853 of_phy_deregister_fixed_link(slave_node);
Johan Hovold8cbcc462016-11-17 17:40:01 +01002854
2855 of_node_put(slave_data->phy_node);
2856
2857 i++;
2858 if (i == data->slaves)
2859 break;
2860 }
2861
Johan Hovolda4e32b02016-11-17 17:40:00 +01002862 of_platform_depopulate(&pdev->dev);
2863}
2864
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002865static int cpsw_probe_dual_emac(struct cpsw_priv *priv)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002866{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002867 struct cpsw_common *cpsw = priv->cpsw;
2868 struct cpsw_platform_data *data = &cpsw->data;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002869 struct net_device *ndev;
2870 struct cpsw_priv *priv_sl2;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03002871 int ret = 0;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002872
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03002873 ndev = alloc_etherdev_mq(sizeof(struct cpsw_priv), CPSW_MAX_QUEUES);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002874 if (!ndev) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002875 dev_err(cpsw->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002876 return -ENOMEM;
2877 }
2878
2879 priv_sl2 = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002880 priv_sl2->cpsw = cpsw;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002881 priv_sl2->ndev = ndev;
2882 priv_sl2->dev = &ndev->dev;
2883 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002884
2885 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2886 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2887 ETH_ALEN);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002888 dev_info(cpsw->dev, "cpsw: Detected MACID = %pM\n",
2889 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002890 } else {
2891 random_ether_addr(priv_sl2->mac_addr);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002892 dev_info(cpsw->dev, "cpsw: Random MACID = %pM\n",
2893 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002894 }
2895 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2896
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002897 priv_sl2->emac_port = 1;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002898 cpsw->slaves[1].ndev = ndev;
Patrick McHardyf6469682013-04-19 02:04:27 +00002899 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002900
2901 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002902 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002903
2904 /* register the network device */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002905 SET_NETDEV_DEV(ndev, cpsw->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002906 ret = register_netdev(ndev);
2907 if (ret) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002908 dev_err(cpsw->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002909 free_netdev(ndev);
2910 ret = -ENODEV;
2911 }
2912
2913 return ret;
2914}
2915
Mugunthan V N7da11602015-08-12 15:22:53 +05302916#define CPSW_QUIRK_IRQ BIT(0)
2917
Arvind Yadavf5b58942017-08-13 16:43:18 +05302918static const struct platform_device_id cpsw_devtype[] = {
Mugunthan V N7da11602015-08-12 15:22:53 +05302919 {
2920 /* keep it for existing comaptibles */
2921 .name = "cpsw",
2922 .driver_data = CPSW_QUIRK_IRQ,
2923 }, {
2924 .name = "am335x-cpsw",
2925 .driver_data = CPSW_QUIRK_IRQ,
2926 }, {
2927 .name = "am4372-cpsw",
2928 .driver_data = 0,
2929 }, {
2930 .name = "dra7-cpsw",
2931 .driver_data = 0,
2932 }, {
2933 /* sentinel */
2934 }
2935};
2936MODULE_DEVICE_TABLE(platform, cpsw_devtype);
2937
2938enum ti_cpsw_type {
2939 CPSW = 0,
2940 AM335X_CPSW,
2941 AM4372_CPSW,
2942 DRA7_CPSW,
2943};
2944
2945static const struct of_device_id cpsw_of_mtable[] = {
2946 { .compatible = "ti,cpsw", .data = &cpsw_devtype[CPSW], },
2947 { .compatible = "ti,am335x-cpsw", .data = &cpsw_devtype[AM335X_CPSW], },
2948 { .compatible = "ti,am4372-cpsw", .data = &cpsw_devtype[AM4372_CPSW], },
2949 { .compatible = "ti,dra7-cpsw", .data = &cpsw_devtype[DRA7_CPSW], },
2950 { /* sentinel */ },
2951};
2952MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
2953
Bill Pemberton663e12e2012-12-03 09:23:45 -05002954static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002955{
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002956 struct clk *clk;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002957 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002958 struct net_device *ndev;
2959 struct cpsw_priv *priv;
2960 struct cpdma_params dma_params;
2961 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302962 void __iomem *ss_regs;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06002963 void __iomem *cpts_regs;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302964 struct resource *res, *ss_res;
Mugunthan V N7da11602015-08-12 15:22:53 +05302965 const struct of_device_id *of_id;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302966 struct gpio_descs *mode;
Richard Cochran549985e2012-11-14 09:07:56 +00002967 u32 slave_offset, sliver_offset, slave_size;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002968 struct cpsw_common *cpsw;
Felipe Balbi5087b912015-01-16 10:11:11 -06002969 int ret = 0, i;
2970 int irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002971
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002972 cpsw = devm_kzalloc(&pdev->dev, sizeof(struct cpsw_common), GFP_KERNEL);
Johan Hovold3420ea82016-11-17 17:40:03 +01002973 if (!cpsw)
2974 return -ENOMEM;
2975
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002976 cpsw->dev = &pdev->dev;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002977
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03002978 ndev = alloc_etherdev_mq(sizeof(struct cpsw_priv), CPSW_MAX_QUEUES);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002979 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302980 dev_err(&pdev->dev, "error allocating net_device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002981 return -ENOMEM;
2982 }
2983
2984 platform_set_drvdata(pdev, ndev);
2985 priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002986 priv->cpsw = cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002987 priv->ndev = ndev;
2988 priv->dev = &ndev->dev;
2989 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03002990 cpsw->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002991
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302992 mode = devm_gpiod_get_array_optional(&pdev->dev, "mode", GPIOD_OUT_LOW);
2993 if (IS_ERR(mode)) {
2994 ret = PTR_ERR(mode);
2995 dev_err(&pdev->dev, "gpio request failed, ret %d\n", ret);
2996 goto clean_ndev_ret;
2997 }
2998
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002999 /*
3000 * This may be required here for child devices.
3001 */
3002 pm_runtime_enable(&pdev->dev);
3003
Mugunthan V N739683b2013-06-06 23:45:14 +05303004 /* Select default pin state */
3005 pinctrl_pm_select_default_state(&pdev->dev);
3006
Johan Hovolda4e32b02016-11-17 17:40:00 +01003007 /* Need to enable clocks with runtime PM api to access module
3008 * registers
3009 */
3010 ret = pm_runtime_get_sync(&pdev->dev);
3011 if (ret < 0) {
3012 pm_runtime_put_noidle(&pdev->dev);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303013 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00003014 }
Johan Hovolda4e32b02016-11-17 17:40:00 +01003015
Johan Hovold23a09872016-11-17 17:40:04 +01003016 ret = cpsw_probe_dt(&cpsw->data, pdev);
3017 if (ret)
Johan Hovolda4e32b02016-11-17 17:40:00 +01003018 goto clean_dt_ret;
Johan Hovold23a09872016-11-17 17:40:04 +01003019
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003020 data = &cpsw->data;
Ivan Khoronzhuke05107e2016-08-22 21:18:26 +03003021 cpsw->rx_ch_num = 1;
3022 cpsw->tx_ch_num = 1;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00003023
Mugunthan V Ndf828592012-03-18 20:17:54 +00003024 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
3025 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05303026 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003027 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00003028 eth_random_addr(priv->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05303029 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003030 }
3031
3032 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
3033
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003034 cpsw->slaves = devm_kzalloc(&pdev->dev,
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303035 sizeof(struct cpsw_slave) * data->slaves,
3036 GFP_KERNEL);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003037 if (!cpsw->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303038 ret = -ENOMEM;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003039 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003040 }
3041 for (i = 0; i < data->slaves; i++)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003042 cpsw->slaves[i].slave_num = i;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003043
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003044 cpsw->slaves[0].ndev = ndev;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00003045 priv->emac_port = 0;
3046
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03003047 clk = devm_clk_get(&pdev->dev, "fck");
3048 if (IS_ERR(clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303049 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00003050 ret = -ENODEV;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003051 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003052 }
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003053 cpsw->bus_freq_mhz = clk_get_rate(clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003054
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303055 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3056 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
3057 if (IS_ERR(ss_regs)) {
3058 ret = PTR_ERR(ss_regs);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003059 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003060 }
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003061 cpsw->regs = ss_regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003062
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003063 cpsw->version = readl(&cpsw->regs->id_ver);
Mugunthan V Nf280e892013-12-11 22:09:05 -06003064
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303065 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003066 cpsw->wr_regs = devm_ioremap_resource(&pdev->dev, res);
3067 if (IS_ERR(cpsw->wr_regs)) {
3068 ret = PTR_ERR(cpsw->wr_regs);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003069 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003070 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00003071
3072 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00003073 memset(&ale_params, 0, sizeof(ale_params));
3074
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003075 switch (cpsw->version) {
Richard Cochran549985e2012-11-14 09:07:56 +00003076 case CPSW_VERSION_1:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003077 cpsw->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003078 cpts_regs = ss_regs + CPSW1_CPTS_OFFSET;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003079 cpsw->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00003080 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
3081 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
3082 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
3083 slave_offset = CPSW1_SLAVE_OFFSET;
3084 slave_size = CPSW1_SLAVE_SIZE;
3085 sliver_offset = CPSW1_SLIVER_OFFSET;
3086 dma_params.desc_mem_phys = 0;
3087 break;
3088 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05303089 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05303090 case CPSW_VERSION_4:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003091 cpsw->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003092 cpts_regs = ss_regs + CPSW2_CPTS_OFFSET;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03003093 cpsw->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00003094 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
3095 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
3096 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
3097 slave_offset = CPSW2_SLAVE_OFFSET;
3098 slave_size = CPSW2_SLAVE_SIZE;
3099 sliver_offset = CPSW2_SLIVER_OFFSET;
3100 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303101 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00003102 break;
3103 default:
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003104 dev_err(priv->dev, "unknown version 0x%08x\n", cpsw->version);
Richard Cochran549985e2012-11-14 09:07:56 +00003105 ret = -ENODEV;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003106 goto clean_dt_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00003107 }
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003108 for (i = 0; i < cpsw->data.slaves; i++) {
3109 struct cpsw_slave *slave = &cpsw->slaves[i];
3110
3111 cpsw_slave_init(slave, cpsw, slave_offset, sliver_offset);
Richard Cochran549985e2012-11-14 09:07:56 +00003112 slave_offset += slave_size;
3113 sliver_offset += SLIVER_SIZE;
3114 }
3115
Mugunthan V Ndf828592012-03-18 20:17:54 +00003116 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00003117 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
3118 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
3119 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
3120 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
3121 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003122
3123 dma_params.num_chan = data->channels;
3124 dma_params.has_soft_reset = true;
3125 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
3126 dma_params.desc_mem_size = data->bd_ram_size;
3127 dma_params.desc_align = 16;
3128 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00003129 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Ivan Khoronzhuk83fcad02016-11-29 17:00:49 +02003130 dma_params.bus_freq_mhz = cpsw->bus_freq_mhz;
Grygorii Strashko90225bf2017-01-06 14:07:33 -06003131 dma_params.descs_pool_size = descs_pool_size;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003132
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003133 cpsw->dma = cpdma_ctlr_create(&dma_params);
3134 if (!cpsw->dma) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00003135 dev_err(priv->dev, "error initializing dma\n");
3136 ret = -ENOMEM;
Johan Hovolda4e32b02016-11-17 17:40:00 +01003137 goto clean_dt_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003138 }
3139
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02003140 cpsw->txv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_tx_handler, 0);
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02003141 if (IS_ERR(cpsw->txv[0].ch)) {
3142 dev_err(priv->dev, "error initializing tx dma channel\n");
3143 ret = PTR_ERR(cpsw->txv[0].ch);
3144 goto clean_dma_ret;
3145 }
3146
Ivan Khoronzhuk8feb0a12016-11-29 17:00:51 +02003147 cpsw->rxv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_rx_handler, 1);
Ivan Khoronzhuk8a83c5d2017-12-12 23:06:35 +02003148 if (IS_ERR(cpsw->rxv[0].ch)) {
3149 dev_err(priv->dev, "error initializing rx dma channel\n");
3150 ret = PTR_ERR(cpsw->rxv[0].ch);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003151 goto clean_dma_ret;
3152 }
3153
Ivan Khoronzhuk9fe9aa02017-02-15 19:45:02 +02003154 ale_params.dev = &pdev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003155 ale_params.ale_ageout = ale_ageout;
3156 ale_params.ale_entries = data->ale_entries;
Grygorii Strashkoc6395f12017-11-30 18:21:14 -06003157 ale_params.ale_ports = CPSW_ALE_PORTS_NUM;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003158
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003159 cpsw->ale = cpsw_ale_create(&ale_params);
3160 if (!cpsw->ale) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00003161 dev_err(priv->dev, "error initializing ale engine\n");
3162 ret = -ENODEV;
3163 goto clean_dma_ret;
3164 }
3165
Grygorii Strashko4a88fb92016-12-06 18:00:42 -06003166 cpsw->cpts = cpts_create(cpsw->dev, cpts_regs, cpsw->dev->of_node);
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003167 if (IS_ERR(cpsw->cpts)) {
3168 ret = PTR_ERR(cpsw->cpts);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003169 goto clean_dma_ret;
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003170 }
3171
Felipe Balbic03abd82015-01-16 10:11:12 -06003172 ndev->irq = platform_get_irq(pdev, 1);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003173 if (ndev->irq < 0) {
3174 dev_err(priv->dev, "error getting irq resource\n");
Julia Lawallc1e33342015-12-26 20:12:13 +01003175 ret = ndev->irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003176 goto clean_dma_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00003177 }
3178
Mugunthan V N7da11602015-08-12 15:22:53 +05303179 of_id = of_match_device(cpsw_of_mtable, &pdev->dev);
3180 if (of_id) {
3181 pdev->id_entry = of_id->data;
3182 if (pdev->id_entry->driver_data)
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03003183 cpsw->quirk_irq = true;
Mugunthan V N7da11602015-08-12 15:22:53 +05303184 }
3185
Grygorii Strashkoa3a41d22018-03-15 15:15:50 -05003186 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX;
Keerthy070f9c62017-07-20 16:59:52 +05303187
3188 ndev->netdev_ops = &cpsw_netdev_ops;
3189 ndev->ethtool_ops = &cpsw_ethtool_ops;
3190 netif_napi_add(ndev, &cpsw->napi_rx, cpsw_rx_poll, CPSW_POLL_WEIGHT);
3191 netif_tx_napi_add(ndev, &cpsw->napi_tx, cpsw_tx_poll, CPSW_POLL_WEIGHT);
3192 cpsw_split_res(ndev);
3193
3194 /* register the network device */
3195 SET_NETDEV_DEV(ndev, &pdev->dev);
3196 ret = register_netdev(ndev);
3197 if (ret) {
3198 dev_err(priv->dev, "error registering net device\n");
3199 ret = -ENODEV;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003200 goto clean_dma_ret;
Keerthy070f9c62017-07-20 16:59:52 +05303201 }
3202
3203 if (cpsw->data.dual_emac) {
3204 ret = cpsw_probe_dual_emac(priv);
3205 if (ret) {
3206 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
3207 goto clean_unregister_netdev_ret;
3208 }
3209 }
3210
Felipe Balbic03abd82015-01-16 10:11:12 -06003211 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
3212 * MISC IRQs which are always kept disabled with this driver so
3213 * we will not request them.
3214 *
3215 * If anyone wants to implement support for those, make sure to
3216 * first request and append them to irqs_table array.
3217 */
Daniel Mackc2b32e52014-09-04 09:00:23 +02003218
Felipe Balbic03abd82015-01-16 10:11:12 -06003219 /* RX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06003220 irq = platform_get_irq(pdev, 1);
Julia Lawallc1e33342015-12-26 20:12:13 +01003221 if (irq < 0) {
3222 ret = irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003223 goto clean_dma_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01003224 }
Felipe Balbi5087b912015-01-16 10:11:11 -06003225
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03003226 cpsw->irqs_table[0] = irq;
Felipe Balbic03abd82015-01-16 10:11:12 -06003227 ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03003228 0, dev_name(&pdev->dev), cpsw);
Felipe Balbi5087b912015-01-16 10:11:11 -06003229 if (ret < 0) {
3230 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003231 goto clean_dma_ret;
Felipe Balbi5087b912015-01-16 10:11:11 -06003232 }
3233
Felipe Balbic03abd82015-01-16 10:11:12 -06003234 /* TX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06003235 irq = platform_get_irq(pdev, 2);
Julia Lawallc1e33342015-12-26 20:12:13 +01003236 if (irq < 0) {
3237 ret = irq;
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003238 goto clean_dma_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01003239 }
Felipe Balbi5087b912015-01-16 10:11:11 -06003240
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03003241 cpsw->irqs_table[1] = irq;
Felipe Balbic03abd82015-01-16 10:11:12 -06003242 ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt,
Ivan Khoronzhukdbc4ec52016-08-10 02:22:43 +03003243 0, dev_name(&pdev->dev), cpsw);
Felipe Balbi5087b912015-01-16 10:11:11 -06003244 if (ret < 0) {
3245 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
Grygorii Strashko1971ab52017-11-30 18:21:19 -06003246 goto clean_dma_ret;
Felipe Balbi5087b912015-01-16 10:11:11 -06003247 }
Daniel Mackc2b32e52014-09-04 09:00:23 +02003248
Grygorii Strashko90225bf2017-01-06 14:07:33 -06003249 cpsw_notice(priv, probe,
3250 "initialized device (regs %pa, irq %d, pool size %d)\n",
3251 &ss_res->start, ndev->irq, dma_params.descs_pool_size);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00003252
Johan Hovoldc46ab7e2016-11-17 17:39:58 +01003253 pm_runtime_put(&pdev->dev);
3254
Mugunthan V Ndf828592012-03-18 20:17:54 +00003255 return 0;
3256
Johan Hovolda7fe9d42016-11-17 17:40:02 +01003257clean_unregister_netdev_ret:
3258 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003259clean_dma_ret:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003260 cpdma_ctlr_destroy(cpsw->dma);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003261clean_dt_ret:
3262 cpsw_remove_dt(pdev);
Johan Hovoldc46ab7e2016-11-17 17:39:58 +01003263 pm_runtime_put_sync(&pdev->dev);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05303264clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00003265 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003266clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00003267 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003268 return ret;
3269}
3270
Bill Pemberton663e12e2012-12-03 09:23:45 -05003271static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00003272{
3273 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuk2a05a622016-08-10 02:22:44 +03003274 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03003275 int ret;
3276
3277 ret = pm_runtime_get_sync(&pdev->dev);
3278 if (ret < 0) {
3279 pm_runtime_put_noidle(&pdev->dev);
3280 return ret;
3281 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00003282
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003283 if (cpsw->data.dual_emac)
3284 unregister_netdev(cpsw->slaves[1].ndev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00003285 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003286
Grygorii Strashko8a2c9a52016-12-06 18:00:41 -06003287 cpts_release(cpsw->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03003288 cpdma_ctlr_destroy(cpsw->dma);
Johan Hovolda4e32b02016-11-17 17:40:00 +01003289 cpsw_remove_dt(pdev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03003290 pm_runtime_put_sync(&pdev->dev);
3291 pm_runtime_disable(&pdev->dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003292 if (cpsw->data.dual_emac)
3293 free_netdev(cpsw->slaves[1].ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003294 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003295 return 0;
3296}
3297
Grygorii Strashko8963a502015-02-27 13:19:45 +02003298#ifdef CONFIG_PM_SLEEP
Mugunthan V Ndf828592012-03-18 20:17:54 +00003299static int cpsw_suspend(struct device *dev)
3300{
3301 struct platform_device *pdev = to_platform_device(dev);
3302 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003303 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003304
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003305 if (cpsw->data.dual_emac) {
Mugunthan V N618073e2014-09-11 22:52:38 +05303306 int i;
Daniel Mack1e7a2e22013-11-15 08:29:16 +01003307
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003308 for (i = 0; i < cpsw->data.slaves; i++) {
3309 if (netif_running(cpsw->slaves[i].ndev))
3310 cpsw_ndo_stop(cpsw->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303311 }
3312 } else {
3313 if (netif_running(ndev))
3314 cpsw_ndo_stop(ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303315 }
Daniel Mack1e7a2e22013-11-15 08:29:16 +01003316
Mugunthan V N739683b2013-06-06 23:45:14 +05303317 /* Select sleep pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03003318 pinctrl_pm_select_sleep_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05303319
Mugunthan V Ndf828592012-03-18 20:17:54 +00003320 return 0;
3321}
3322
3323static int cpsw_resume(struct device *dev)
3324{
3325 struct platform_device *pdev = to_platform_device(dev);
3326 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuka60ced92017-02-14 14:42:15 +02003327 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003328
Mugunthan V N739683b2013-06-06 23:45:14 +05303329 /* Select default pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03003330 pinctrl_pm_select_default_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05303331
Grygorii Strashko4ccfd632016-11-29 16:27:03 -06003332 /* shut up ASSERT_RTNL() warning in netif_set_real_num_tx/rx_queues */
3333 rtnl_lock();
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003334 if (cpsw->data.dual_emac) {
Mugunthan V N618073e2014-09-11 22:52:38 +05303335 int i;
3336
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03003337 for (i = 0; i < cpsw->data.slaves; i++) {
3338 if (netif_running(cpsw->slaves[i].ndev))
3339 cpsw_ndo_open(cpsw->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05303340 }
3341 } else {
3342 if (netif_running(ndev))
3343 cpsw_ndo_open(ndev);
3344 }
Grygorii Strashko4ccfd632016-11-29 16:27:03 -06003345 rtnl_unlock();
3346
Mugunthan V Ndf828592012-03-18 20:17:54 +00003347 return 0;
3348}
Grygorii Strashko8963a502015-02-27 13:19:45 +02003349#endif
Mugunthan V Ndf828592012-03-18 20:17:54 +00003350
Grygorii Strashko8963a502015-02-27 13:19:45 +02003351static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003352
3353static struct platform_driver cpsw_driver = {
3354 .driver = {
3355 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00003356 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05303357 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00003358 },
3359 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05003360 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00003361};
3362
Grygorii Strashko6fb3b6b52015-10-23 14:41:12 +03003363module_platform_driver(cpsw_driver);
Mugunthan V Ndf828592012-03-18 20:17:54 +00003364
3365MODULE_LICENSE("GPL");
3366MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
3367MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
3368MODULE_DESCRIPTION("TI CPSW Ethernet driver");