blob: ab5488b0cbaed3d7a33d9f88d416c3b62a277039 [file] [log] [blame]
Mugunthan V Ndf828592012-03-18 20:17:54 +00001/*
2 * Texas Instruments Ethernet Switch Driver
3 *
4 * Copyright (C) 2012 Texas Instruments
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/kernel.h>
17#include <linux/io.h>
18#include <linux/clk.h>
19#include <linux/timer.h>
20#include <linux/module.h>
21#include <linux/platform_device.h>
22#include <linux/irqreturn.h>
23#include <linux/interrupt.h>
24#include <linux/if_ether.h>
25#include <linux/etherdevice.h>
26#include <linux/netdevice.h>
Richard Cochran2e5b38a2012-10-29 08:45:20 +000027#include <linux/net_tstamp.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000028#include <linux/phy.h>
29#include <linux/workqueue.h>
30#include <linux/delay.h>
Mugunthan V Nf150bd72012-07-17 08:09:50 +000031#include <linux/pm_runtime.h>
Mugunthan V N1d147cc2015-09-07 15:16:44 +053032#include <linux/gpio.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000033#include <linux/of.h>
Heiko Schocher9e42f712015-10-17 06:04:35 +020034#include <linux/of_mdio.h>
Mugunthan V N2eb32b02012-07-30 10:17:14 +000035#include <linux/of_net.h>
36#include <linux/of_device.h>
Mugunthan V N3b72c2f2013-02-05 08:26:48 +000037#include <linux/if_vlan.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000038
Mugunthan V N739683b2013-06-06 23:45:14 +053039#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000040
Mugunthan V Ndbe34722013-08-19 17:47:40 +053041#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000042#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000043#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000044#include "davinci_cpdma.h"
45
46#define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \
47 NETIF_MSG_DRV | NETIF_MSG_LINK | \
48 NETIF_MSG_IFUP | NETIF_MSG_INTR | \
49 NETIF_MSG_PROBE | NETIF_MSG_TIMER | \
50 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \
51 NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \
52 NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \
53 NETIF_MSG_RX_STATUS)
54
55#define cpsw_info(priv, type, format, ...) \
56do { \
57 if (netif_msg_##type(priv) && net_ratelimit()) \
58 dev_info(priv->dev, format, ## __VA_ARGS__); \
59} while (0)
60
61#define cpsw_err(priv, type, format, ...) \
62do { \
63 if (netif_msg_##type(priv) && net_ratelimit()) \
64 dev_err(priv->dev, format, ## __VA_ARGS__); \
65} while (0)
66
67#define cpsw_dbg(priv, type, format, ...) \
68do { \
69 if (netif_msg_##type(priv) && net_ratelimit()) \
70 dev_dbg(priv->dev, format, ## __VA_ARGS__); \
71} while (0)
72
73#define cpsw_notice(priv, type, format, ...) \
74do { \
75 if (netif_msg_##type(priv) && net_ratelimit()) \
76 dev_notice(priv->dev, format, ## __VA_ARGS__); \
77} while (0)
78
Mugunthan V N5c50a852012-10-29 08:45:11 +000079#define ALE_ALL_PORTS 0x7
80
Mugunthan V Ndf828592012-03-18 20:17:54 +000081#define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7)
82#define CPSW_MINOR_VERSION(reg) (reg & 0xff)
83#define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f)
84
Richard Cochrane90cfac2012-10-29 08:45:14 +000085#define CPSW_VERSION_1 0x19010a
86#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053087#define CPSW_VERSION_3 0x19010f
Mugunthan V N926489b2013-08-12 17:11:15 +053088#define CPSW_VERSION_4 0x190112
Richard Cochran549985e2012-11-14 09:07:56 +000089
90#define HOST_PORT_NUM 0
91#define SLIVER_SIZE 0x40
92
93#define CPSW1_HOST_PORT_OFFSET 0x028
94#define CPSW1_SLAVE_OFFSET 0x050
95#define CPSW1_SLAVE_SIZE 0x040
96#define CPSW1_CPDMA_OFFSET 0x100
97#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +053098#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +000099#define CPSW1_CPTS_OFFSET 0x500
100#define CPSW1_ALE_OFFSET 0x600
101#define CPSW1_SLIVER_OFFSET 0x700
102
103#define CPSW2_HOST_PORT_OFFSET 0x108
104#define CPSW2_SLAVE_OFFSET 0x200
105#define CPSW2_SLAVE_SIZE 0x100
106#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530107#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000108#define CPSW2_STATERAM_OFFSET 0xa00
109#define CPSW2_CPTS_OFFSET 0xc00
110#define CPSW2_ALE_OFFSET 0xd00
111#define CPSW2_SLIVER_OFFSET 0xd80
112#define CPSW2_BD_OFFSET 0x2000
113
Mugunthan V Ndf828592012-03-18 20:17:54 +0000114#define CPDMA_RXTHRESH 0x0c0
115#define CPDMA_RXFREE 0x0e0
116#define CPDMA_TXHDP 0x00
117#define CPDMA_RXHDP 0x20
118#define CPDMA_TXCP 0x40
119#define CPDMA_RXCP 0x60
120
Mugunthan V Ndf828592012-03-18 20:17:54 +0000121#define CPSW_POLL_WEIGHT 64
122#define CPSW_MIN_PACKET_SIZE 60
123#define CPSW_MAX_PACKET_SIZE (1500 + 14 + 4 + 4)
124
125#define RX_PRIORITY_MAPPING 0x76543210
126#define TX_PRIORITY_MAPPING 0x33221100
127#define CPDMA_TX_PRIORITY_MAP 0x76543210
128
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000129#define CPSW_VLAN_AWARE BIT(1)
130#define CPSW_ALE_VLAN_AWARE 1
131
John Ogness35717d82014-11-14 15:42:52 +0100132#define CPSW_FIFO_NORMAL_MODE (0 << 16)
133#define CPSW_FIFO_DUAL_MAC_MODE (1 << 16)
134#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000135
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000136#define CPSW_INTPACEEN (0x3f << 16)
137#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
138#define CPSW_CMINTMAX_CNT 63
139#define CPSW_CMINTMIN_CNT 2
140#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
141#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
142
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300143#define cpsw_slave_index(cpsw, priv) \
144 ((cpsw->data.dual_emac) ? priv->emac_port : \
145 cpsw->data.active_slave)
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300146#define IRQ_NUM 2
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000147
Mugunthan V Ndf828592012-03-18 20:17:54 +0000148static int debug_level;
149module_param(debug_level, int, 0);
150MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
151
152static int ale_ageout = 10;
153module_param(ale_ageout, int, 0);
154MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
155
156static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
157module_param(rx_packet_max, int, 0);
158MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
159
Richard Cochran996a5c22012-10-29 08:45:12 +0000160struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000161 u32 id_ver;
162 u32 soft_reset;
163 u32 control;
164 u32 int_control;
165 u32 rx_thresh_en;
166 u32 rx_en;
167 u32 tx_en;
168 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000169 u32 mem_allign1[8];
170 u32 rx_thresh_stat;
171 u32 rx_stat;
172 u32 tx_stat;
173 u32 misc_stat;
174 u32 mem_allign2[8];
175 u32 rx_imax;
176 u32 tx_imax;
177
Mugunthan V Ndf828592012-03-18 20:17:54 +0000178};
179
Richard Cochran996a5c22012-10-29 08:45:12 +0000180struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000181 u32 id_ver;
182 u32 control;
183 u32 soft_reset;
184 u32 stat_port_en;
185 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000186 u32 soft_idle;
187 u32 thru_rate;
188 u32 gap_thresh;
189 u32 tx_start_wds;
190 u32 flow_control;
191 u32 vlan_ltype;
192 u32 ts_ltype;
193 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000194};
195
Richard Cochran9750a3a2012-10-29 08:45:15 +0000196/* CPSW_PORT_V1 */
197#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
198#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
199#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
200#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
201#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
202#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
203#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
204#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
205
206/* CPSW_PORT_V2 */
207#define CPSW2_CONTROL 0x00 /* Control Register */
208#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
209#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
210#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
211#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
212#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
213#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
214
215/* CPSW_PORT_V1 and V2 */
216#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
217#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
218#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
219
220/* CPSW_PORT_V2 only */
221#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
222#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
223#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
224#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
225#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
226#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
227#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
228#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
229
230/* Bit definitions for the CPSW2_CONTROL register */
231#define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */
232#define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */
233#define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */
234#define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */
235#define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */
236#define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */
237#define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */
238#define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */
239#define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */
240#define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */
George Cherian09c55372014-05-02 12:02:02 +0530241#define TS_TTL_NONZERO (1<<8) /* Time Sync Time To Live Non-zero enable */
242#define TS_ANNEX_F_EN (1<<6) /* Time Sync Annex F enable */
Richard Cochran9750a3a2012-10-29 08:45:15 +0000243#define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */
244#define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */
245#define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */
246#define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */
247#define TS_RX_EN (1<<0) /* Time Sync Receive Enable */
248
George Cherian09c55372014-05-02 12:02:02 +0530249#define CTRL_V2_TS_BITS \
250 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
251 TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000252
George Cherian09c55372014-05-02 12:02:02 +0530253#define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN)
254#define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN)
255#define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN)
256
257
258#define CTRL_V3_TS_BITS \
259 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
260 TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\
261 TS_LTYPE1_EN)
262
263#define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN)
264#define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN)
265#define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000266
267/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
268#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
269#define TS_SEQ_ID_OFFSET_MASK (0x3f)
270#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
271#define TS_MSG_TYPE_EN_MASK (0xffff)
272
273/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
274#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000275
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000276/* Bit definitions for the CPSW1_TS_CTL register */
277#define CPSW_V1_TS_RX_EN BIT(0)
278#define CPSW_V1_TS_TX_EN BIT(4)
279#define CPSW_V1_MSG_TYPE_OFS 16
280
281/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
282#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
283
Mugunthan V Ndf828592012-03-18 20:17:54 +0000284struct cpsw_host_regs {
285 u32 max_blks;
286 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000287 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000288 u32 port_vlan;
289 u32 tx_pri_map;
290 u32 cpdma_tx_pri_map;
291 u32 cpdma_rx_chan_map;
292};
293
294struct cpsw_sliver_regs {
295 u32 id_ver;
296 u32 mac_control;
297 u32 mac_status;
298 u32 soft_reset;
299 u32 rx_maxlen;
300 u32 __reserved_0;
301 u32 rx_pause;
302 u32 tx_pause;
303 u32 __reserved_1;
304 u32 rx_pri_map;
305};
306
Mugunthan V Nd9718542013-07-23 15:38:17 +0530307struct cpsw_hw_stats {
308 u32 rxgoodframes;
309 u32 rxbroadcastframes;
310 u32 rxmulticastframes;
311 u32 rxpauseframes;
312 u32 rxcrcerrors;
313 u32 rxaligncodeerrors;
314 u32 rxoversizedframes;
315 u32 rxjabberframes;
316 u32 rxundersizedframes;
317 u32 rxfragments;
318 u32 __pad_0[2];
319 u32 rxoctets;
320 u32 txgoodframes;
321 u32 txbroadcastframes;
322 u32 txmulticastframes;
323 u32 txpauseframes;
324 u32 txdeferredframes;
325 u32 txcollisionframes;
326 u32 txsinglecollframes;
327 u32 txmultcollframes;
328 u32 txexcessivecollisions;
329 u32 txlatecollisions;
330 u32 txunderrun;
331 u32 txcarriersenseerrors;
332 u32 txoctets;
333 u32 octetframes64;
334 u32 octetframes65t127;
335 u32 octetframes128t255;
336 u32 octetframes256t511;
337 u32 octetframes512t1023;
338 u32 octetframes1024tup;
339 u32 netoctets;
340 u32 rxsofoverruns;
341 u32 rxmofoverruns;
342 u32 rxdmaoverruns;
343};
344
Mugunthan V Ndf828592012-03-18 20:17:54 +0000345struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000346 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000347 struct cpsw_sliver_regs __iomem *sliver;
348 int slave_num;
349 u32 mac_control;
350 struct cpsw_slave_data *data;
351 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000352 struct net_device *ndev;
353 u32 port_vlan;
354 u32 open_stat;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000355};
356
Richard Cochran9750a3a2012-10-29 08:45:15 +0000357static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
358{
359 return __raw_readl(slave->regs + offset);
360}
361
362static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
363{
364 __raw_writel(val, slave->regs + offset);
365}
366
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300367struct cpsw_common {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +0300368 struct device *dev;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300369 struct cpsw_platform_data data;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300370 struct cpsw_ss_regs __iomem *regs;
371 struct cpsw_wr_regs __iomem *wr_regs;
372 u8 __iomem *hw_stats;
373 struct cpsw_host_regs __iomem *host_port_regs;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300374 struct cpsw_slave *slaves;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300375 struct cpdma_ctlr *dma;
376 struct cpdma_chan *txch, *rxch;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300377 bool quirk_irq;
378 bool rx_irq_disabled;
379 bool tx_irq_disabled;
380 u32 irqs_table[IRQ_NUM];
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300381};
382
383struct cpsw_priv {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000384 struct net_device *ndev;
Mugunthan V N32a74322015-08-04 16:06:20 +0530385 struct napi_struct napi_rx;
386 struct napi_struct napi_tx;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000387 struct device *dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000388 u32 msg_enable;
Richard Cochrane90cfac2012-10-29 08:45:14 +0000389 u32 version;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000390 u32 coal_intvl;
391 u32 bus_freq_mhz;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000392 int rx_packet_max;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000393 u8 mac_addr[ETH_ALEN];
Mugunthan V Ndf828592012-03-18 20:17:54 +0000394 struct cpsw_ale *ale;
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530395 bool rx_pause;
396 bool tx_pause;
Mugunthan V N9232b162013-02-11 09:52:19 +0000397 struct cpts *cpts;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000398 u32 emac_port;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300399 struct cpsw_common *cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000400};
401
Mugunthan V Nd9718542013-07-23 15:38:17 +0530402struct cpsw_stats {
403 char stat_string[ETH_GSTRING_LEN];
404 int type;
405 int sizeof_stat;
406 int stat_offset;
407};
408
409enum {
410 CPSW_STATS,
411 CPDMA_RX_STATS,
412 CPDMA_TX_STATS,
413};
414
415#define CPSW_STAT(m) CPSW_STATS, \
416 sizeof(((struct cpsw_hw_stats *)0)->m), \
417 offsetof(struct cpsw_hw_stats, m)
418#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
419 sizeof(((struct cpdma_chan_stats *)0)->m), \
420 offsetof(struct cpdma_chan_stats, m)
421#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
422 sizeof(((struct cpdma_chan_stats *)0)->m), \
423 offsetof(struct cpdma_chan_stats, m)
424
425static const struct cpsw_stats cpsw_gstrings_stats[] = {
426 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
427 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
428 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
429 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
430 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
431 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
432 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
433 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
434 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
435 { "Rx Fragments", CPSW_STAT(rxfragments) },
436 { "Rx Octets", CPSW_STAT(rxoctets) },
437 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
438 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
439 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
440 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
441 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
442 { "Collisions", CPSW_STAT(txcollisionframes) },
443 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
444 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
445 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
446 { "Late Collisions", CPSW_STAT(txlatecollisions) },
447 { "Tx Underrun", CPSW_STAT(txunderrun) },
448 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
449 { "Tx Octets", CPSW_STAT(txoctets) },
450 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
451 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
452 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
453 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
454 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
455 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
456 { "Net Octets", CPSW_STAT(netoctets) },
457 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
458 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
459 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
460 { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) },
461 { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
462 { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
463 { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) },
464 { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
465 { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
466 { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
467 { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
468 { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
469 { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
470 { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) },
471 { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) },
472 { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
473 { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) },
474 { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) },
475 { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) },
476 { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) },
477 { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) },
478 { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) },
479 { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) },
480 { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) },
481 { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) },
482 { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) },
483 { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) },
484 { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) },
485 { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) },
486};
487
488#define CPSW_STATS_LEN ARRAY_SIZE(cpsw_gstrings_stats)
489
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +0300490#define ndev_to_cpsw(ndev) (((struct cpsw_priv *)netdev_priv(ndev))->cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000491#define napi_to_priv(napi) container_of(napi, struct cpsw_priv, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000492#define for_each_slave(priv, func, arg...) \
493 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000494 struct cpsw_slave *slave; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300495 struct cpsw_common *cpsw = (priv)->cpsw; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000496 int n; \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300497 if (cpsw->data.dual_emac) \
498 (func)((cpsw)->slaves + priv->emac_port, ##arg);\
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000499 else \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300500 for (n = cpsw->data.slaves, \
501 slave = cpsw->slaves; \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000502 n; n--) \
503 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000504 } while (0)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300505#define cpsw_get_slave_priv(cpsw, __slave_no__) \
506 (((__slave_no__ < cpsw->data.slaves) && \
507 (cpsw->slaves[__slave_no__].ndev)) ? \
508 netdev_priv(cpsw->slaves[__slave_no__].ndev) : NULL) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000509
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300510#define cpsw_dual_emac_src_port_detect(cpsw, status, priv, ndev, skb) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000511 do { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300512 if (!cpsw->data.dual_emac) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000513 break; \
514 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300515 ndev = cpsw->slaves[0].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000516 priv = netdev_priv(ndev); \
517 skb->dev = ndev; \
518 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300519 ndev = cpsw->slaves[1].ndev; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000520 priv = netdev_priv(ndev); \
521 skb->dev = ndev; \
522 } \
523 } while (0)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300524#define cpsw_add_mcast(cpsw, priv, addr) \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000525 do { \
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300526 if (cpsw->data.dual_emac) { \
527 struct cpsw_slave *slave = cpsw->slaves + \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000528 priv->emac_port; \
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300529 int slave_port = cpsw_get_slave_port( \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000530 slave->slave_num); \
531 cpsw_ale_add_mcast(priv->ale, addr, \
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300532 1 << slave_port | ALE_PORT_HOST, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000533 ALE_VLAN, slave->port_vlan, 0); \
534 } else { \
535 cpsw_ale_add_mcast(priv->ale, addr, \
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300536 ALE_ALL_PORTS, \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000537 0, 0, 0); \
538 } \
539 } while (0)
540
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300541static inline int cpsw_get_slave_port(u32 slave_num)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000542{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +0300543 return slave_num + 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000544}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000545
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530546static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
547{
548 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300549 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530550 struct cpsw_ale *ale = priv->ale;
551 int i;
552
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300553 if (cpsw->data.dual_emac) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530554 bool flag = false;
555
556 /* Enabling promiscuous mode for one interface will be
557 * common for both the interface as the interface shares
558 * the same hardware resource.
559 */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300560 for (i = 0; i < cpsw->data.slaves; i++)
561 if (cpsw->slaves[i].ndev->flags & IFF_PROMISC)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530562 flag = true;
563
564 if (!enable && flag) {
565 enable = true;
566 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
567 }
568
569 if (enable) {
570 /* Enable Bypass */
571 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
572
573 dev_dbg(&ndev->dev, "promiscuity enabled\n");
574 } else {
575 /* Disable Bypass */
576 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
577 dev_dbg(&ndev->dev, "promiscuity disabled\n");
578 }
579 } else {
580 if (enable) {
581 unsigned long timeout = jiffies + HZ;
582
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400583 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300584 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530585 cpsw_ale_control_set(ale, i,
586 ALE_PORT_NOLEARN, 1);
587 cpsw_ale_control_set(ale, i,
588 ALE_PORT_NO_SA_UPDATE, 1);
589 }
590
591 /* Clear All Untouched entries */
592 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
593 do {
594 cpu_relax();
595 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
596 break;
597 } while (time_after(timeout, jiffies));
598 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
599
600 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300601 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS, -1);
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530602
603 /* Flood All Unicast Packets to Host port */
604 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
605 dev_dbg(&ndev->dev, "promiscuity enabled\n");
606 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400607 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530608 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
609
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400610 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300611 for (i = 0; i <= cpsw->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530612 cpsw_ale_control_set(ale, i,
613 ALE_PORT_NOLEARN, 0);
614 cpsw_ale_control_set(ale, i,
615 ALE_PORT_NO_SA_UPDATE, 0);
616 }
617 dev_dbg(&ndev->dev, "promiscuity disabled\n");
618 }
619 }
620}
621
Mugunthan V N5c50a852012-10-29 08:45:11 +0000622static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
623{
624 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300625 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N25906052015-01-13 17:35:49 +0530626 int vid;
627
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300628 if (cpsw->data.dual_emac)
629 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V N25906052015-01-13 17:35:49 +0530630 else
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300631 vid = cpsw->data.default_vlan;
Mugunthan V N5c50a852012-10-29 08:45:11 +0000632
633 if (ndev->flags & IFF_PROMISC) {
634 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530635 cpsw_set_promiscious(ndev, true);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400636 cpsw_ale_set_allmulti(priv->ale, IFF_ALLMULTI);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000637 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530638 } else {
639 /* Disable promiscuous mode */
640 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000641 }
642
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400643 /* Restore allmulti on vlans if necessary */
644 cpsw_ale_set_allmulti(priv->ale, priv->ndev->flags & IFF_ALLMULTI);
645
Mugunthan V N5c50a852012-10-29 08:45:11 +0000646 /* Clear all mcast from ALE */
Grygorii Strashko61f1cef2016-04-07 15:16:43 +0300647 cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS, vid);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000648
649 if (!netdev_mc_empty(ndev)) {
650 struct netdev_hw_addr *ha;
651
652 /* program multicast address list into ALE register */
653 netdev_for_each_mc_addr(ha, ndev) {
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300654 cpsw_add_mcast(cpsw, priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000655 }
656 }
657}
658
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300659static void cpsw_intr_enable(struct cpsw_common *cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000660{
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300661 __raw_writel(0xFF, &cpsw->wr_regs->tx_en);
662 __raw_writel(0xFF, &cpsw->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000663
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300664 cpdma_ctlr_int_ctrl(cpsw->dma, true);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000665 return;
666}
667
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300668static void cpsw_intr_disable(struct cpsw_common *cpsw)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000669{
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300670 __raw_writel(0, &cpsw->wr_regs->tx_en);
671 __raw_writel(0, &cpsw->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000672
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300673 cpdma_ctlr_int_ctrl(cpsw->dma, false);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000674 return;
675}
676
Olof Johansson1a3b5052013-12-11 15:58:07 -0800677static void cpsw_tx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000678{
679 struct sk_buff *skb = token;
680 struct net_device *ndev = skb->dev;
681 struct cpsw_priv *priv = netdev_priv(ndev);
682
Mugunthan V Nfae50822013-01-17 06:31:34 +0000683 /* Check whether the queue is stopped due to stalled tx dma, if the
684 * queue is stopped then start the queue as we have free desc for tx
685 */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000686 if (unlikely(netif_queue_stopped(ndev)))
Mugunthan V Nb56d6b3f2013-03-27 04:41:59 +0000687 netif_wake_queue(ndev);
Mugunthan V N9232b162013-02-11 09:52:19 +0000688 cpts_tx_timestamp(priv->cpts, skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100689 ndev->stats.tx_packets++;
690 ndev->stats.tx_bytes += len;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000691 dev_kfree_skb_any(skb);
692}
693
Olof Johansson1a3b5052013-12-11 15:58:07 -0800694static void cpsw_rx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000695{
696 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000697 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000698 struct net_device *ndev = skb->dev;
699 struct cpsw_priv *priv = netdev_priv(ndev);
700 int ret = 0;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300701 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000702
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300703 cpsw_dual_emac_src_port_detect(cpsw, status, priv, ndev, skb);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000704
Mugunthan V N16e5c572014-04-10 14:23:23 +0530705 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530706 bool ndev_status = false;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300707 struct cpsw_slave *slave = cpsw->slaves;
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530708 int n;
709
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300710 if (cpsw->data.dual_emac) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530711 /* In dual emac mode check for all interfaces */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300712 for (n = cpsw->data.slaves; n; n--, slave++)
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530713 if (netif_running(slave->ndev))
714 ndev_status = true;
715 }
716
717 if (ndev_status && (status >= 0)) {
718 /* The packet received is for the interface which
719 * is already down and the other interface is up
Joe Perchesdbedd442015-03-06 20:49:12 -0800720 * and running, instead of freeing which results
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530721 * in reducing of the number of rx descriptor in
722 * DMA engine, requeue skb back to cpdma.
723 */
724 new_skb = skb;
725 goto requeue;
726 }
727
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000728 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000729 dev_kfree_skb_any(skb);
730 return;
731 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000732
733 new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max);
734 if (new_skb) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000735 skb_put(skb, len);
Mugunthan V N9232b162013-02-11 09:52:19 +0000736 cpts_rx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000737 skb->protocol = eth_type_trans(skb, ndev);
738 netif_receive_skb(skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100739 ndev->stats.rx_bytes += len;
740 ndev->stats.rx_packets++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000741 } else {
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100742 ndev->stats.rx_dropped++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000743 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000744 }
745
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530746requeue:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300747 ret = cpdma_chan_submit(cpsw->rxch, new_skb, new_skb->data,
748 skb_tailroom(new_skb), 0);
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000749 if (WARN_ON(ret < 0))
750 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000751}
752
Felipe Balbic03abd82015-01-16 10:11:12 -0600753static irqreturn_t cpsw_tx_interrupt(int irq, void *dev_id)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000754{
755 struct cpsw_priv *priv = dev_id;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300756 struct cpsw_common *cpsw = priv->cpsw;
Felipe Balbi7ce67a32015-01-02 16:15:59 -0600757
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300758 writel(0, &cpsw->wr_regs->tx_en);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300759 cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_TX);
Felipe Balbic03abd82015-01-16 10:11:12 -0600760
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300761 if (cpsw->quirk_irq) {
762 disable_irq_nosync(cpsw->irqs_table[1]);
763 cpsw->tx_irq_disabled = true;
Mugunthan V N7da11602015-08-12 15:22:53 +0530764 }
765
Mugunthan V N32a74322015-08-04 16:06:20 +0530766 napi_schedule(&priv->napi_tx);
Felipe Balbic03abd82015-01-16 10:11:12 -0600767 return IRQ_HANDLED;
768}
769
770static irqreturn_t cpsw_rx_interrupt(int irq, void *dev_id)
771{
772 struct cpsw_priv *priv = dev_id;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300773 struct cpsw_common *cpsw = priv->cpsw;
Felipe Balbic03abd82015-01-16 10:11:12 -0600774
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300775 cpdma_ctlr_eoi(cpsw->dma, CPDMA_EOI_RX);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300776 writel(0, &cpsw->wr_regs->rx_en);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000777
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300778 if (cpsw->quirk_irq) {
779 disable_irq_nosync(cpsw->irqs_table[0]);
780 cpsw->rx_irq_disabled = true;
Mugunthan V N7da11602015-08-12 15:22:53 +0530781 }
782
Mugunthan V N32a74322015-08-04 16:06:20 +0530783 napi_schedule(&priv->napi_rx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +0530784 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000785}
786
Mugunthan V N32a74322015-08-04 16:06:20 +0530787static int cpsw_tx_poll(struct napi_struct *napi_tx, int budget)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000788{
Mugunthan V N32a74322015-08-04 16:06:20 +0530789 struct cpsw_priv *priv = napi_to_priv(napi_tx);
790 int num_tx;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300791 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N32a74322015-08-04 16:06:20 +0530792
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300793 num_tx = cpdma_chan_process(cpsw->txch, budget);
Mugunthan V N32a74322015-08-04 16:06:20 +0530794 if (num_tx < budget) {
795 napi_complete(napi_tx);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300796 writel(0xff, &cpsw->wr_regs->tx_en);
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300797 if (cpsw->quirk_irq && cpsw->tx_irq_disabled) {
798 cpsw->tx_irq_disabled = false;
799 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +0530800 }
Mugunthan V N32a74322015-08-04 16:06:20 +0530801 }
802
Mugunthan V N32a74322015-08-04 16:06:20 +0530803 return num_tx;
804}
805
806static int cpsw_rx_poll(struct napi_struct *napi_rx, int budget)
807{
808 struct cpsw_priv *priv = napi_to_priv(napi_rx);
Mugunthan V N1e353cd2015-07-21 16:00:42 +0530809 int num_rx;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300810 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N510a1e722013-02-17 22:19:20 +0000811
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +0300812 num_rx = cpdma_chan_process(cpsw->rxch, budget);
Mugunthan V N510a1e722013-02-17 22:19:20 +0000813 if (num_rx < budget) {
Mugunthan V N32a74322015-08-04 16:06:20 +0530814 napi_complete(napi_rx);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300815 writel(0xff, &cpsw->wr_regs->rx_en);
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +0300816 if (cpsw->quirk_irq && cpsw->rx_irq_disabled) {
817 cpsw->rx_irq_disabled = false;
818 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +0530819 }
Mugunthan V N510a1e722013-02-17 22:19:20 +0000820 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000821
Mugunthan V Ndf828592012-03-18 20:17:54 +0000822 return num_rx;
823}
824
825static inline void soft_reset(const char *module, void __iomem *reg)
826{
827 unsigned long timeout = jiffies + HZ;
828
829 __raw_writel(1, reg);
830 do {
831 cpu_relax();
832 } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies));
833
834 WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module);
835}
836
837#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
838 ((mac)[2] << 16) | ((mac)[3] << 24))
839#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
840
841static void cpsw_set_slave_mac(struct cpsw_slave *slave,
842 struct cpsw_priv *priv)
843{
Richard Cochran9750a3a2012-10-29 08:45:15 +0000844 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
845 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000846}
847
848static void _cpsw_adjust_link(struct cpsw_slave *slave,
849 struct cpsw_priv *priv, bool *link)
850{
851 struct phy_device *phy = slave->phy;
852 u32 mac_control = 0;
853 u32 slave_port;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300854 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000855
856 if (!phy)
857 return;
858
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +0300859 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000860
861 if (phy->link) {
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300862 mac_control = cpsw->data.mac_control;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000863
864 /* enable forwarding */
865 cpsw_ale_control_set(priv->ale, slave_port,
866 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
867
868 if (phy->speed == 1000)
869 mac_control |= BIT(7); /* GIGABITEN */
870 if (phy->duplex)
871 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +0000872
873 /* set speed_in input in case RMII mode is used in 100Mbps */
874 if (phy->speed == 100)
875 mac_control |= BIT(15);
Mugunthan V Na81d8762013-12-13 18:42:55 +0530876 else if (phy->speed == 10)
877 mac_control |= BIT(18); /* In Band mode */
Daniel Mack342b7b72012-09-27 09:19:34 +0000878
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530879 if (priv->rx_pause)
880 mac_control |= BIT(3);
881
882 if (priv->tx_pause)
883 mac_control |= BIT(4);
884
Mugunthan V Ndf828592012-03-18 20:17:54 +0000885 *link = true;
886 } else {
887 mac_control = 0;
888 /* disable forwarding */
889 cpsw_ale_control_set(priv->ale, slave_port,
890 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
891 }
892
893 if (mac_control != slave->mac_control) {
894 phy_print_status(phy);
895 __raw_writel(mac_control, &slave->sliver->mac_control);
896 }
897
898 slave->mac_control = mac_control;
899}
900
901static void cpsw_adjust_link(struct net_device *ndev)
902{
903 struct cpsw_priv *priv = netdev_priv(ndev);
904 bool link = false;
905
906 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
907
908 if (link) {
909 netif_carrier_on(ndev);
910 if (netif_running(ndev))
911 netif_wake_queue(ndev);
912 } else {
913 netif_carrier_off(ndev);
914 netif_stop_queue(ndev);
915 }
916}
917
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000918static int cpsw_get_coalesce(struct net_device *ndev,
919 struct ethtool_coalesce *coal)
920{
921 struct cpsw_priv *priv = netdev_priv(ndev);
922
923 coal->rx_coalesce_usecs = priv->coal_intvl;
924 return 0;
925}
926
927static int cpsw_set_coalesce(struct net_device *ndev,
928 struct ethtool_coalesce *coal)
929{
930 struct cpsw_priv *priv = netdev_priv(ndev);
931 u32 int_ctrl;
932 u32 num_interrupts = 0;
933 u32 prescale = 0;
934 u32 addnl_dvdr = 1;
935 u32 coal_intvl = 0;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300936 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000937
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000938 coal_intvl = coal->rx_coalesce_usecs;
939
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300940 int_ctrl = readl(&cpsw->wr_regs->int_control);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000941 prescale = priv->bus_freq_mhz * 4;
942
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530943 if (!coal->rx_coalesce_usecs) {
944 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
945 goto update_return;
946 }
947
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000948 if (coal_intvl < CPSW_CMINTMIN_INTVL)
949 coal_intvl = CPSW_CMINTMIN_INTVL;
950
951 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
952 /* Interrupt pacer works with 4us Pulse, we can
953 * throttle further by dilating the 4us pulse.
954 */
955 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
956
957 if (addnl_dvdr > 1) {
958 prescale *= addnl_dvdr;
959 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
960 coal_intvl = (CPSW_CMINTMAX_INTVL
961 * addnl_dvdr);
962 } else {
963 addnl_dvdr = 1;
964 coal_intvl = CPSW_CMINTMAX_INTVL;
965 }
966 }
967
968 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300969 writel(num_interrupts, &cpsw->wr_regs->rx_imax);
970 writel(num_interrupts, &cpsw->wr_regs->tx_imax);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000971
972 int_ctrl |= CPSW_INTPACEEN;
973 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
974 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530975
976update_return:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +0300977 writel(int_ctrl, &cpsw->wr_regs->int_control);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000978
979 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300980 if (cpsw->data.dual_emac) {
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000981 int i;
982
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +0300983 for (i = 0; i < cpsw->data.slaves; i++) {
984 priv = netdev_priv(cpsw->slaves[i].ndev);
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000985 priv->coal_intvl = coal_intvl;
986 }
987 } else {
988 priv->coal_intvl = coal_intvl;
989 }
990
991 return 0;
992}
993
Mugunthan V Nd9718542013-07-23 15:38:17 +0530994static int cpsw_get_sset_count(struct net_device *ndev, int sset)
995{
996 switch (sset) {
997 case ETH_SS_STATS:
998 return CPSW_STATS_LEN;
999 default:
1000 return -EOPNOTSUPP;
1001 }
1002}
1003
1004static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
1005{
1006 u8 *p = data;
1007 int i;
1008
1009 switch (stringset) {
1010 case ETH_SS_STATS:
1011 for (i = 0; i < CPSW_STATS_LEN; i++) {
1012 memcpy(p, cpsw_gstrings_stats[i].stat_string,
1013 ETH_GSTRING_LEN);
1014 p += ETH_GSTRING_LEN;
1015 }
1016 break;
1017 }
1018}
1019
1020static void cpsw_get_ethtool_stats(struct net_device *ndev,
1021 struct ethtool_stats *stats, u64 *data)
1022{
Mugunthan V Nd9718542013-07-23 15:38:17 +05301023 struct cpdma_chan_stats rx_stats;
1024 struct cpdma_chan_stats tx_stats;
1025 u32 val;
1026 u8 *p;
1027 int i;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001028 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301029
1030 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001031 cpdma_chan_get_stats(cpsw->rxch, &rx_stats);
1032 cpdma_chan_get_stats(cpsw->txch, &tx_stats);
Mugunthan V Nd9718542013-07-23 15:38:17 +05301033
1034 for (i = 0; i < CPSW_STATS_LEN; i++) {
1035 switch (cpsw_gstrings_stats[i].type) {
1036 case CPSW_STATS:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001037 val = readl(cpsw->hw_stats +
Mugunthan V Nd9718542013-07-23 15:38:17 +05301038 cpsw_gstrings_stats[i].stat_offset);
1039 data[i] = val;
1040 break;
1041
1042 case CPDMA_RX_STATS:
1043 p = (u8 *)&rx_stats +
1044 cpsw_gstrings_stats[i].stat_offset;
1045 data[i] = *(u32 *)p;
1046 break;
1047
1048 case CPDMA_TX_STATS:
1049 p = (u8 *)&tx_stats +
1050 cpsw_gstrings_stats[i].stat_offset;
1051 data[i] = *(u32 *)p;
1052 break;
1053 }
1054 }
1055}
1056
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001057static int cpsw_common_res_usage_state(struct cpsw_common *cpsw)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001058{
1059 u32 i;
1060 u32 usage_count = 0;
1061
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001062 if (!cpsw->data.dual_emac)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001063 return 0;
1064
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001065 for (i = 0; i < cpsw->data.slaves; i++)
1066 if (cpsw->slaves[i].open_stat)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001067 usage_count++;
1068
1069 return usage_count;
1070}
1071
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001072static inline int cpsw_tx_packet_submit(struct cpsw_priv *priv,
1073 struct sk_buff *skb)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001074{
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001075 struct cpsw_common *cpsw = priv->cpsw;
1076
1077 return cpdma_chan_submit(cpsw->txch, skb, skb->data, skb->len,
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001078 priv->emac_port + cpsw->data.dual_emac);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001079}
1080
1081static inline void cpsw_add_dual_emac_def_ale_entries(
1082 struct cpsw_priv *priv, struct cpsw_slave *slave,
1083 u32 slave_port)
1084{
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001085 u32 port_mask = 1 << slave_port | ALE_PORT_HOST;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001086
1087 if (priv->version == CPSW_VERSION_1)
1088 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1089 else
1090 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
1091 cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
1092 port_mask, port_mask, 0);
1093 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1094 port_mask, ALE_VLAN, slave->port_vlan, 0);
1095 cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001096 HOST_PORT_NUM, ALE_VLAN | ALE_SECURE, slave->port_vlan);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001097}
1098
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001099static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001100{
1101 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001102
1103 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1104 soft_reset(name, &slave->sliver->soft_reset);
1105}
1106
1107static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1108{
Mugunthan V Ndf828592012-03-18 20:17:54 +00001109 u32 slave_port;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001110 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001111
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001112 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001113
1114 /* setup priority mapping */
1115 __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001116
1117 switch (priv->version) {
1118 case CPSW_VERSION_1:
1119 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
1120 break;
1121 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05301122 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05301123 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +00001124 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
1125 break;
1126 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001127
1128 /* setup max packet size, and mac address */
1129 __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen);
1130 cpsw_set_slave_mac(slave, priv);
1131
1132 slave->mac_control = 0; /* no link yet */
1133
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001134 slave_port = cpsw_get_slave_port(slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001135
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001136 if (cpsw->data.dual_emac)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001137 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1138 else
1139 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1140 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001141
David Rivshind733f7542016-04-27 21:32:31 -04001142 if (slave->data->phy_node) {
David Rivshin552165b2016-04-27 21:25:25 -04001143 slave->phy = of_phy_connect(priv->ndev, slave->data->phy_node,
Heiko Schocher9e42f712015-10-17 06:04:35 +02001144 &cpsw_adjust_link, 0, slave->data->phy_if);
David Rivshind733f7542016-04-27 21:32:31 -04001145 if (!slave->phy) {
1146 dev_err(priv->dev, "phy \"%s\" not found on slave %d\n",
1147 slave->data->phy_node->full_name,
1148 slave->slave_num);
1149 return;
1150 }
1151 } else {
Heiko Schocher9e42f712015-10-17 06:04:35 +02001152 slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001153 &cpsw_adjust_link, slave->data->phy_if);
David Rivshind733f7542016-04-27 21:32:31 -04001154 if (IS_ERR(slave->phy)) {
1155 dev_err(priv->dev,
1156 "phy \"%s\" not found on slave %d, err %ld\n",
1157 slave->data->phy_id, slave->slave_num,
1158 PTR_ERR(slave->phy));
1159 slave->phy = NULL;
1160 return;
1161 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001162 }
David Rivshind733f7542016-04-27 21:32:31 -04001163
1164 phy_attached_info(slave->phy);
1165
1166 phy_start(slave->phy);
1167
1168 /* Configure GMII_SEL register */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001169 cpsw_phy_sel(cpsw->dev, slave->phy->interface, slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001170}
1171
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001172static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1173{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001174 struct cpsw_common *cpsw = priv->cpsw;
1175 const int vlan = cpsw->data.default_vlan;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001176 u32 reg;
1177 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001178 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001179
1180 reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
1181 CPSW2_PORT_VLAN;
1182
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001183 writel(vlan, &cpsw->host_port_regs->port_vlan);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001184
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001185 for (i = 0; i < cpsw->data.slaves; i++)
1186 slave_write(cpsw->slaves + i, vlan, reg);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001187
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001188 if (priv->ndev->flags & IFF_ALLMULTI)
1189 unreg_mcast_mask = ALE_ALL_PORTS;
1190 else
1191 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1192
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001193 cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS,
1194 ALE_ALL_PORTS, ALE_ALL_PORTS,
1195 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001196}
1197
Mugunthan V Ndf828592012-03-18 20:17:54 +00001198static void cpsw_init_host_port(struct cpsw_priv *priv)
1199{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001200 u32 fifo_mode;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001201 u32 control_reg;
1202 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001203
Mugunthan V Ndf828592012-03-18 20:17:54 +00001204 /* soft reset the controller and initialize ale */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001205 soft_reset("cpsw", &cpsw->regs->soft_reset);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001206 cpsw_ale_start(priv->ale);
1207
1208 /* switch to vlan unaware mode */
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001209 cpsw_ale_control_set(priv->ale, HOST_PORT_NUM, ALE_VLAN_AWARE,
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001210 CPSW_ALE_VLAN_AWARE);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001211 control_reg = readl(&cpsw->regs->control);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001212 control_reg |= CPSW_VLAN_AWARE;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001213 writel(control_reg, &cpsw->regs->control);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001214 fifo_mode = (cpsw->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001215 CPSW_FIFO_NORMAL_MODE;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001216 writel(fifo_mode, &cpsw->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001217
1218 /* setup host port priority mapping */
1219 __raw_writel(CPDMA_TX_PRIORITY_MAP,
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001220 &cpsw->host_port_regs->cpdma_tx_pri_map);
1221 __raw_writel(0, &cpsw->host_port_regs->cpdma_rx_chan_map);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001222
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001223 cpsw_ale_control_set(priv->ale, HOST_PORT_NUM,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001224 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1225
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001226 if (!cpsw->data.dual_emac) {
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001227 cpsw_ale_add_ucast(priv->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001228 0, 0);
1229 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001230 ALE_PORT_HOST, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001231 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001232}
1233
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001234static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv)
1235{
Schuyler Patton3995d262014-03-03 16:19:06 +05301236 u32 slave_port;
1237
Ivan Khoronzhuk6f1f5832016-08-10 02:22:34 +03001238 slave_port = cpsw_get_slave_port(slave->slave_num);
Schuyler Patton3995d262014-03-03 16:19:06 +05301239
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001240 if (!slave->phy)
1241 return;
1242 phy_stop(slave->phy);
1243 phy_disconnect(slave->phy);
1244 slave->phy = NULL;
Schuyler Patton3995d262014-03-03 16:19:06 +05301245 cpsw_ale_control_set(priv->ale, slave_port,
1246 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Grygorii Strashko1f95ba02016-06-24 21:23:41 +03001247 soft_reset_slave(slave);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001248}
1249
Mugunthan V Ndf828592012-03-18 20:17:54 +00001250static int cpsw_ndo_open(struct net_device *ndev)
1251{
1252 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001253 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001254 int i, ret;
1255 u32 reg;
1256
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001257 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001258 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001259 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko108a6532016-06-24 21:23:42 +03001260 return ret;
1261 }
Grygorii Strashko3fa88c52016-04-19 21:09:49 +03001262
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001263 if (!cpsw_common_res_usage_state(cpsw))
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001264 cpsw_intr_disable(cpsw);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001265 netif_carrier_off(ndev);
1266
Richard Cochran549985e2012-11-14 09:07:56 +00001267 reg = priv->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001268
1269 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1270 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1271 CPSW_RTL_VERSION(reg));
1272
1273 /* initialize host and slave ports */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001274 if (!cpsw_common_res_usage_state(cpsw))
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001275 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001276 for_each_slave(priv, cpsw_slave_open, priv);
1277
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001278 /* Add default VLAN */
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001279 if (!cpsw->data.dual_emac)
Mugunthan V Ne6afea02014-06-18 17:21:48 +05301280 cpsw_add_default_vlan(priv);
1281 else
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001282 cpsw_ale_add_vlan(priv->ale, cpsw->data.default_vlan,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001283 ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001284
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001285 if (!cpsw_common_res_usage_state(cpsw)) {
1286 struct cpsw_priv *priv_sl0 = cpsw_get_slave_priv(cpsw, 0);
Ivan Khoronzhuk17933312016-06-17 13:25:39 +03001287 int buf_num;
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301288
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001289 /* setup tx dma to fixed prio and zero offset */
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001290 cpdma_control_set(cpsw->dma, CPDMA_TX_PRIO_FIXED, 1);
1291 cpdma_control_set(cpsw->dma, CPDMA_RX_BUFFER_OFFSET, 0);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001292
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001293 /* disable priority elevation */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001294 __raw_writel(0, &cpsw->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001295
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001296 /* enable statistics collection only on all ports */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001297 __raw_writel(0x7, &cpsw->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001298
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301299 /* Enable internal fifo flow control */
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001300 writel(0x7, &cpsw->regs->flow_control);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301301
Mugunthan V N32a74322015-08-04 16:06:20 +05301302 napi_enable(&priv_sl0->napi_rx);
1303 napi_enable(&priv_sl0->napi_tx);
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301304
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001305 if (cpsw->tx_irq_disabled) {
1306 cpsw->tx_irq_disabled = false;
1307 enable_irq(cpsw->irqs_table[1]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301308 }
1309
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001310 if (cpsw->rx_irq_disabled) {
1311 cpsw->rx_irq_disabled = false;
1312 enable_irq(cpsw->irqs_table[0]);
Mugunthan V N7da11602015-08-12 15:22:53 +05301313 }
1314
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001315 buf_num = cpdma_chan_get_rx_buf_num(cpsw->dma);
Ivan Khoronzhuk17933312016-06-17 13:25:39 +03001316 for (i = 0; i < buf_num; i++) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001317 struct sk_buff *skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001318
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001319 ret = -ENOMEM;
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001320 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1321 priv->rx_packet_max, GFP_KERNEL);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001322 if (!skb)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001323 goto err_cleanup;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001324 ret = cpdma_chan_submit(cpsw->rxch, skb, skb->data,
1325 skb_tailroom(skb), 0);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001326 if (ret < 0) {
1327 kfree_skb(skb);
1328 goto err_cleanup;
1329 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001330 }
1331 /* continue even if we didn't manage to submit all
1332 * receive descs
1333 */
1334 cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001335
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001336 if (cpts_register(cpsw->dev, priv->cpts,
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001337 cpsw->data.cpts_clock_mult,
1338 cpsw->data.cpts_clock_shift))
Mugunthan V Nf280e892013-12-11 22:09:05 -06001339 dev_err(priv->dev, "error registering cpts device\n");
1340
Mugunthan V Ndf828592012-03-18 20:17:54 +00001341 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001342
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001343 /* Enable Interrupt pacing if configured */
1344 if (priv->coal_intvl != 0) {
1345 struct ethtool_coalesce coal;
1346
Ivan Khoronzhuk8478b6c2016-06-02 16:14:52 +03001347 coal.rx_coalesce_usecs = priv->coal_intvl;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001348 cpsw_set_coalesce(ndev, &coal);
1349 }
1350
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001351 cpdma_ctlr_start(cpsw->dma);
1352 cpsw_intr_enable(cpsw);
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301353
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001354 if (cpsw->data.dual_emac)
1355 cpsw->slaves[priv->emac_port].open_stat = true;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001356 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001357
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001358err_cleanup:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001359 cpdma_ctlr_stop(cpsw->dma);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001360 for_each_slave(priv, cpsw_slave_stop, priv);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001361 pm_runtime_put_sync(cpsw->dev);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001362 netif_carrier_off(priv->ndev);
1363 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001364}
1365
1366static int cpsw_ndo_stop(struct net_device *ndev)
1367{
1368 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001369 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001370
1371 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001372 netif_stop_queue(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001373 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001374
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001375 if (cpsw_common_res_usage_state(cpsw) <= 1) {
1376 struct cpsw_priv *priv_sl0 = cpsw_get_slave_priv(cpsw, 0);
Mugunthan V Nd354eb82015-08-04 16:06:19 +05301377
Mugunthan V N32a74322015-08-04 16:06:20 +05301378 napi_disable(&priv_sl0->napi_rx);
1379 napi_disable(&priv_sl0->napi_tx);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001380 cpts_unregister(priv->cpts);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001381 cpsw_intr_disable(cpsw);
1382 cpdma_ctlr_stop(cpsw->dma);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001383 cpsw_ale_stop(priv->ale);
1384 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001385 for_each_slave(priv, cpsw_slave_stop, priv);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001386 pm_runtime_put_sync(cpsw->dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001387 if (cpsw->data.dual_emac)
1388 cpsw->slaves[priv->emac_port].open_stat = false;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001389 return 0;
1390}
1391
1392static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1393 struct net_device *ndev)
1394{
1395 struct cpsw_priv *priv = netdev_priv(ndev);
1396 int ret;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001397 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001398
Florian Westphal860e9532016-05-03 16:33:13 +02001399 netif_trans_update(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001400
1401 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1402 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001403 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001404 return NETDEV_TX_OK;
1405 }
1406
Mugunthan V N9232b162013-02-11 09:52:19 +00001407 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
1408 priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001409 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1410
1411 skb_tx_timestamp(skb);
1412
Ivan Khoronzhuk27e9e102016-08-10 02:22:32 +03001413 ret = cpsw_tx_packet_submit(priv, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001414 if (unlikely(ret != 0)) {
1415 cpsw_err(priv, tx_err, "desc submit failed\n");
1416 goto fail;
1417 }
1418
Mugunthan V Nfae50822013-01-17 06:31:34 +00001419 /* If there is no more tx desc left free then we need to
1420 * tell the kernel to stop sending us tx frames.
1421 */
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001422 if (unlikely(!cpdma_check_free_tx_desc(cpsw->txch)))
Mugunthan V Nfae50822013-01-17 06:31:34 +00001423 netif_stop_queue(ndev);
1424
Mugunthan V Ndf828592012-03-18 20:17:54 +00001425 return NETDEV_TX_OK;
1426fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001427 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001428 netif_stop_queue(ndev);
1429 return NETDEV_TX_BUSY;
1430}
1431
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001432#ifdef CONFIG_TI_CPTS
1433
1434static void cpsw_hwtstamp_v1(struct cpsw_priv *priv)
1435{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001436 struct cpsw_common *cpsw = priv->cpsw;
1437 struct cpsw_slave *slave = &cpsw->slaves[cpsw->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001438 u32 ts_en, seq_id;
1439
Mugunthan V N9232b162013-02-11 09:52:19 +00001440 if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001441 slave_write(slave, 0, CPSW1_TS_CTL);
1442 return;
1443 }
1444
1445 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1446 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1447
Mugunthan V N9232b162013-02-11 09:52:19 +00001448 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001449 ts_en |= CPSW_V1_TS_TX_EN;
1450
Mugunthan V N9232b162013-02-11 09:52:19 +00001451 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001452 ts_en |= CPSW_V1_TS_RX_EN;
1453
1454 slave_write(slave, ts_en, CPSW1_TS_CTL);
1455 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1456}
1457
1458static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1459{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001460 struct cpsw_slave *slave;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001461 struct cpsw_common *cpsw = priv->cpsw;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001462 u32 ctrl, mtype;
1463
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001464 if (cpsw->data.dual_emac)
1465 slave = &cpsw->slaves[priv->emac_port];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001466 else
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001467 slave = &cpsw->slaves[cpsw->data.active_slave];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001468
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001469 ctrl = slave_read(slave, CPSW2_CONTROL);
George Cherian09c55372014-05-02 12:02:02 +05301470 switch (priv->version) {
1471 case CPSW_VERSION_2:
1472 ctrl &= ~CTRL_V2_ALL_TS_MASK;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001473
George Cherian09c55372014-05-02 12:02:02 +05301474 if (priv->cpts->tx_enable)
1475 ctrl |= CTRL_V2_TX_TS_BITS;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001476
George Cherian09c55372014-05-02 12:02:02 +05301477 if (priv->cpts->rx_enable)
1478 ctrl |= CTRL_V2_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001479 break;
George Cherian09c55372014-05-02 12:02:02 +05301480 case CPSW_VERSION_3:
1481 default:
1482 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1483
1484 if (priv->cpts->tx_enable)
1485 ctrl |= CTRL_V3_TX_TS_BITS;
1486
1487 if (priv->cpts->rx_enable)
1488 ctrl |= CTRL_V3_RX_TS_BITS;
Richard Cochran26fe7eb2015-05-25 11:02:13 +02001489 break;
George Cherian09c55372014-05-02 12:02:02 +05301490 }
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001491
1492 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1493
1494 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1495 slave_write(slave, ctrl, CPSW2_CONTROL);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03001496 __raw_writel(ETH_P_1588, &cpsw->regs->ts_ltype);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001497}
1498
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001499static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001500{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001501 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N9232b162013-02-11 09:52:19 +00001502 struct cpts *cpts = priv->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001503 struct hwtstamp_config cfg;
1504
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001505 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301506 priv->version != CPSW_VERSION_2 &&
1507 priv->version != CPSW_VERSION_3)
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001508 return -EOPNOTSUPP;
1509
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001510 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1511 return -EFAULT;
1512
1513 /* reserved for future extensions */
1514 if (cfg.flags)
1515 return -EINVAL;
1516
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001517 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001518 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001519
1520 switch (cfg.rx_filter) {
1521 case HWTSTAMP_FILTER_NONE:
1522 cpts->rx_enable = 0;
1523 break;
1524 case HWTSTAMP_FILTER_ALL:
1525 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1526 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1527 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1528 return -ERANGE;
1529 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1530 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1531 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1532 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1533 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1534 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1535 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1536 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1537 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1538 cpts->rx_enable = 1;
1539 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1540 break;
1541 default:
1542 return -ERANGE;
1543 }
1544
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001545 cpts->tx_enable = cfg.tx_type == HWTSTAMP_TX_ON;
1546
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001547 switch (priv->version) {
1548 case CPSW_VERSION_1:
1549 cpsw_hwtstamp_v1(priv);
1550 break;
1551 case CPSW_VERSION_2:
George Cherianf7d403c2014-05-02 12:02:01 +05301552 case CPSW_VERSION_3:
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001553 cpsw_hwtstamp_v2(priv);
1554 break;
1555 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001556 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001557 }
1558
1559 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1560}
1561
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001562static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1563{
1564 struct cpsw_priv *priv = netdev_priv(dev);
1565 struct cpts *cpts = priv->cpts;
1566 struct hwtstamp_config cfg;
1567
1568 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301569 priv->version != CPSW_VERSION_2 &&
1570 priv->version != CPSW_VERSION_3)
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001571 return -EOPNOTSUPP;
1572
1573 cfg.flags = 0;
1574 cfg.tx_type = cpts->tx_enable ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1575 cfg.rx_filter = (cpts->rx_enable ?
1576 HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE);
1577
1578 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1579}
1580
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001581#endif /*CONFIG_TI_CPTS*/
1582
1583static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1584{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001585 struct cpsw_priv *priv = netdev_priv(dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001586 struct cpsw_common *cpsw = priv->cpsw;
1587 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001588
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001589 if (!netif_running(dev))
1590 return -EINVAL;
1591
Mugunthan V N11f2c982013-03-11 23:16:38 +00001592 switch (cmd) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001593#ifdef CONFIG_TI_CPTS
Mugunthan V N11f2c982013-03-11 23:16:38 +00001594 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001595 return cpsw_hwtstamp_set(dev, req);
1596 case SIOCGHWTSTAMP:
1597 return cpsw_hwtstamp_get(dev, req);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001598#endif
Mugunthan V N11f2c982013-03-11 23:16:38 +00001599 }
1600
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001601 if (!cpsw->slaves[slave_no].phy)
Stefan Sørensenc1b59942014-02-16 14:54:25 +01001602 return -EOPNOTSUPP;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001603 return phy_mii_ioctl(cpsw->slaves[slave_no].phy, req, cmd);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001604}
1605
Mugunthan V Ndf828592012-03-18 20:17:54 +00001606static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1607{
1608 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001609 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001610
1611 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001612 ndev->stats.tx_errors++;
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001613 cpsw_intr_disable(cpsw);
1614 cpdma_chan_stop(cpsw->txch);
1615 cpdma_chan_start(cpsw->txch);
1616 cpsw_intr_enable(cpsw);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001617}
1618
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301619static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1620{
1621 struct cpsw_priv *priv = netdev_priv(ndev);
1622 struct sockaddr *addr = (struct sockaddr *)p;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001623 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301624 int flags = 0;
1625 u16 vid = 0;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001626 int ret;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301627
1628 if (!is_valid_ether_addr(addr->sa_data))
1629 return -EADDRNOTAVAIL;
1630
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001631 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001632 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001633 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001634 return ret;
1635 }
1636
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001637 if (cpsw->data.dual_emac) {
1638 vid = cpsw->slaves[priv->emac_port].port_vlan;
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301639 flags = ALE_VLAN;
1640 }
1641
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001642 cpsw_ale_del_ucast(priv->ale, priv->mac_addr, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301643 flags, vid);
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001644 cpsw_ale_add_ucast(priv->ale, addr->sa_data, HOST_PORT_NUM,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301645 flags, vid);
1646
1647 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1648 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1649 for_each_slave(priv, cpsw_set_slave_mac, priv);
1650
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001651 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001652
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301653 return 0;
1654}
1655
Mugunthan V Ndf828592012-03-18 20:17:54 +00001656#ifdef CONFIG_NET_POLL_CONTROLLER
1657static void cpsw_ndo_poll_controller(struct net_device *ndev)
1658{
1659 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001660 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001661
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001662 cpsw_intr_disable(priv->cpsw);
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03001663 cpsw_rx_interrupt(cpsw->irqs_table[0], priv);
1664 cpsw_tx_interrupt(cpsw->irqs_table[1], priv);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03001665 cpsw_intr_enable(priv->cpsw);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001666}
1667#endif
1668
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001669static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1670 unsigned short vid)
1671{
1672 int ret;
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301673 int unreg_mcast_mask = 0;
1674 u32 port_mask;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001675 struct cpsw_common *cpsw = priv->cpsw;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001676
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001677 if (cpsw->data.dual_emac) {
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301678 port_mask = (1 << (priv->emac_port + 1)) | ALE_PORT_HOST;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001679
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301680 if (priv->ndev->flags & IFF_ALLMULTI)
1681 unreg_mcast_mask = port_mask;
1682 } else {
1683 port_mask = ALE_ALL_PORTS;
1684
1685 if (priv->ndev->flags & IFF_ALLMULTI)
1686 unreg_mcast_mask = ALE_ALL_PORTS;
1687 else
1688 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1689 }
1690
1691 ret = cpsw_ale_add_vlan(priv->ale, vid, port_mask, 0, port_mask,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001692 unreg_mcast_mask);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001693 if (ret != 0)
1694 return ret;
1695
1696 ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001697 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001698 if (ret != 0)
1699 goto clean_vid;
1700
1701 ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
Mugunthan V N9f6bd8f2015-01-15 14:59:28 +05301702 port_mask, ALE_VLAN, vid, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001703 if (ret != 0)
1704 goto clean_vlan_ucast;
1705 return 0;
1706
1707clean_vlan_ucast:
1708 cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko71a2cbb2016-04-07 15:16:44 +03001709 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001710clean_vid:
1711 cpsw_ale_del_vlan(priv->ale, vid, 0);
1712 return ret;
1713}
1714
1715static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001716 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001717{
1718 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001719 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001720 int ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001721
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001722 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001723 return 0;
1724
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001725 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001726 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001727 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001728 return ret;
1729 }
1730
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001731 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05301732 /* In dual EMAC, reserved VLAN id should not be used for
1733 * creating VLAN interfaces as this can break the dual
1734 * EMAC port separation
1735 */
1736 int i;
1737
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001738 for (i = 0; i < cpsw->data.slaves; i++) {
1739 if (vid == cpsw->slaves[i].port_vlan)
Mugunthan V N02a54162015-01-22 15:19:22 +05301740 return -EINVAL;
1741 }
1742 }
1743
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001744 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001745 ret = cpsw_add_vlan_ale_entry(priv, vid);
1746
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001747 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001748 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001749}
1750
1751static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001752 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001753{
1754 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001755 struct cpsw_common *cpsw = priv->cpsw;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001756 int ret;
1757
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001758 if (vid == cpsw->data.default_vlan)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001759 return 0;
1760
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001761 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001762 if (ret < 0) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001763 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001764 return ret;
1765 }
1766
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001767 if (cpsw->data.dual_emac) {
Mugunthan V N02a54162015-01-22 15:19:22 +05301768 int i;
1769
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001770 for (i = 0; i < cpsw->data.slaves; i++) {
1771 if (vid == cpsw->slaves[i].port_vlan)
Mugunthan V N02a54162015-01-22 15:19:22 +05301772 return -EINVAL;
1773 }
1774 }
1775
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001776 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1777 ret = cpsw_ale_del_vlan(priv->ale, vid, 0);
1778 if (ret != 0)
1779 return ret;
1780
1781 ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
Grygorii Strashko61f1cef2016-04-07 15:16:43 +03001782 HOST_PORT_NUM, ALE_VLAN, vid);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001783 if (ret != 0)
1784 return ret;
1785
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001786 ret = cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast,
1787 0, ALE_VLAN, vid);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001788 pm_runtime_put(cpsw->dev);
Grygorii Strashkoa6c5d142016-06-24 21:23:45 +03001789 return ret;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001790}
1791
Mugunthan V Ndf828592012-03-18 20:17:54 +00001792static const struct net_device_ops cpsw_netdev_ops = {
1793 .ndo_open = cpsw_ndo_open,
1794 .ndo_stop = cpsw_ndo_stop,
1795 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301796 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001797 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001798 .ndo_validate_addr = eth_validate_addr,
David S. Miller5c473ed2012-03-20 00:33:59 -04001799 .ndo_change_mtu = eth_change_mtu,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001800 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00001801 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001802#ifdef CONFIG_NET_POLL_CONTROLLER
1803 .ndo_poll_controller = cpsw_ndo_poll_controller,
1804#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001805 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
1806 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001807};
1808
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301809static int cpsw_get_regs_len(struct net_device *ndev)
1810{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001811 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301812
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001813 return cpsw->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301814}
1815
1816static void cpsw_get_regs(struct net_device *ndev,
1817 struct ethtool_regs *regs, void *p)
1818{
1819 struct cpsw_priv *priv = netdev_priv(ndev);
1820 u32 *reg = p;
1821
1822 /* update CPSW IP version */
1823 regs->version = priv->version;
1824
1825 cpsw_ale_dump(priv->ale, reg);
1826}
1827
Mugunthan V Ndf828592012-03-18 20:17:54 +00001828static void cpsw_get_drvinfo(struct net_device *ndev,
1829 struct ethtool_drvinfo *info)
1830{
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001831 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001832 struct platform_device *pdev = to_platform_device(cpsw->dev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001833
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301834 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00001835 strlcpy(info->version, "1.0", sizeof(info->version));
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001836 strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info));
Mugunthan V Ndf828592012-03-18 20:17:54 +00001837}
1838
1839static u32 cpsw_get_msglevel(struct net_device *ndev)
1840{
1841 struct cpsw_priv *priv = netdev_priv(ndev);
1842 return priv->msg_enable;
1843}
1844
1845static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
1846{
1847 struct cpsw_priv *priv = netdev_priv(ndev);
1848 priv->msg_enable = value;
1849}
1850
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001851static int cpsw_get_ts_info(struct net_device *ndev,
1852 struct ethtool_ts_info *info)
1853{
1854#ifdef CONFIG_TI_CPTS
1855 struct cpsw_priv *priv = netdev_priv(ndev);
1856
1857 info->so_timestamping =
1858 SOF_TIMESTAMPING_TX_HARDWARE |
1859 SOF_TIMESTAMPING_TX_SOFTWARE |
1860 SOF_TIMESTAMPING_RX_HARDWARE |
1861 SOF_TIMESTAMPING_RX_SOFTWARE |
1862 SOF_TIMESTAMPING_SOFTWARE |
1863 SOF_TIMESTAMPING_RAW_HARDWARE;
Mugunthan V N9232b162013-02-11 09:52:19 +00001864 info->phc_index = priv->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001865 info->tx_types =
1866 (1 << HWTSTAMP_TX_OFF) |
1867 (1 << HWTSTAMP_TX_ON);
1868 info->rx_filters =
1869 (1 << HWTSTAMP_FILTER_NONE) |
1870 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
1871#else
1872 info->so_timestamping =
1873 SOF_TIMESTAMPING_TX_SOFTWARE |
1874 SOF_TIMESTAMPING_RX_SOFTWARE |
1875 SOF_TIMESTAMPING_SOFTWARE;
1876 info->phc_index = -1;
1877 info->tx_types = 0;
1878 info->rx_filters = 0;
1879#endif
1880 return 0;
1881}
1882
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001883static int cpsw_get_settings(struct net_device *ndev,
1884 struct ethtool_cmd *ecmd)
1885{
1886 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001887 struct cpsw_common *cpsw = priv->cpsw;
1888 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001889
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001890 if (cpsw->slaves[slave_no].phy)
1891 return phy_ethtool_gset(cpsw->slaves[slave_no].phy, ecmd);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001892 else
1893 return -EOPNOTSUPP;
1894}
1895
1896static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
1897{
1898 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001899 struct cpsw_common *cpsw = priv->cpsw;
1900 int slave_no = cpsw_slave_index(cpsw, priv);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001901
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001902 if (cpsw->slaves[slave_no].phy)
1903 return phy_ethtool_sset(cpsw->slaves[slave_no].phy, ecmd);
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001904 else
1905 return -EOPNOTSUPP;
1906}
1907
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001908static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1909{
1910 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001911 struct cpsw_common *cpsw = priv->cpsw;
1912 int slave_no = cpsw_slave_index(cpsw, priv);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001913
1914 wol->supported = 0;
1915 wol->wolopts = 0;
1916
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001917 if (cpsw->slaves[slave_no].phy)
1918 phy_ethtool_get_wol(cpsw->slaves[slave_no].phy, wol);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001919}
1920
1921static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1922{
1923 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001924 struct cpsw_common *cpsw = priv->cpsw;
1925 int slave_no = cpsw_slave_index(cpsw, priv);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001926
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03001927 if (cpsw->slaves[slave_no].phy)
1928 return phy_ethtool_set_wol(cpsw->slaves[slave_no].phy, wol);
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001929 else
1930 return -EOPNOTSUPP;
1931}
1932
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301933static void cpsw_get_pauseparam(struct net_device *ndev,
1934 struct ethtool_pauseparam *pause)
1935{
1936 struct cpsw_priv *priv = netdev_priv(ndev);
1937
1938 pause->autoneg = AUTONEG_DISABLE;
1939 pause->rx_pause = priv->rx_pause ? true : false;
1940 pause->tx_pause = priv->tx_pause ? true : false;
1941}
1942
1943static int cpsw_set_pauseparam(struct net_device *ndev,
1944 struct ethtool_pauseparam *pause)
1945{
1946 struct cpsw_priv *priv = netdev_priv(ndev);
1947 bool link;
1948
1949 priv->rx_pause = pause->rx_pause ? true : false;
1950 priv->tx_pause = pause->tx_pause ? true : false;
1951
1952 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301953 return 0;
1954}
1955
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001956static int cpsw_ethtool_op_begin(struct net_device *ndev)
1957{
1958 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03001959 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001960 int ret;
1961
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001962 ret = pm_runtime_get_sync(cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001963 if (ret < 0) {
1964 cpsw_err(priv, drv, "ethtool begin failed %d\n", ret);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001965 pm_runtime_put_noidle(cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001966 }
1967
1968 return ret;
1969}
1970
1971static void cpsw_ethtool_op_complete(struct net_device *ndev)
1972{
1973 struct cpsw_priv *priv = netdev_priv(ndev);
1974 int ret;
1975
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03001976 ret = pm_runtime_put(priv->cpsw->dev);
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03001977 if (ret < 0)
1978 cpsw_err(priv, drv, "ethtool complete failed %d\n", ret);
1979}
1980
Mugunthan V Ndf828592012-03-18 20:17:54 +00001981static const struct ethtool_ops cpsw_ethtool_ops = {
1982 .get_drvinfo = cpsw_get_drvinfo,
1983 .get_msglevel = cpsw_get_msglevel,
1984 .set_msglevel = cpsw_set_msglevel,
1985 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001986 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001987 .get_settings = cpsw_get_settings,
1988 .set_settings = cpsw_set_settings,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001989 .get_coalesce = cpsw_get_coalesce,
1990 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05301991 .get_sset_count = cpsw_get_sset_count,
1992 .get_strings = cpsw_get_strings,
1993 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301994 .get_pauseparam = cpsw_get_pauseparam,
1995 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001996 .get_wol = cpsw_get_wol,
1997 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301998 .get_regs_len = cpsw_get_regs_len,
1999 .get_regs = cpsw_get_regs,
Grygorii Strashko7898b1d2016-06-24 21:23:44 +03002000 .begin = cpsw_ethtool_op_begin,
2001 .complete = cpsw_ethtool_op_complete,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002002};
2003
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002004static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_common *cpsw,
Richard Cochran549985e2012-11-14 09:07:56 +00002005 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002006{
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002007 void __iomem *regs = cpsw->regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002008 int slave_num = slave->slave_num;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002009 struct cpsw_slave_data *data = cpsw->data.slave_data + slave_num;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002010
2011 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00002012 slave->regs = regs + slave_reg_ofs;
2013 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002014 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002015}
2016
David Rivshin552165b2016-04-27 21:25:25 -04002017static int cpsw_probe_dt(struct cpsw_platform_data *data,
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002018 struct platform_device *pdev)
2019{
2020 struct device_node *node = pdev->dev.of_node;
2021 struct device_node *slave_node;
2022 int i = 0, ret;
2023 u32 prop;
2024
2025 if (!node)
2026 return -EINVAL;
2027
2028 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302029 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002030 return -EINVAL;
2031 }
2032 data->slaves = prop;
2033
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002034 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302035 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302036 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002037 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00002038 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00002039
Richard Cochran00ab94e2012-10-29 08:45:19 +00002040 if (of_property_read_u32(node, "cpts_clock_mult", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302041 dev_err(&pdev->dev, "Missing cpts_clock_mult property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302042 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00002043 }
2044 data->cpts_clock_mult = prop;
2045
2046 if (of_property_read_u32(node, "cpts_clock_shift", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302047 dev_err(&pdev->dev, "Missing cpts_clock_shift property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302048 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00002049 }
2050 data->cpts_clock_shift = prop;
2051
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302052 data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
2053 * sizeof(struct cpsw_slave_data),
2054 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00002055 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302056 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002057
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002058 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302059 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302060 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002061 }
2062 data->channels = prop;
2063
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002064 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302065 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302066 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002067 }
2068 data->ale_entries = prop;
2069
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002070 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302071 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302072 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002073 }
2074 data->bd_ram_size = prop;
2075
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002076 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302077 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302078 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002079 }
2080 data->mac_control = prop;
2081
Markus Pargmann281abd92013-10-04 14:44:40 +02002082 if (of_property_read_bool(node, "dual_emac"))
2083 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002084
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002085 /*
2086 * Populate all the child nodes here...
2087 */
2088 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2089 /* We do not want to force this, as in some cases may not have child */
2090 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05302091 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002092
Ben Hutchings8658aaf2016-06-21 01:16:31 +01002093 for_each_available_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00002094 struct cpsw_slave_data *slave_data = data->slave_data + i;
2095 const void *mac_addr = NULL;
Richard Cochran549985e2012-11-14 09:07:56 +00002096 int lenp;
2097 const __be32 *parp;
Richard Cochran549985e2012-11-14 09:07:56 +00002098
Markus Pargmannf468b102013-10-04 14:44:39 +02002099 /* This is no slave child node, continue */
2100 if (strcmp(slave_node->name, "slave"))
2101 continue;
2102
David Rivshin552165b2016-04-27 21:25:25 -04002103 slave_data->phy_node = of_parse_phandle(slave_node,
2104 "phy-handle", 0);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002105 parp = of_get_property(slave_node, "phy_id", &lenp);
David Rivshinae092b52016-04-27 21:38:26 -04002106 if (slave_data->phy_node) {
2107 dev_dbg(&pdev->dev,
2108 "slave[%d] using phy-handle=\"%s\"\n",
2109 i, slave_data->phy_node->full_name);
2110 } else if (of_phy_is_fixed_link(slave_node)) {
David Rivshindfc0a6d2015-12-16 23:02:11 -05002111 /* In the case of a fixed PHY, the DT node associated
2112 * to the PHY is the Ethernet MAC DT node.
2113 */
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002114 ret = of_phy_register_fixed_link(slave_node);
2115 if (ret)
2116 return ret;
David Rivshin06cd6d62016-04-27 21:45:45 -04002117 slave_data->phy_node = of_node_get(slave_node);
David Rivshinf1eea5c2015-12-16 23:02:10 -05002118 } else if (parp) {
2119 u32 phyid;
2120 struct device_node *mdio_node;
2121 struct platform_device *mdio;
2122
2123 if (lenp != (sizeof(__be32) * 2)) {
2124 dev_err(&pdev->dev, "Invalid slave[%d] phy_id property\n", i);
2125 goto no_phy_slave;
2126 }
2127 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2128 phyid = be32_to_cpup(parp+1);
2129 mdio = of_find_device_by_node(mdio_node);
2130 of_node_put(mdio_node);
2131 if (!mdio) {
2132 dev_err(&pdev->dev, "Missing mdio platform device\n");
2133 return -EINVAL;
2134 }
2135 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2136 PHY_ID_FMT, mdio->name, phyid);
2137 } else {
David Rivshinae092b52016-04-27 21:38:26 -04002138 dev_err(&pdev->dev,
2139 "No slave[%d] phy_id, phy-handle, or fixed-link property\n",
2140 i);
Markus Brunner1f71e8c2015-11-03 22:09:51 +01002141 goto no_phy_slave;
2142 }
Mugunthan V N47276fc2014-10-24 18:51:33 +05302143 slave_data->phy_if = of_get_phy_mode(slave_node);
2144 if (slave_data->phy_if < 0) {
2145 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2146 i);
2147 return slave_data->phy_if;
2148 }
2149
2150no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00002151 mac_addr = of_get_mac_address(slave_node);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002152 if (mac_addr) {
Richard Cochran549985e2012-11-14 09:07:56 +00002153 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002154 } else {
Mugunthan V Nb6745f62015-09-21 15:56:50 +05302155 ret = ti_cm_get_macid(&pdev->dev, i,
2156 slave_data->mac_addr);
2157 if (ret)
2158 return ret;
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002159 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002160 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00002161 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002162 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302163 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002164 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05302165 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2166 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002167 } else {
2168 slave_data->dual_emac_res_vlan = prop;
2169 }
2170 }
2171
Richard Cochran549985e2012-11-14 09:07:56 +00002172 i++;
Mugunthan V N3a27bfa2013-12-02 12:53:39 +05302173 if (i == data->slaves)
2174 break;
Richard Cochran549985e2012-11-14 09:07:56 +00002175 }
2176
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002177 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002178}
2179
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002180static int cpsw_probe_dual_emac(struct cpsw_priv *priv)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002181{
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002182 struct cpsw_common *cpsw = priv->cpsw;
2183 struct cpsw_platform_data *data = &cpsw->data;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002184 struct net_device *ndev;
2185 struct cpsw_priv *priv_sl2;
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03002186 int ret = 0;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002187
2188 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2189 if (!ndev) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002190 dev_err(cpsw->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002191 return -ENOMEM;
2192 }
2193
2194 priv_sl2 = netdev_priv(ndev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002195 priv_sl2->cpsw = cpsw;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002196 priv_sl2->ndev = ndev;
2197 priv_sl2->dev = &ndev->dev;
2198 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2199 priv_sl2->rx_packet_max = max(rx_packet_max, 128);
2200
2201 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2202 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2203 ETH_ALEN);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002204 dev_info(cpsw->dev, "cpsw: Detected MACID = %pM\n",
2205 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002206 } else {
2207 random_ether_addr(priv_sl2->mac_addr);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002208 dev_info(cpsw->dev, "cpsw: Random MACID = %pM\n",
2209 priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002210 }
2211 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2212
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002213 priv_sl2->coal_intvl = 0;
2214 priv_sl2->bus_freq_mhz = priv->bus_freq_mhz;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002215 priv_sl2->ale = priv->ale;
2216 priv_sl2->emac_port = 1;
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002217 cpsw->slaves[1].ndev = ndev;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002218 priv_sl2->cpts = priv->cpts;
2219 priv_sl2->version = priv->version;
Patrick McHardyf6469682013-04-19 02:04:27 +00002220 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002221
2222 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002223 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002224
2225 /* register the network device */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002226 SET_NETDEV_DEV(ndev, cpsw->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002227 ret = register_netdev(ndev);
2228 if (ret) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002229 dev_err(cpsw->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002230 free_netdev(ndev);
2231 ret = -ENODEV;
2232 }
2233
2234 return ret;
2235}
2236
Mugunthan V N7da11602015-08-12 15:22:53 +05302237#define CPSW_QUIRK_IRQ BIT(0)
2238
2239static struct platform_device_id cpsw_devtype[] = {
2240 {
2241 /* keep it for existing comaptibles */
2242 .name = "cpsw",
2243 .driver_data = CPSW_QUIRK_IRQ,
2244 }, {
2245 .name = "am335x-cpsw",
2246 .driver_data = CPSW_QUIRK_IRQ,
2247 }, {
2248 .name = "am4372-cpsw",
2249 .driver_data = 0,
2250 }, {
2251 .name = "dra7-cpsw",
2252 .driver_data = 0,
2253 }, {
2254 /* sentinel */
2255 }
2256};
2257MODULE_DEVICE_TABLE(platform, cpsw_devtype);
2258
2259enum ti_cpsw_type {
2260 CPSW = 0,
2261 AM335X_CPSW,
2262 AM4372_CPSW,
2263 DRA7_CPSW,
2264};
2265
2266static const struct of_device_id cpsw_of_mtable[] = {
2267 { .compatible = "ti,cpsw", .data = &cpsw_devtype[CPSW], },
2268 { .compatible = "ti,am335x-cpsw", .data = &cpsw_devtype[AM335X_CPSW], },
2269 { .compatible = "ti,am4372-cpsw", .data = &cpsw_devtype[AM4372_CPSW], },
2270 { .compatible = "ti,dra7-cpsw", .data = &cpsw_devtype[DRA7_CPSW], },
2271 { /* sentinel */ },
2272};
2273MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
2274
Bill Pemberton663e12e2012-12-03 09:23:45 -05002275static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002276{
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002277 struct clk *clk;
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002278 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002279 struct net_device *ndev;
2280 struct cpsw_priv *priv;
2281 struct cpdma_params dma_params;
2282 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302283 void __iomem *ss_regs;
2284 struct resource *res, *ss_res;
Mugunthan V N7da11602015-08-12 15:22:53 +05302285 const struct of_device_id *of_id;
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302286 struct gpio_descs *mode;
Richard Cochran549985e2012-11-14 09:07:56 +00002287 u32 slave_offset, sliver_offset, slave_size;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002288 struct cpsw_common *cpsw;
Felipe Balbi5087b912015-01-16 10:11:11 -06002289 int ret = 0, i;
2290 int irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002291
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002292 cpsw = devm_kzalloc(&pdev->dev, sizeof(struct cpsw_common), GFP_KERNEL);
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002293 cpsw->dev = &pdev->dev;
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002294
Mugunthan V Ndf828592012-03-18 20:17:54 +00002295 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2296 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302297 dev_err(&pdev->dev, "error allocating net_device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002298 return -ENOMEM;
2299 }
2300
2301 platform_set_drvdata(pdev, ndev);
2302 priv = netdev_priv(ndev);
Ivan Khoronzhuk649a1682016-08-10 02:22:37 +03002303 priv->cpsw = cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002304 priv->ndev = ndev;
2305 priv->dev = &ndev->dev;
2306 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2307 priv->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V N9232b162013-02-11 09:52:19 +00002308 priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL);
Sebastian Siewiorab8e99d2013-06-17 19:31:52 +02002309 if (!priv->cpts) {
George Cherian88c99ff2014-05-12 10:21:19 +05302310 dev_err(&pdev->dev, "error allocating cpts\n");
Markus Pargmann4d507df2014-09-29 08:53:14 +02002311 ret = -ENOMEM;
Mugunthan V N9232b162013-02-11 09:52:19 +00002312 goto clean_ndev_ret;
2313 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002314
Mugunthan V N1d147cc2015-09-07 15:16:44 +05302315 mode = devm_gpiod_get_array_optional(&pdev->dev, "mode", GPIOD_OUT_LOW);
2316 if (IS_ERR(mode)) {
2317 ret = PTR_ERR(mode);
2318 dev_err(&pdev->dev, "gpio request failed, ret %d\n", ret);
2319 goto clean_ndev_ret;
2320 }
2321
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002322 /*
2323 * This may be required here for child devices.
2324 */
2325 pm_runtime_enable(&pdev->dev);
2326
Mugunthan V N739683b2013-06-06 23:45:14 +05302327 /* Select default pin state */
2328 pinctrl_pm_select_default_state(&pdev->dev);
2329
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002330 if (cpsw_probe_dt(&cpsw->data, pdev)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302331 dev_err(&pdev->dev, "cpsw: platform data missing\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002332 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302333 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002334 }
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002335 data = &cpsw->data;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002336
Mugunthan V Ndf828592012-03-18 20:17:54 +00002337 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
2338 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302339 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002340 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00002341 eth_random_addr(priv->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302342 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002343 }
2344
2345 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
2346
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002347 cpsw->slaves = devm_kzalloc(&pdev->dev,
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302348 sizeof(struct cpsw_slave) * data->slaves,
2349 GFP_KERNEL);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002350 if (!cpsw->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302351 ret = -ENOMEM;
2352 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002353 }
2354 for (i = 0; i < data->slaves; i++)
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002355 cpsw->slaves[i].slave_num = i;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002356
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002357 cpsw->slaves[0].ndev = ndev;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002358 priv->emac_port = 0;
2359
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002360 clk = devm_clk_get(&pdev->dev, "fck");
2361 if (IS_ERR(clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302362 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002363 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302364 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002365 }
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002366 priv->coal_intvl = 0;
Ivan Khoronzhukef4183a2016-08-10 02:22:35 +03002367 priv->bus_freq_mhz = clk_get_rate(clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002368
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302369 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2370 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
2371 if (IS_ERR(ss_regs)) {
2372 ret = PTR_ERR(ss_regs);
2373 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002374 }
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002375 cpsw->regs = ss_regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002376
Mugunthan V Nf280e892013-12-11 22:09:05 -06002377 /* Need to enable clocks with runtime PM api to access module
2378 * registers
2379 */
Grygorii Strashko108a6532016-06-24 21:23:42 +03002380 ret = pm_runtime_get_sync(&pdev->dev);
2381 if (ret < 0) {
2382 pm_runtime_put_noidle(&pdev->dev);
2383 goto clean_runtime_disable_ret;
2384 }
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002385 priv->version = readl(&cpsw->regs->id_ver);
Mugunthan V Nf280e892013-12-11 22:09:05 -06002386 pm_runtime_put_sync(&pdev->dev);
2387
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302388 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002389 cpsw->wr_regs = devm_ioremap_resource(&pdev->dev, res);
2390 if (IS_ERR(cpsw->wr_regs)) {
2391 ret = PTR_ERR(cpsw->wr_regs);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302392 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002393 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002394
2395 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00002396 memset(&ale_params, 0, sizeof(ale_params));
2397
2398 switch (priv->version) {
2399 case CPSW_VERSION_1:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002400 cpsw->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302401 priv->cpts->reg = ss_regs + CPSW1_CPTS_OFFSET;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002402 cpsw->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002403 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
2404 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
2405 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
2406 slave_offset = CPSW1_SLAVE_OFFSET;
2407 slave_size = CPSW1_SLAVE_SIZE;
2408 sliver_offset = CPSW1_SLIVER_OFFSET;
2409 dma_params.desc_mem_phys = 0;
2410 break;
2411 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05302412 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05302413 case CPSW_VERSION_4:
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002414 cpsw->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302415 priv->cpts->reg = ss_regs + CPSW2_CPTS_OFFSET;
Ivan Khoronzhuk5d8d0d42016-08-10 02:22:39 +03002416 cpsw->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002417 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
2418 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
2419 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
2420 slave_offset = CPSW2_SLAVE_OFFSET;
2421 slave_size = CPSW2_SLAVE_SIZE;
2422 sliver_offset = CPSW2_SLIVER_OFFSET;
2423 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302424 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00002425 break;
2426 default:
2427 dev_err(priv->dev, "unknown version 0x%08x\n", priv->version);
2428 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302429 goto clean_runtime_disable_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00002430 }
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002431 for (i = 0; i < cpsw->data.slaves; i++) {
2432 struct cpsw_slave *slave = &cpsw->slaves[i];
2433
2434 cpsw_slave_init(slave, cpsw, slave_offset, sliver_offset);
Richard Cochran549985e2012-11-14 09:07:56 +00002435 slave_offset += slave_size;
2436 sliver_offset += SLIVER_SIZE;
2437 }
2438
Mugunthan V Ndf828592012-03-18 20:17:54 +00002439 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00002440 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
2441 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
2442 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
2443 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
2444 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002445
2446 dma_params.num_chan = data->channels;
2447 dma_params.has_soft_reset = true;
2448 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
2449 dma_params.desc_mem_size = data->bd_ram_size;
2450 dma_params.desc_align = 16;
2451 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00002452 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002453
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03002454 cpsw->dma = cpdma_ctlr_create(&dma_params);
2455 if (!cpsw->dma) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00002456 dev_err(priv->dev, "error initializing dma\n");
2457 ret = -ENOMEM;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302458 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002459 }
2460
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03002461 cpsw->txch = cpdma_chan_create(cpsw->dma, tx_chan_num(0),
Mugunthan V Ndf828592012-03-18 20:17:54 +00002462 cpsw_tx_handler);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03002463 cpsw->rxch = cpdma_chan_create(cpsw->dma, rx_chan_num(0),
Mugunthan V Ndf828592012-03-18 20:17:54 +00002464 cpsw_rx_handler);
2465
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03002466 if (WARN_ON(!cpsw->txch || !cpsw->rxch)) {
Mugunthan V Ndf828592012-03-18 20:17:54 +00002467 dev_err(priv->dev, "error initializing dma channels\n");
2468 ret = -ENOMEM;
2469 goto clean_dma_ret;
2470 }
2471
Mugunthan V Ndf828592012-03-18 20:17:54 +00002472 ale_params.dev = &ndev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002473 ale_params.ale_ageout = ale_ageout;
2474 ale_params.ale_entries = data->ale_entries;
2475 ale_params.ale_ports = data->slaves;
2476
2477 priv->ale = cpsw_ale_create(&ale_params);
2478 if (!priv->ale) {
2479 dev_err(priv->dev, "error initializing ale engine\n");
2480 ret = -ENODEV;
2481 goto clean_dma_ret;
2482 }
2483
Felipe Balbic03abd82015-01-16 10:11:12 -06002484 ndev->irq = platform_get_irq(pdev, 1);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002485 if (ndev->irq < 0) {
2486 dev_err(priv->dev, "error getting irq resource\n");
Julia Lawallc1e33342015-12-26 20:12:13 +01002487 ret = ndev->irq;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002488 goto clean_ale_ret;
2489 }
2490
Mugunthan V N7da11602015-08-12 15:22:53 +05302491 of_id = of_match_device(cpsw_of_mtable, &pdev->dev);
2492 if (of_id) {
2493 pdev->id_entry = of_id->data;
2494 if (pdev->id_entry->driver_data)
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03002495 cpsw->quirk_irq = true;
Mugunthan V N7da11602015-08-12 15:22:53 +05302496 }
2497
Felipe Balbic03abd82015-01-16 10:11:12 -06002498 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and
2499 * MISC IRQs which are always kept disabled with this driver so
2500 * we will not request them.
2501 *
2502 * If anyone wants to implement support for those, make sure to
2503 * first request and append them to irqs_table array.
2504 */
Daniel Mackc2b32e52014-09-04 09:00:23 +02002505
Felipe Balbic03abd82015-01-16 10:11:12 -06002506 /* RX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06002507 irq = platform_get_irq(pdev, 1);
Julia Lawallc1e33342015-12-26 20:12:13 +01002508 if (irq < 0) {
2509 ret = irq;
Felipe Balbi5087b912015-01-16 10:11:11 -06002510 goto clean_ale_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01002511 }
Felipe Balbi5087b912015-01-16 10:11:11 -06002512
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03002513 cpsw->irqs_table[0] = irq;
Felipe Balbic03abd82015-01-16 10:11:12 -06002514 ret = devm_request_irq(&pdev->dev, irq, cpsw_rx_interrupt,
Felipe Balbi5087b912015-01-16 10:11:11 -06002515 0, dev_name(&pdev->dev), priv);
2516 if (ret < 0) {
2517 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2518 goto clean_ale_ret;
2519 }
2520
Felipe Balbic03abd82015-01-16 10:11:12 -06002521 /* TX IRQ */
Felipe Balbi5087b912015-01-16 10:11:11 -06002522 irq = platform_get_irq(pdev, 2);
Julia Lawallc1e33342015-12-26 20:12:13 +01002523 if (irq < 0) {
2524 ret = irq;
Felipe Balbi5087b912015-01-16 10:11:11 -06002525 goto clean_ale_ret;
Julia Lawallc1e33342015-12-26 20:12:13 +01002526 }
Felipe Balbi5087b912015-01-16 10:11:11 -06002527
Ivan Khoronzhuke38b5a32016-08-10 02:22:41 +03002528 cpsw->irqs_table[1] = irq;
Felipe Balbic03abd82015-01-16 10:11:12 -06002529 ret = devm_request_irq(&pdev->dev, irq, cpsw_tx_interrupt,
Felipe Balbi5087b912015-01-16 10:11:11 -06002530 0, dev_name(&pdev->dev), priv);
2531 if (ret < 0) {
2532 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2533 goto clean_ale_ret;
2534 }
Daniel Mackc2b32e52014-09-04 09:00:23 +02002535
Patrick McHardyf6469682013-04-19 02:04:27 +00002536 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002537
2538 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002539 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V N32a74322015-08-04 16:06:20 +05302540 netif_napi_add(ndev, &priv->napi_rx, cpsw_rx_poll, CPSW_POLL_WEIGHT);
Eric Dumazetd64b5e82015-11-18 06:31:00 -08002541 netif_tx_napi_add(ndev, &priv->napi_tx, cpsw_tx_poll, CPSW_POLL_WEIGHT);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002542
2543 /* register the network device */
2544 SET_NETDEV_DEV(ndev, &pdev->dev);
2545 ret = register_netdev(ndev);
2546 if (ret) {
2547 dev_err(priv->dev, "error registering net device\n");
2548 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302549 goto clean_ale_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002550 }
2551
Olof Johansson1a3b5052013-12-11 15:58:07 -08002552 cpsw_notice(priv, probe, "initialized device (regs %pa, irq %d)\n",
2553 &ss_res->start, ndev->irq);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002554
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002555 if (cpsw->data.dual_emac) {
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002556 ret = cpsw_probe_dual_emac(priv);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002557 if (ret) {
2558 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302559 goto clean_ale_ret;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002560 }
2561 }
2562
Mugunthan V Ndf828592012-03-18 20:17:54 +00002563 return 0;
2564
Mugunthan V Ndf828592012-03-18 20:17:54 +00002565clean_ale_ret:
2566 cpsw_ale_destroy(priv->ale);
2567clean_dma_ret:
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03002568 cpdma_ctlr_destroy(cpsw->dma);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302569clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002570 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002571clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002572 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002573 return ret;
2574}
2575
Bill Pemberton663e12e2012-12-03 09:23:45 -05002576static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002577{
2578 struct net_device *ndev = platform_get_drvdata(pdev);
2579 struct cpsw_priv *priv = netdev_priv(ndev);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03002580 struct cpsw_common *cpsw = priv->cpsw;
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03002581 int ret;
2582
2583 ret = pm_runtime_get_sync(&pdev->dev);
2584 if (ret < 0) {
2585 pm_runtime_put_noidle(&pdev->dev);
2586 return ret;
2587 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002588
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002589 if (cpsw->data.dual_emac)
2590 unregister_netdev(cpsw->slaves[1].ndev);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002591 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002592
Mugunthan V Ndf828592012-03-18 20:17:54 +00002593 cpsw_ale_destroy(priv->ale);
Ivan Khoronzhuk2c836bd2016-08-10 02:22:40 +03002594 cpdma_ctlr_destroy(cpsw->dma);
Grygorii Strashko3bf2cb32016-07-28 20:50:36 +03002595 of_platform_depopulate(&pdev->dev);
Grygorii Strashko8a0b6dc2016-07-28 20:50:35 +03002596 pm_runtime_put_sync(&pdev->dev);
2597 pm_runtime_disable(&pdev->dev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002598 if (cpsw->data.dual_emac)
2599 free_netdev(cpsw->slaves[1].ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002600 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002601 return 0;
2602}
2603
Grygorii Strashko8963a502015-02-27 13:19:45 +02002604#ifdef CONFIG_PM_SLEEP
Mugunthan V Ndf828592012-03-18 20:17:54 +00002605static int cpsw_suspend(struct device *dev)
2606{
2607 struct platform_device *pdev = to_platform_device(dev);
2608 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002609 struct cpsw_common *cpsw = ndev_to_cpsw(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002610
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002611 if (cpsw->data.dual_emac) {
Mugunthan V N618073e2014-09-11 22:52:38 +05302612 int i;
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002613
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002614 for (i = 0; i < cpsw->data.slaves; i++) {
2615 if (netif_running(cpsw->slaves[i].ndev))
2616 cpsw_ndo_stop(cpsw->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302617 }
2618 } else {
2619 if (netif_running(ndev))
2620 cpsw_ndo_stop(ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302621 }
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002622
Mugunthan V N739683b2013-06-06 23:45:14 +05302623 /* Select sleep pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002624 pinctrl_pm_select_sleep_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05302625
Mugunthan V Ndf828592012-03-18 20:17:54 +00002626 return 0;
2627}
2628
2629static int cpsw_resume(struct device *dev)
2630{
2631 struct platform_device *pdev = to_platform_device(dev);
2632 struct net_device *ndev = platform_get_drvdata(pdev);
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002633 struct cpsw_common *cpsw = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002634
Mugunthan V N739683b2013-06-06 23:45:14 +05302635 /* Select default pin state */
Ivan Khoronzhuk56e31bd2016-08-10 02:22:38 +03002636 pinctrl_pm_select_default_state(dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05302637
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002638 if (cpsw->data.dual_emac) {
Mugunthan V N618073e2014-09-11 22:52:38 +05302639 int i;
2640
Ivan Khoronzhuk606f3992016-08-10 02:22:42 +03002641 for (i = 0; i < cpsw->data.slaves; i++) {
2642 if (netif_running(cpsw->slaves[i].ndev))
2643 cpsw_ndo_open(cpsw->slaves[i].ndev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302644 }
2645 } else {
2646 if (netif_running(ndev))
2647 cpsw_ndo_open(ndev);
2648 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002649 return 0;
2650}
Grygorii Strashko8963a502015-02-27 13:19:45 +02002651#endif
Mugunthan V Ndf828592012-03-18 20:17:54 +00002652
Grygorii Strashko8963a502015-02-27 13:19:45 +02002653static SIMPLE_DEV_PM_OPS(cpsw_pm_ops, cpsw_suspend, cpsw_resume);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002654
2655static struct platform_driver cpsw_driver = {
2656 .driver = {
2657 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00002658 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05302659 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002660 },
2661 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05002662 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002663};
2664
Grygorii Strashko6fb3b6b52015-10-23 14:41:12 +03002665module_platform_driver(cpsw_driver);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002666
2667MODULE_LICENSE("GPL");
2668MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
2669MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
2670MODULE_DESCRIPTION("TI CPSW Ethernet driver");