blob: e61ee8351272bceda3c98a8fb21fcb216c6f56bb [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 N2eb32b02012-07-30 10:17:14 +000032#include <linux/of.h>
33#include <linux/of_net.h>
34#include <linux/of_device.h>
Mugunthan V N3b72c2f2013-02-05 08:26:48 +000035#include <linux/if_vlan.h>
Markus Pargmann0ba517b2014-09-29 08:53:17 +020036#include <linux/mfd/syscon.h>
37#include <linux/regmap.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000038
Mugunthan V N739683b2013-06-06 23:45:14 +053039#include <linux/pinctrl/consumer.h>
Mugunthan V Ndf828592012-03-18 20:17:54 +000040
Mugunthan V Ndbe34722013-08-19 17:47:40 +053041#include "cpsw.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000042#include "cpsw_ale.h"
Richard Cochran2e5b38a2012-10-29 08:45:20 +000043#include "cpts.h"
Mugunthan V Ndf828592012-03-18 20:17:54 +000044#include "davinci_cpdma.h"
45
46#define CPSW_DEBUG (NETIF_MSG_HW | NETIF_MSG_WOL | \
47 NETIF_MSG_DRV | NETIF_MSG_LINK | \
48 NETIF_MSG_IFUP | NETIF_MSG_INTR | \
49 NETIF_MSG_PROBE | NETIF_MSG_TIMER | \
50 NETIF_MSG_IFDOWN | NETIF_MSG_RX_ERR | \
51 NETIF_MSG_TX_ERR | NETIF_MSG_TX_DONE | \
52 NETIF_MSG_PKTDATA | NETIF_MSG_TX_QUEUED | \
53 NETIF_MSG_RX_STATUS)
54
55#define cpsw_info(priv, type, format, ...) \
56do { \
57 if (netif_msg_##type(priv) && net_ratelimit()) \
58 dev_info(priv->dev, format, ## __VA_ARGS__); \
59} while (0)
60
61#define cpsw_err(priv, type, format, ...) \
62do { \
63 if (netif_msg_##type(priv) && net_ratelimit()) \
64 dev_err(priv->dev, format, ## __VA_ARGS__); \
65} while (0)
66
67#define cpsw_dbg(priv, type, format, ...) \
68do { \
69 if (netif_msg_##type(priv) && net_ratelimit()) \
70 dev_dbg(priv->dev, format, ## __VA_ARGS__); \
71} while (0)
72
73#define cpsw_notice(priv, type, format, ...) \
74do { \
75 if (netif_msg_##type(priv) && net_ratelimit()) \
76 dev_notice(priv->dev, format, ## __VA_ARGS__); \
77} while (0)
78
Mugunthan V N5c50a852012-10-29 08:45:11 +000079#define ALE_ALL_PORTS 0x7
80
Mugunthan V Ndf828592012-03-18 20:17:54 +000081#define CPSW_MAJOR_VERSION(reg) (reg >> 8 & 0x7)
82#define CPSW_MINOR_VERSION(reg) (reg & 0xff)
83#define CPSW_RTL_VERSION(reg) ((reg >> 11) & 0x1f)
84
Richard Cochrane90cfac2012-10-29 08:45:14 +000085#define CPSW_VERSION_1 0x19010a
86#define CPSW_VERSION_2 0x19010c
Mugunthan V Nc193f362013-08-05 17:30:05 +053087#define CPSW_VERSION_3 0x19010f
Mugunthan V N926489b2013-08-12 17:11:15 +053088#define CPSW_VERSION_4 0x190112
Richard Cochran549985e2012-11-14 09:07:56 +000089
90#define HOST_PORT_NUM 0
91#define SLIVER_SIZE 0x40
92
93#define CPSW1_HOST_PORT_OFFSET 0x028
94#define CPSW1_SLAVE_OFFSET 0x050
95#define CPSW1_SLAVE_SIZE 0x040
96#define CPSW1_CPDMA_OFFSET 0x100
97#define CPSW1_STATERAM_OFFSET 0x200
Mugunthan V Nd9718542013-07-23 15:38:17 +053098#define CPSW1_HW_STATS 0x400
Richard Cochran549985e2012-11-14 09:07:56 +000099#define CPSW1_CPTS_OFFSET 0x500
100#define CPSW1_ALE_OFFSET 0x600
101#define CPSW1_SLIVER_OFFSET 0x700
102
103#define CPSW2_HOST_PORT_OFFSET 0x108
104#define CPSW2_SLAVE_OFFSET 0x200
105#define CPSW2_SLAVE_SIZE 0x100
106#define CPSW2_CPDMA_OFFSET 0x800
Mugunthan V Nd9718542013-07-23 15:38:17 +0530107#define CPSW2_HW_STATS 0x900
Richard Cochran549985e2012-11-14 09:07:56 +0000108#define CPSW2_STATERAM_OFFSET 0xa00
109#define CPSW2_CPTS_OFFSET 0xc00
110#define CPSW2_ALE_OFFSET 0xd00
111#define CPSW2_SLIVER_OFFSET 0xd80
112#define CPSW2_BD_OFFSET 0x2000
113
Mugunthan V Ndf828592012-03-18 20:17:54 +0000114#define CPDMA_RXTHRESH 0x0c0
115#define CPDMA_RXFREE 0x0e0
116#define CPDMA_TXHDP 0x00
117#define CPDMA_RXHDP 0x20
118#define CPDMA_TXCP 0x40
119#define CPDMA_RXCP 0x60
120
Mugunthan V Ndf828592012-03-18 20:17:54 +0000121#define CPSW_POLL_WEIGHT 64
122#define CPSW_MIN_PACKET_SIZE 60
123#define CPSW_MAX_PACKET_SIZE (1500 + 14 + 4 + 4)
124
125#define RX_PRIORITY_MAPPING 0x76543210
126#define TX_PRIORITY_MAPPING 0x33221100
127#define CPDMA_TX_PRIORITY_MAP 0x76543210
128
Mugunthan V N3b72c2f2013-02-05 08:26:48 +0000129#define CPSW_VLAN_AWARE BIT(1)
130#define CPSW_ALE_VLAN_AWARE 1
131
John Ogness35717d82014-11-14 15:42:52 +0100132#define CPSW_FIFO_NORMAL_MODE (0 << 16)
133#define CPSW_FIFO_DUAL_MAC_MODE (1 << 16)
134#define CPSW_FIFO_RATE_LIMIT_MODE (2 << 16)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000135
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000136#define CPSW_INTPACEEN (0x3f << 16)
137#define CPSW_INTPRESCALE_MASK (0x7FF << 0)
138#define CPSW_CMINTMAX_CNT 63
139#define CPSW_CMINTMIN_CNT 2
140#define CPSW_CMINTMAX_INTVL (1000 / CPSW_CMINTMIN_CNT)
141#define CPSW_CMINTMIN_INTVL ((1000 / CPSW_CMINTMAX_CNT) + 1)
142
Mugunthan V Ndf828592012-03-18 20:17:54 +0000143#define cpsw_enable_irq(priv) \
144 do { \
145 u32 i; \
146 for (i = 0; i < priv->num_irqs; i++) \
147 enable_irq(priv->irqs_table[i]); \
Joe Perches5f47dfb2014-05-14 12:15:13 -0700148 } while (0)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000149#define cpsw_disable_irq(priv) \
150 do { \
151 u32 i; \
152 for (i = 0; i < priv->num_irqs; i++) \
153 disable_irq_nosync(priv->irqs_table[i]); \
Joe Perches5f47dfb2014-05-14 12:15:13 -0700154 } while (0)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000155
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +0000156#define cpsw_slave_index(priv) \
157 ((priv->data.dual_emac) ? priv->emac_port : \
158 priv->data.active_slave)
159
Mugunthan V Ndf828592012-03-18 20:17:54 +0000160static int debug_level;
161module_param(debug_level, int, 0);
162MODULE_PARM_DESC(debug_level, "cpsw debug level (NETIF_MSG bits)");
163
164static int ale_ageout = 10;
165module_param(ale_ageout, int, 0);
166MODULE_PARM_DESC(ale_ageout, "cpsw ale ageout interval (seconds)");
167
168static int rx_packet_max = CPSW_MAX_PACKET_SIZE;
169module_param(rx_packet_max, int, 0);
170MODULE_PARM_DESC(rx_packet_max, "maximum receive packet size (bytes)");
171
Richard Cochran996a5c22012-10-29 08:45:12 +0000172struct cpsw_wr_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000173 u32 id_ver;
174 u32 soft_reset;
175 u32 control;
176 u32 int_control;
177 u32 rx_thresh_en;
178 u32 rx_en;
179 u32 tx_en;
180 u32 misc_en;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000181 u32 mem_allign1[8];
182 u32 rx_thresh_stat;
183 u32 rx_stat;
184 u32 tx_stat;
185 u32 misc_stat;
186 u32 mem_allign2[8];
187 u32 rx_imax;
188 u32 tx_imax;
189
Mugunthan V Ndf828592012-03-18 20:17:54 +0000190};
191
Richard Cochran996a5c22012-10-29 08:45:12 +0000192struct cpsw_ss_regs {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000193 u32 id_ver;
194 u32 control;
195 u32 soft_reset;
196 u32 stat_port_en;
197 u32 ptype;
Richard Cochranbd357af2012-10-29 08:45:13 +0000198 u32 soft_idle;
199 u32 thru_rate;
200 u32 gap_thresh;
201 u32 tx_start_wds;
202 u32 flow_control;
203 u32 vlan_ltype;
204 u32 ts_ltype;
205 u32 dlr_ltype;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000206};
207
Richard Cochran9750a3a2012-10-29 08:45:15 +0000208/* CPSW_PORT_V1 */
209#define CPSW1_MAX_BLKS 0x00 /* Maximum FIFO Blocks */
210#define CPSW1_BLK_CNT 0x04 /* FIFO Block Usage Count (Read Only) */
211#define CPSW1_TX_IN_CTL 0x08 /* Transmit FIFO Control */
212#define CPSW1_PORT_VLAN 0x0c /* VLAN Register */
213#define CPSW1_TX_PRI_MAP 0x10 /* Tx Header Priority to Switch Pri Mapping */
214#define CPSW1_TS_CTL 0x14 /* Time Sync Control */
215#define CPSW1_TS_SEQ_LTYPE 0x18 /* Time Sync Sequence ID Offset and Msg Type */
216#define CPSW1_TS_VLAN 0x1c /* Time Sync VLAN1 and VLAN2 */
217
218/* CPSW_PORT_V2 */
219#define CPSW2_CONTROL 0x00 /* Control Register */
220#define CPSW2_MAX_BLKS 0x08 /* Maximum FIFO Blocks */
221#define CPSW2_BLK_CNT 0x0c /* FIFO Block Usage Count (Read Only) */
222#define CPSW2_TX_IN_CTL 0x10 /* Transmit FIFO Control */
223#define CPSW2_PORT_VLAN 0x14 /* VLAN Register */
224#define CPSW2_TX_PRI_MAP 0x18 /* Tx Header Priority to Switch Pri Mapping */
225#define CPSW2_TS_SEQ_MTYPE 0x1c /* Time Sync Sequence ID Offset and Msg Type */
226
227/* CPSW_PORT_V1 and V2 */
228#define SA_LO 0x20 /* CPGMAC_SL Source Address Low */
229#define SA_HI 0x24 /* CPGMAC_SL Source Address High */
230#define SEND_PERCENT 0x28 /* Transmit Queue Send Percentages */
231
232/* CPSW_PORT_V2 only */
233#define RX_DSCP_PRI_MAP0 0x30 /* Rx DSCP Priority to Rx Packet Mapping */
234#define RX_DSCP_PRI_MAP1 0x34 /* Rx DSCP Priority to Rx Packet Mapping */
235#define RX_DSCP_PRI_MAP2 0x38 /* Rx DSCP Priority to Rx Packet Mapping */
236#define RX_DSCP_PRI_MAP3 0x3c /* Rx DSCP Priority to Rx Packet Mapping */
237#define RX_DSCP_PRI_MAP4 0x40 /* Rx DSCP Priority to Rx Packet Mapping */
238#define RX_DSCP_PRI_MAP5 0x44 /* Rx DSCP Priority to Rx Packet Mapping */
239#define RX_DSCP_PRI_MAP6 0x48 /* Rx DSCP Priority to Rx Packet Mapping */
240#define RX_DSCP_PRI_MAP7 0x4c /* Rx DSCP Priority to Rx Packet Mapping */
241
242/* Bit definitions for the CPSW2_CONTROL register */
243#define PASS_PRI_TAGGED (1<<24) /* Pass Priority Tagged */
244#define VLAN_LTYPE2_EN (1<<21) /* VLAN LTYPE 2 enable */
245#define VLAN_LTYPE1_EN (1<<20) /* VLAN LTYPE 1 enable */
246#define DSCP_PRI_EN (1<<16) /* DSCP Priority Enable */
247#define TS_320 (1<<14) /* Time Sync Dest Port 320 enable */
248#define TS_319 (1<<13) /* Time Sync Dest Port 319 enable */
249#define TS_132 (1<<12) /* Time Sync Dest IP Addr 132 enable */
250#define TS_131 (1<<11) /* Time Sync Dest IP Addr 131 enable */
251#define TS_130 (1<<10) /* Time Sync Dest IP Addr 130 enable */
252#define TS_129 (1<<9) /* Time Sync Dest IP Addr 129 enable */
George Cherian09c55372014-05-02 12:02:02 +0530253#define TS_TTL_NONZERO (1<<8) /* Time Sync Time To Live Non-zero enable */
254#define TS_ANNEX_F_EN (1<<6) /* Time Sync Annex F enable */
Richard Cochran9750a3a2012-10-29 08:45:15 +0000255#define TS_ANNEX_D_EN (1<<4) /* Time Sync Annex D enable */
256#define TS_LTYPE2_EN (1<<3) /* Time Sync LTYPE 2 enable */
257#define TS_LTYPE1_EN (1<<2) /* Time Sync LTYPE 1 enable */
258#define TS_TX_EN (1<<1) /* Time Sync Transmit Enable */
259#define TS_RX_EN (1<<0) /* Time Sync Receive Enable */
260
George Cherian09c55372014-05-02 12:02:02 +0530261#define CTRL_V2_TS_BITS \
262 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
263 TS_TTL_NONZERO | TS_ANNEX_D_EN | TS_LTYPE1_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000264
George Cherian09c55372014-05-02 12:02:02 +0530265#define CTRL_V2_ALL_TS_MASK (CTRL_V2_TS_BITS | TS_TX_EN | TS_RX_EN)
266#define CTRL_V2_TX_TS_BITS (CTRL_V2_TS_BITS | TS_TX_EN)
267#define CTRL_V2_RX_TS_BITS (CTRL_V2_TS_BITS | TS_RX_EN)
268
269
270#define CTRL_V3_TS_BITS \
271 (TS_320 | TS_319 | TS_132 | TS_131 | TS_130 | TS_129 |\
272 TS_TTL_NONZERO | TS_ANNEX_F_EN | TS_ANNEX_D_EN |\
273 TS_LTYPE1_EN)
274
275#define CTRL_V3_ALL_TS_MASK (CTRL_V3_TS_BITS | TS_TX_EN | TS_RX_EN)
276#define CTRL_V3_TX_TS_BITS (CTRL_V3_TS_BITS | TS_TX_EN)
277#define CTRL_V3_RX_TS_BITS (CTRL_V3_TS_BITS | TS_RX_EN)
Richard Cochran9750a3a2012-10-29 08:45:15 +0000278
279/* Bit definitions for the CPSW2_TS_SEQ_MTYPE register */
280#define TS_SEQ_ID_OFFSET_SHIFT (16) /* Time Sync Sequence ID Offset */
281#define TS_SEQ_ID_OFFSET_MASK (0x3f)
282#define TS_MSG_TYPE_EN_SHIFT (0) /* Time Sync Message Type Enable */
283#define TS_MSG_TYPE_EN_MASK (0xffff)
284
285/* The PTP event messages - Sync, Delay_Req, Pdelay_Req, and Pdelay_Resp. */
286#define EVENT_MSG_BITS ((1<<0) | (1<<1) | (1<<2) | (1<<3))
Mugunthan V Ndf828592012-03-18 20:17:54 +0000287
Richard Cochran2e5b38a2012-10-29 08:45:20 +0000288/* Bit definitions for the CPSW1_TS_CTL register */
289#define CPSW_V1_TS_RX_EN BIT(0)
290#define CPSW_V1_TS_TX_EN BIT(4)
291#define CPSW_V1_MSG_TYPE_OFS 16
292
293/* Bit definitions for the CPSW1_TS_SEQ_LTYPE register */
294#define CPSW_V1_SEQ_ID_OFS_SHIFT 16
295
Mugunthan V Ndf828592012-03-18 20:17:54 +0000296struct cpsw_host_regs {
297 u32 max_blks;
298 u32 blk_cnt;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000299 u32 tx_in_ctl;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000300 u32 port_vlan;
301 u32 tx_pri_map;
302 u32 cpdma_tx_pri_map;
303 u32 cpdma_rx_chan_map;
304};
305
306struct cpsw_sliver_regs {
307 u32 id_ver;
308 u32 mac_control;
309 u32 mac_status;
310 u32 soft_reset;
311 u32 rx_maxlen;
312 u32 __reserved_0;
313 u32 rx_pause;
314 u32 tx_pause;
315 u32 __reserved_1;
316 u32 rx_pri_map;
317};
318
Mugunthan V Nd9718542013-07-23 15:38:17 +0530319struct cpsw_hw_stats {
320 u32 rxgoodframes;
321 u32 rxbroadcastframes;
322 u32 rxmulticastframes;
323 u32 rxpauseframes;
324 u32 rxcrcerrors;
325 u32 rxaligncodeerrors;
326 u32 rxoversizedframes;
327 u32 rxjabberframes;
328 u32 rxundersizedframes;
329 u32 rxfragments;
330 u32 __pad_0[2];
331 u32 rxoctets;
332 u32 txgoodframes;
333 u32 txbroadcastframes;
334 u32 txmulticastframes;
335 u32 txpauseframes;
336 u32 txdeferredframes;
337 u32 txcollisionframes;
338 u32 txsinglecollframes;
339 u32 txmultcollframes;
340 u32 txexcessivecollisions;
341 u32 txlatecollisions;
342 u32 txunderrun;
343 u32 txcarriersenseerrors;
344 u32 txoctets;
345 u32 octetframes64;
346 u32 octetframes65t127;
347 u32 octetframes128t255;
348 u32 octetframes256t511;
349 u32 octetframes512t1023;
350 u32 octetframes1024tup;
351 u32 netoctets;
352 u32 rxsofoverruns;
353 u32 rxmofoverruns;
354 u32 rxdmaoverruns;
355};
356
Mugunthan V Ndf828592012-03-18 20:17:54 +0000357struct cpsw_slave {
Richard Cochran9750a3a2012-10-29 08:45:15 +0000358 void __iomem *regs;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000359 struct cpsw_sliver_regs __iomem *sliver;
360 int slave_num;
361 u32 mac_control;
362 struct cpsw_slave_data *data;
363 struct phy_device *phy;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000364 struct net_device *ndev;
365 u32 port_vlan;
366 u32 open_stat;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000367};
368
Richard Cochran9750a3a2012-10-29 08:45:15 +0000369static inline u32 slave_read(struct cpsw_slave *slave, u32 offset)
370{
371 return __raw_readl(slave->regs + offset);
372}
373
374static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
375{
376 __raw_writel(val, slave->regs + offset);
377}
378
Mugunthan V Ndf828592012-03-18 20:17:54 +0000379struct cpsw_priv {
380 spinlock_t lock;
381 struct platform_device *pdev;
382 struct net_device *ndev;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000383 struct napi_struct napi;
384 struct device *dev;
385 struct cpsw_platform_data data;
Richard Cochran996a5c22012-10-29 08:45:12 +0000386 struct cpsw_ss_regs __iomem *regs;
387 struct cpsw_wr_regs __iomem *wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +0530388 u8 __iomem *hw_stats;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000389 struct cpsw_host_regs __iomem *host_port_regs;
390 u32 msg_enable;
Richard Cochrane90cfac2012-10-29 08:45:14 +0000391 u32 version;
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000392 u32 coal_intvl;
393 u32 bus_freq_mhz;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000394 int rx_packet_max;
395 int host_port;
396 struct clk *clk;
397 u8 mac_addr[ETH_ALEN];
398 struct cpsw_slave *slaves;
399 struct cpdma_ctlr *dma;
400 struct cpdma_chan *txch, *rxch;
401 struct cpsw_ale *ale;
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530402 bool rx_pause;
403 bool tx_pause;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000404 /* snapshot of IRQ numbers */
405 u32 irqs_table[4];
406 u32 num_irqs;
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000407 bool irq_enabled;
Mugunthan V N9232b162013-02-11 09:52:19 +0000408 struct cpts *cpts;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000409 u32 emac_port;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000410};
411
Mugunthan V Nd9718542013-07-23 15:38:17 +0530412struct cpsw_stats {
413 char stat_string[ETH_GSTRING_LEN];
414 int type;
415 int sizeof_stat;
416 int stat_offset;
417};
418
419enum {
420 CPSW_STATS,
421 CPDMA_RX_STATS,
422 CPDMA_TX_STATS,
423};
424
425#define CPSW_STAT(m) CPSW_STATS, \
426 sizeof(((struct cpsw_hw_stats *)0)->m), \
427 offsetof(struct cpsw_hw_stats, m)
428#define CPDMA_RX_STAT(m) CPDMA_RX_STATS, \
429 sizeof(((struct cpdma_chan_stats *)0)->m), \
430 offsetof(struct cpdma_chan_stats, m)
431#define CPDMA_TX_STAT(m) CPDMA_TX_STATS, \
432 sizeof(((struct cpdma_chan_stats *)0)->m), \
433 offsetof(struct cpdma_chan_stats, m)
434
435static const struct cpsw_stats cpsw_gstrings_stats[] = {
436 { "Good Rx Frames", CPSW_STAT(rxgoodframes) },
437 { "Broadcast Rx Frames", CPSW_STAT(rxbroadcastframes) },
438 { "Multicast Rx Frames", CPSW_STAT(rxmulticastframes) },
439 { "Pause Rx Frames", CPSW_STAT(rxpauseframes) },
440 { "Rx CRC Errors", CPSW_STAT(rxcrcerrors) },
441 { "Rx Align/Code Errors", CPSW_STAT(rxaligncodeerrors) },
442 { "Oversize Rx Frames", CPSW_STAT(rxoversizedframes) },
443 { "Rx Jabbers", CPSW_STAT(rxjabberframes) },
444 { "Undersize (Short) Rx Frames", CPSW_STAT(rxundersizedframes) },
445 { "Rx Fragments", CPSW_STAT(rxfragments) },
446 { "Rx Octets", CPSW_STAT(rxoctets) },
447 { "Good Tx Frames", CPSW_STAT(txgoodframes) },
448 { "Broadcast Tx Frames", CPSW_STAT(txbroadcastframes) },
449 { "Multicast Tx Frames", CPSW_STAT(txmulticastframes) },
450 { "Pause Tx Frames", CPSW_STAT(txpauseframes) },
451 { "Deferred Tx Frames", CPSW_STAT(txdeferredframes) },
452 { "Collisions", CPSW_STAT(txcollisionframes) },
453 { "Single Collision Tx Frames", CPSW_STAT(txsinglecollframes) },
454 { "Multiple Collision Tx Frames", CPSW_STAT(txmultcollframes) },
455 { "Excessive Collisions", CPSW_STAT(txexcessivecollisions) },
456 { "Late Collisions", CPSW_STAT(txlatecollisions) },
457 { "Tx Underrun", CPSW_STAT(txunderrun) },
458 { "Carrier Sense Errors", CPSW_STAT(txcarriersenseerrors) },
459 { "Tx Octets", CPSW_STAT(txoctets) },
460 { "Rx + Tx 64 Octet Frames", CPSW_STAT(octetframes64) },
461 { "Rx + Tx 65-127 Octet Frames", CPSW_STAT(octetframes65t127) },
462 { "Rx + Tx 128-255 Octet Frames", CPSW_STAT(octetframes128t255) },
463 { "Rx + Tx 256-511 Octet Frames", CPSW_STAT(octetframes256t511) },
464 { "Rx + Tx 512-1023 Octet Frames", CPSW_STAT(octetframes512t1023) },
465 { "Rx + Tx 1024-Up Octet Frames", CPSW_STAT(octetframes1024tup) },
466 { "Net Octets", CPSW_STAT(netoctets) },
467 { "Rx Start of Frame Overruns", CPSW_STAT(rxsofoverruns) },
468 { "Rx Middle of Frame Overruns", CPSW_STAT(rxmofoverruns) },
469 { "Rx DMA Overruns", CPSW_STAT(rxdmaoverruns) },
470 { "Rx DMA chan: head_enqueue", CPDMA_RX_STAT(head_enqueue) },
471 { "Rx DMA chan: tail_enqueue", CPDMA_RX_STAT(tail_enqueue) },
472 { "Rx DMA chan: pad_enqueue", CPDMA_RX_STAT(pad_enqueue) },
473 { "Rx DMA chan: misqueued", CPDMA_RX_STAT(misqueued) },
474 { "Rx DMA chan: desc_alloc_fail", CPDMA_RX_STAT(desc_alloc_fail) },
475 { "Rx DMA chan: pad_alloc_fail", CPDMA_RX_STAT(pad_alloc_fail) },
476 { "Rx DMA chan: runt_receive_buf", CPDMA_RX_STAT(runt_receive_buff) },
477 { "Rx DMA chan: runt_transmit_buf", CPDMA_RX_STAT(runt_transmit_buff) },
478 { "Rx DMA chan: empty_dequeue", CPDMA_RX_STAT(empty_dequeue) },
479 { "Rx DMA chan: busy_dequeue", CPDMA_RX_STAT(busy_dequeue) },
480 { "Rx DMA chan: good_dequeue", CPDMA_RX_STAT(good_dequeue) },
481 { "Rx DMA chan: requeue", CPDMA_RX_STAT(requeue) },
482 { "Rx DMA chan: teardown_dequeue", CPDMA_RX_STAT(teardown_dequeue) },
483 { "Tx DMA chan: head_enqueue", CPDMA_TX_STAT(head_enqueue) },
484 { "Tx DMA chan: tail_enqueue", CPDMA_TX_STAT(tail_enqueue) },
485 { "Tx DMA chan: pad_enqueue", CPDMA_TX_STAT(pad_enqueue) },
486 { "Tx DMA chan: misqueued", CPDMA_TX_STAT(misqueued) },
487 { "Tx DMA chan: desc_alloc_fail", CPDMA_TX_STAT(desc_alloc_fail) },
488 { "Tx DMA chan: pad_alloc_fail", CPDMA_TX_STAT(pad_alloc_fail) },
489 { "Tx DMA chan: runt_receive_buf", CPDMA_TX_STAT(runt_receive_buff) },
490 { "Tx DMA chan: runt_transmit_buf", CPDMA_TX_STAT(runt_transmit_buff) },
491 { "Tx DMA chan: empty_dequeue", CPDMA_TX_STAT(empty_dequeue) },
492 { "Tx DMA chan: busy_dequeue", CPDMA_TX_STAT(busy_dequeue) },
493 { "Tx DMA chan: good_dequeue", CPDMA_TX_STAT(good_dequeue) },
494 { "Tx DMA chan: requeue", CPDMA_TX_STAT(requeue) },
495 { "Tx DMA chan: teardown_dequeue", CPDMA_TX_STAT(teardown_dequeue) },
496};
497
498#define CPSW_STATS_LEN ARRAY_SIZE(cpsw_gstrings_stats)
499
Mugunthan V Ndf828592012-03-18 20:17:54 +0000500#define napi_to_priv(napi) container_of(napi, struct cpsw_priv, napi)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000501#define for_each_slave(priv, func, arg...) \
502 do { \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000503 struct cpsw_slave *slave; \
504 int n; \
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000505 if (priv->data.dual_emac) \
506 (func)((priv)->slaves + priv->emac_port, ##arg);\
507 else \
Sebastian Siewior6e6ceae2013-04-24 08:48:24 +0000508 for (n = (priv)->data.slaves, \
509 slave = (priv)->slaves; \
510 n; n--) \
511 (func)(slave++, ##arg); \
Mugunthan V Ndf828592012-03-18 20:17:54 +0000512 } while (0)
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000513#define cpsw_get_slave_ndev(priv, __slave_no__) \
514 (priv->slaves[__slave_no__].ndev)
515#define cpsw_get_slave_priv(priv, __slave_no__) \
516 ((priv->slaves[__slave_no__].ndev) ? \
517 netdev_priv(priv->slaves[__slave_no__].ndev) : NULL) \
518
519#define cpsw_dual_emac_src_port_detect(status, priv, ndev, skb) \
520 do { \
521 if (!priv->data.dual_emac) \
522 break; \
523 if (CPDMA_RX_SOURCE_PORT(status) == 1) { \
524 ndev = cpsw_get_slave_ndev(priv, 0); \
525 priv = netdev_priv(ndev); \
526 skb->dev = ndev; \
527 } else if (CPDMA_RX_SOURCE_PORT(status) == 2) { \
528 ndev = cpsw_get_slave_ndev(priv, 1); \
529 priv = netdev_priv(ndev); \
530 skb->dev = ndev; \
531 } \
532 } while (0)
533#define cpsw_add_mcast(priv, addr) \
534 do { \
535 if (priv->data.dual_emac) { \
536 struct cpsw_slave *slave = priv->slaves + \
537 priv->emac_port; \
538 int slave_port = cpsw_get_slave_port(priv, \
539 slave->slave_num); \
540 cpsw_ale_add_mcast(priv->ale, addr, \
541 1 << slave_port | 1 << priv->host_port, \
542 ALE_VLAN, slave->port_vlan, 0); \
543 } else { \
544 cpsw_ale_add_mcast(priv->ale, addr, \
545 ALE_ALL_PORTS << priv->host_port, \
546 0, 0, 0); \
547 } \
548 } while (0)
549
550static inline int cpsw_get_slave_port(struct cpsw_priv *priv, u32 slave_num)
551{
552 if (priv->host_port == 0)
553 return slave_num + 1;
554 else
555 return slave_num;
556}
Mugunthan V Ndf828592012-03-18 20:17:54 +0000557
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530558static void cpsw_set_promiscious(struct net_device *ndev, bool enable)
559{
560 struct cpsw_priv *priv = netdev_priv(ndev);
561 struct cpsw_ale *ale = priv->ale;
562 int i;
563
564 if (priv->data.dual_emac) {
565 bool flag = false;
566
567 /* Enabling promiscuous mode for one interface will be
568 * common for both the interface as the interface shares
569 * the same hardware resource.
570 */
Heiko Schocher0d961b32014-02-13 14:47:27 +0100571 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530572 if (priv->slaves[i].ndev->flags & IFF_PROMISC)
573 flag = true;
574
575 if (!enable && flag) {
576 enable = true;
577 dev_err(&ndev->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n");
578 }
579
580 if (enable) {
581 /* Enable Bypass */
582 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 1);
583
584 dev_dbg(&ndev->dev, "promiscuity enabled\n");
585 } else {
586 /* Disable Bypass */
587 cpsw_ale_control_set(ale, 0, ALE_BYPASS, 0);
588 dev_dbg(&ndev->dev, "promiscuity disabled\n");
589 }
590 } else {
591 if (enable) {
592 unsigned long timeout = jiffies + HZ;
593
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400594 /* Disable Learn for all ports (host is port 0 and slaves are port 1 and up */
595 for (i = 0; i <= priv->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530596 cpsw_ale_control_set(ale, i,
597 ALE_PORT_NOLEARN, 1);
598 cpsw_ale_control_set(ale, i,
599 ALE_PORT_NO_SA_UPDATE, 1);
600 }
601
602 /* Clear All Untouched entries */
603 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
604 do {
605 cpu_relax();
606 if (cpsw_ale_control_get(ale, 0, ALE_AGEOUT))
607 break;
608 } while (time_after(timeout, jiffies));
609 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
610
611 /* Clear all mcast from ALE */
612 cpsw_ale_flush_multicast(ale, ALE_ALL_PORTS <<
613 priv->host_port);
614
615 /* Flood All Unicast Packets to Host port */
616 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 1);
617 dev_dbg(&ndev->dev, "promiscuity enabled\n");
618 } else {
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400619 /* Don't Flood All Unicast Packets to Host port */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530620 cpsw_ale_control_set(ale, 0, ALE_P0_UNI_FLOOD, 0);
621
Lennart Sorensen6f979eb2014-10-31 13:28:54 -0400622 /* Enable Learn for all ports (host is port 0 and slaves are port 1 and up */
623 for (i = 0; i <= priv->data.slaves; i++) {
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530624 cpsw_ale_control_set(ale, i,
625 ALE_PORT_NOLEARN, 0);
626 cpsw_ale_control_set(ale, i,
627 ALE_PORT_NO_SA_UPDATE, 0);
628 }
629 dev_dbg(&ndev->dev, "promiscuity disabled\n");
630 }
631 }
632}
633
Mugunthan V N5c50a852012-10-29 08:45:11 +0000634static void cpsw_ndo_set_rx_mode(struct net_device *ndev)
635{
636 struct cpsw_priv *priv = netdev_priv(ndev);
637
638 if (ndev->flags & IFF_PROMISC) {
639 /* Enable promiscuous mode */
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530640 cpsw_set_promiscious(ndev, true);
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400641 cpsw_ale_set_allmulti(priv->ale, IFF_ALLMULTI);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000642 return;
Mugunthan V N0cd8f9c2014-01-23 00:03:12 +0530643 } else {
644 /* Disable promiscuous mode */
645 cpsw_set_promiscious(ndev, false);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000646 }
647
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -0400648 /* Restore allmulti on vlans if necessary */
649 cpsw_ale_set_allmulti(priv->ale, priv->ndev->flags & IFF_ALLMULTI);
650
Mugunthan V N5c50a852012-10-29 08:45:11 +0000651 /* Clear all mcast from ALE */
652 cpsw_ale_flush_multicast(priv->ale, ALE_ALL_PORTS << priv->host_port);
653
654 if (!netdev_mc_empty(ndev)) {
655 struct netdev_hw_addr *ha;
656
657 /* program multicast address list into ALE register */
658 netdev_for_each_mc_addr(ha, ndev) {
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000659 cpsw_add_mcast(priv, (u8 *)ha->addr);
Mugunthan V N5c50a852012-10-29 08:45:11 +0000660 }
661 }
662}
663
Mugunthan V Ndf828592012-03-18 20:17:54 +0000664static void cpsw_intr_enable(struct cpsw_priv *priv)
665{
Richard Cochran996a5c22012-10-29 08:45:12 +0000666 __raw_writel(0xFF, &priv->wr_regs->tx_en);
667 __raw_writel(0xFF, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000668
669 cpdma_ctlr_int_ctrl(priv->dma, true);
670 return;
671}
672
673static void cpsw_intr_disable(struct cpsw_priv *priv)
674{
Richard Cochran996a5c22012-10-29 08:45:12 +0000675 __raw_writel(0, &priv->wr_regs->tx_en);
676 __raw_writel(0, &priv->wr_regs->rx_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000677
678 cpdma_ctlr_int_ctrl(priv->dma, false);
679 return;
680}
681
Olof Johansson1a3b5052013-12-11 15:58:07 -0800682static void cpsw_tx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000683{
684 struct sk_buff *skb = token;
685 struct net_device *ndev = skb->dev;
686 struct cpsw_priv *priv = netdev_priv(ndev);
687
Mugunthan V Nfae50822013-01-17 06:31:34 +0000688 /* Check whether the queue is stopped due to stalled tx dma, if the
689 * queue is stopped then start the queue as we have free desc for tx
690 */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000691 if (unlikely(netif_queue_stopped(ndev)))
Mugunthan V Nb56d6b3f2013-03-27 04:41:59 +0000692 netif_wake_queue(ndev);
Mugunthan V N9232b162013-02-11 09:52:19 +0000693 cpts_tx_timestamp(priv->cpts, skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100694 ndev->stats.tx_packets++;
695 ndev->stats.tx_bytes += len;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000696 dev_kfree_skb_any(skb);
697}
698
Olof Johansson1a3b5052013-12-11 15:58:07 -0800699static void cpsw_rx_handler(void *token, int len, int status)
Mugunthan V Ndf828592012-03-18 20:17:54 +0000700{
701 struct sk_buff *skb = token;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000702 struct sk_buff *new_skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000703 struct net_device *ndev = skb->dev;
704 struct cpsw_priv *priv = netdev_priv(ndev);
705 int ret = 0;
706
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +0000707 cpsw_dual_emac_src_port_detect(status, priv, ndev, skb);
708
Mugunthan V N16e5c572014-04-10 14:23:23 +0530709 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) {
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530710 bool ndev_status = false;
711 struct cpsw_slave *slave = priv->slaves;
712 int n;
713
714 if (priv->data.dual_emac) {
715 /* In dual emac mode check for all interfaces */
716 for (n = priv->data.slaves; n; n--, slave++)
717 if (netif_running(slave->ndev))
718 ndev_status = true;
719 }
720
721 if (ndev_status && (status >= 0)) {
722 /* The packet received is for the interface which
723 * is already down and the other interface is up
724 * and running, intead of freeing which results
725 * in reducing of the number of rx descriptor in
726 * DMA engine, requeue skb back to cpdma.
727 */
728 new_skb = skb;
729 goto requeue;
730 }
731
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000732 /* the interface is going down, skbs are purged */
Mugunthan V Ndf828592012-03-18 20:17:54 +0000733 dev_kfree_skb_any(skb);
734 return;
735 }
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000736
737 new_skb = netdev_alloc_skb_ip_align(ndev, priv->rx_packet_max);
738 if (new_skb) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000739 skb_put(skb, len);
Mugunthan V N9232b162013-02-11 09:52:19 +0000740 cpts_rx_timestamp(priv->cpts, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000741 skb->protocol = eth_type_trans(skb, ndev);
742 netif_receive_skb(skb);
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100743 ndev->stats.rx_bytes += len;
744 ndev->stats.rx_packets++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000745 } else {
Tobias Klauser8dc43dd2014-03-10 13:12:23 +0100746 ndev->stats.rx_dropped++;
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000747 new_skb = skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000748 }
749
Mugunthan V Na0e2c822014-09-10 16:38:09 +0530750requeue:
Sebastian Siewiorb4727e62013-04-23 07:31:39 +0000751 ret = cpdma_chan_submit(priv->rxch, new_skb, new_skb->data,
752 skb_tailroom(new_skb), 0);
753 if (WARN_ON(ret < 0))
754 dev_kfree_skb_any(new_skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000755}
756
757static irqreturn_t cpsw_interrupt(int irq, void *dev_id)
758{
759 struct cpsw_priv *priv = dev_id;
Felipe Balbi7ce67a32015-01-02 16:15:59 -0600760 int value = irq - priv->irqs_table[0];
761
762 /* NOTICE: Ending IRQ here. The trick with the 'value' variable above
763 * is to make sure we will always write the correct value to the EOI
764 * register. Namely 0 for RX_THRESH Interrupt, 1 for RX Interrupt, 2
765 * for TX Interrupt and 3 for MISC Interrupt.
766 */
767 cpdma_ctlr_eoi(priv->dma, value);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000768
769 cpsw_intr_disable(priv);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000770 if (priv->irq_enabled == true) {
771 cpsw_disable_irq(priv);
772 priv->irq_enabled = false;
773 }
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000774
775 if (netif_running(priv->ndev)) {
Mugunthan V Ndf828592012-03-18 20:17:54 +0000776 napi_schedule(&priv->napi);
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000777 return IRQ_HANDLED;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000778 }
Sebastian Siewiorfd51cf12013-04-23 07:31:37 +0000779
780 priv = cpsw_get_slave_priv(priv, 1);
781 if (!priv)
782 return IRQ_NONE;
783
784 if (netif_running(priv->ndev)) {
785 napi_schedule(&priv->napi);
786 return IRQ_HANDLED;
787 }
788 return IRQ_NONE;
Mugunthan V Ndf828592012-03-18 20:17:54 +0000789}
790
Mugunthan V Ndf828592012-03-18 20:17:54 +0000791static int cpsw_poll(struct napi_struct *napi, int budget)
792{
793 struct cpsw_priv *priv = napi_to_priv(napi);
794 int num_tx, num_rx;
795
796 num_tx = cpdma_chan_process(priv->txch, 128);
Mugunthan V N510a1e722013-02-17 22:19:20 +0000797
Mugunthan V Ndf828592012-03-18 20:17:54 +0000798 num_rx = cpdma_chan_process(priv->rxch, budget);
Mugunthan V N510a1e722013-02-17 22:19:20 +0000799 if (num_rx < budget) {
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000800 struct cpsw_priv *prim_cpsw;
801
Mugunthan V N510a1e722013-02-17 22:19:20 +0000802 napi_complete(napi);
803 cpsw_intr_enable(priv);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000804 prim_cpsw = cpsw_get_slave_priv(priv, 0);
805 if (prim_cpsw->irq_enabled == false) {
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000806 prim_cpsw->irq_enabled = true;
Mugunthan V Naf5c6df2013-05-02 01:52:11 +0000807 cpsw_enable_irq(priv);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +0000808 }
Mugunthan V N510a1e722013-02-17 22:19:20 +0000809 }
Mugunthan V Ndf828592012-03-18 20:17:54 +0000810
811 if (num_rx || num_tx)
812 cpsw_dbg(priv, intr, "poll %d rx, %d tx pkts\n",
813 num_rx, num_tx);
814
Mugunthan V Ndf828592012-03-18 20:17:54 +0000815 return num_rx;
816}
817
818static inline void soft_reset(const char *module, void __iomem *reg)
819{
820 unsigned long timeout = jiffies + HZ;
821
822 __raw_writel(1, reg);
823 do {
824 cpu_relax();
825 } while ((__raw_readl(reg) & 1) && time_after(timeout, jiffies));
826
827 WARN(__raw_readl(reg) & 1, "failed to soft-reset %s\n", module);
828}
829
830#define mac_hi(mac) (((mac)[0] << 0) | ((mac)[1] << 8) | \
831 ((mac)[2] << 16) | ((mac)[3] << 24))
832#define mac_lo(mac) (((mac)[4] << 0) | ((mac)[5] << 8))
833
834static void cpsw_set_slave_mac(struct cpsw_slave *slave,
835 struct cpsw_priv *priv)
836{
Richard Cochran9750a3a2012-10-29 08:45:15 +0000837 slave_write(slave, mac_hi(priv->mac_addr), SA_HI);
838 slave_write(slave, mac_lo(priv->mac_addr), SA_LO);
Mugunthan V Ndf828592012-03-18 20:17:54 +0000839}
840
841static void _cpsw_adjust_link(struct cpsw_slave *slave,
842 struct cpsw_priv *priv, bool *link)
843{
844 struct phy_device *phy = slave->phy;
845 u32 mac_control = 0;
846 u32 slave_port;
847
848 if (!phy)
849 return;
850
851 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
852
853 if (phy->link) {
854 mac_control = priv->data.mac_control;
855
856 /* enable forwarding */
857 cpsw_ale_control_set(priv->ale, slave_port,
858 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
859
860 if (phy->speed == 1000)
861 mac_control |= BIT(7); /* GIGABITEN */
862 if (phy->duplex)
863 mac_control |= BIT(0); /* FULLDUPLEXEN */
Daniel Mack342b7b72012-09-27 09:19:34 +0000864
865 /* set speed_in input in case RMII mode is used in 100Mbps */
866 if (phy->speed == 100)
867 mac_control |= BIT(15);
Mugunthan V Na81d8762013-12-13 18:42:55 +0530868 else if (phy->speed == 10)
869 mac_control |= BIT(18); /* In Band mode */
Daniel Mack342b7b72012-09-27 09:19:34 +0000870
Mugunthan V N1923d6e2014-09-08 22:54:02 +0530871 if (priv->rx_pause)
872 mac_control |= BIT(3);
873
874 if (priv->tx_pause)
875 mac_control |= BIT(4);
876
Mugunthan V Ndf828592012-03-18 20:17:54 +0000877 *link = true;
878 } else {
879 mac_control = 0;
880 /* disable forwarding */
881 cpsw_ale_control_set(priv->ale, slave_port,
882 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
883 }
884
885 if (mac_control != slave->mac_control) {
886 phy_print_status(phy);
887 __raw_writel(mac_control, &slave->sliver->mac_control);
888 }
889
890 slave->mac_control = mac_control;
891}
892
893static void cpsw_adjust_link(struct net_device *ndev)
894{
895 struct cpsw_priv *priv = netdev_priv(ndev);
896 bool link = false;
897
898 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
899
900 if (link) {
901 netif_carrier_on(ndev);
902 if (netif_running(ndev))
903 netif_wake_queue(ndev);
904 } else {
905 netif_carrier_off(ndev);
906 netif_stop_queue(ndev);
907 }
908}
909
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000910static int cpsw_get_coalesce(struct net_device *ndev,
911 struct ethtool_coalesce *coal)
912{
913 struct cpsw_priv *priv = netdev_priv(ndev);
914
915 coal->rx_coalesce_usecs = priv->coal_intvl;
916 return 0;
917}
918
919static int cpsw_set_coalesce(struct net_device *ndev,
920 struct ethtool_coalesce *coal)
921{
922 struct cpsw_priv *priv = netdev_priv(ndev);
923 u32 int_ctrl;
924 u32 num_interrupts = 0;
925 u32 prescale = 0;
926 u32 addnl_dvdr = 1;
927 u32 coal_intvl = 0;
928
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000929 coal_intvl = coal->rx_coalesce_usecs;
930
931 int_ctrl = readl(&priv->wr_regs->int_control);
932 prescale = priv->bus_freq_mhz * 4;
933
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530934 if (!coal->rx_coalesce_usecs) {
935 int_ctrl &= ~(CPSW_INTPRESCALE_MASK | CPSW_INTPACEEN);
936 goto update_return;
937 }
938
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000939 if (coal_intvl < CPSW_CMINTMIN_INTVL)
940 coal_intvl = CPSW_CMINTMIN_INTVL;
941
942 if (coal_intvl > CPSW_CMINTMAX_INTVL) {
943 /* Interrupt pacer works with 4us Pulse, we can
944 * throttle further by dilating the 4us pulse.
945 */
946 addnl_dvdr = CPSW_INTPRESCALE_MASK / prescale;
947
948 if (addnl_dvdr > 1) {
949 prescale *= addnl_dvdr;
950 if (coal_intvl > (CPSW_CMINTMAX_INTVL * addnl_dvdr))
951 coal_intvl = (CPSW_CMINTMAX_INTVL
952 * addnl_dvdr);
953 } else {
954 addnl_dvdr = 1;
955 coal_intvl = CPSW_CMINTMAX_INTVL;
956 }
957 }
958
959 num_interrupts = (1000 * addnl_dvdr) / coal_intvl;
960 writel(num_interrupts, &priv->wr_regs->rx_imax);
961 writel(num_interrupts, &priv->wr_regs->tx_imax);
962
963 int_ctrl |= CPSW_INTPACEEN;
964 int_ctrl &= (~CPSW_INTPRESCALE_MASK);
965 int_ctrl |= (prescale & CPSW_INTPRESCALE_MASK);
Mugunthan V Na84bc2a2014-07-15 20:26:53 +0530966
967update_return:
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +0000968 writel(int_ctrl, &priv->wr_regs->int_control);
969
970 cpsw_notice(priv, timer, "Set coalesce to %d usecs.\n", coal_intvl);
971 if (priv->data.dual_emac) {
972 int i;
973
974 for (i = 0; i < priv->data.slaves; i++) {
975 priv = netdev_priv(priv->slaves[i].ndev);
976 priv->coal_intvl = coal_intvl;
977 }
978 } else {
979 priv->coal_intvl = coal_intvl;
980 }
981
982 return 0;
983}
984
Mugunthan V Nd9718542013-07-23 15:38:17 +0530985static int cpsw_get_sset_count(struct net_device *ndev, int sset)
986{
987 switch (sset) {
988 case ETH_SS_STATS:
989 return CPSW_STATS_LEN;
990 default:
991 return -EOPNOTSUPP;
992 }
993}
994
995static void cpsw_get_strings(struct net_device *ndev, u32 stringset, u8 *data)
996{
997 u8 *p = data;
998 int i;
999
1000 switch (stringset) {
1001 case ETH_SS_STATS:
1002 for (i = 0; i < CPSW_STATS_LEN; i++) {
1003 memcpy(p, cpsw_gstrings_stats[i].stat_string,
1004 ETH_GSTRING_LEN);
1005 p += ETH_GSTRING_LEN;
1006 }
1007 break;
1008 }
1009}
1010
1011static void cpsw_get_ethtool_stats(struct net_device *ndev,
1012 struct ethtool_stats *stats, u64 *data)
1013{
1014 struct cpsw_priv *priv = netdev_priv(ndev);
1015 struct cpdma_chan_stats rx_stats;
1016 struct cpdma_chan_stats tx_stats;
1017 u32 val;
1018 u8 *p;
1019 int i;
1020
1021 /* Collect Davinci CPDMA stats for Rx and Tx Channel */
1022 cpdma_chan_get_stats(priv->rxch, &rx_stats);
1023 cpdma_chan_get_stats(priv->txch, &tx_stats);
1024
1025 for (i = 0; i < CPSW_STATS_LEN; i++) {
1026 switch (cpsw_gstrings_stats[i].type) {
1027 case CPSW_STATS:
1028 val = readl(priv->hw_stats +
1029 cpsw_gstrings_stats[i].stat_offset);
1030 data[i] = val;
1031 break;
1032
1033 case CPDMA_RX_STATS:
1034 p = (u8 *)&rx_stats +
1035 cpsw_gstrings_stats[i].stat_offset;
1036 data[i] = *(u32 *)p;
1037 break;
1038
1039 case CPDMA_TX_STATS:
1040 p = (u8 *)&tx_stats +
1041 cpsw_gstrings_stats[i].stat_offset;
1042 data[i] = *(u32 *)p;
1043 break;
1044 }
1045 }
1046}
1047
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001048static int cpsw_common_res_usage_state(struct cpsw_priv *priv)
1049{
1050 u32 i;
1051 u32 usage_count = 0;
1052
1053 if (!priv->data.dual_emac)
1054 return 0;
1055
1056 for (i = 0; i < priv->data.slaves; i++)
1057 if (priv->slaves[i].open_stat)
1058 usage_count++;
1059
1060 return usage_count;
1061}
1062
1063static inline int cpsw_tx_packet_submit(struct net_device *ndev,
1064 struct cpsw_priv *priv, struct sk_buff *skb)
1065{
1066 if (!priv->data.dual_emac)
1067 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001068 skb->len, 0);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001069
1070 if (ndev == cpsw_get_slave_ndev(priv, 0))
1071 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001072 skb->len, 1);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001073 else
1074 return cpdma_chan_submit(priv->txch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001075 skb->len, 2);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001076}
1077
1078static inline void cpsw_add_dual_emac_def_ale_entries(
1079 struct cpsw_priv *priv, struct cpsw_slave *slave,
1080 u32 slave_port)
1081{
1082 u32 port_mask = 1 << slave_port | 1 << priv->host_port;
1083
1084 if (priv->version == CPSW_VERSION_1)
1085 slave_write(slave, slave->port_vlan, CPSW1_PORT_VLAN);
1086 else
1087 slave_write(slave, slave->port_vlan, CPSW2_PORT_VLAN);
1088 cpsw_ale_add_vlan(priv->ale, slave->port_vlan, port_mask,
1089 port_mask, port_mask, 0);
1090 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1091 port_mask, ALE_VLAN, slave->port_vlan, 0);
1092 cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
1093 priv->host_port, ALE_VLAN, slave->port_vlan);
1094}
1095
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001096static void soft_reset_slave(struct cpsw_slave *slave)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001097{
1098 char name[32];
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001099
1100 snprintf(name, sizeof(name), "slave-%d", slave->slave_num);
1101 soft_reset(name, &slave->sliver->soft_reset);
1102}
1103
1104static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
1105{
Mugunthan V Ndf828592012-03-18 20:17:54 +00001106 u32 slave_port;
1107
Daniel Mack1e7a2e22013-11-15 08:29:16 +01001108 soft_reset_slave(slave);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001109
1110 /* setup priority mapping */
1111 __raw_writel(RX_PRIORITY_MAPPING, &slave->sliver->rx_pri_map);
Richard Cochran9750a3a2012-10-29 08:45:15 +00001112
1113 switch (priv->version) {
1114 case CPSW_VERSION_1:
1115 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP);
1116 break;
1117 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05301118 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05301119 case CPSW_VERSION_4:
Richard Cochran9750a3a2012-10-29 08:45:15 +00001120 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP);
1121 break;
1122 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001123
1124 /* setup max packet size, and mac address */
1125 __raw_writel(priv->rx_packet_max, &slave->sliver->rx_maxlen);
1126 cpsw_set_slave_mac(slave, priv);
1127
1128 slave->mac_control = 0; /* no link yet */
1129
1130 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
1131
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001132 if (priv->data.dual_emac)
1133 cpsw_add_dual_emac_def_ale_entries(priv, slave, slave_port);
1134 else
1135 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1136 1 << slave_port, 0, 0, ALE_MCAST_FWD_2);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001137
1138 slave->phy = phy_connect(priv->ndev, slave->data->phy_id,
Florian Fainellif9a8f832013-01-14 00:52:52 +00001139 &cpsw_adjust_link, slave->data->phy_if);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001140 if (IS_ERR(slave->phy)) {
1141 dev_err(priv->dev, "phy %s not found on slave %d\n",
1142 slave->data->phy_id, slave->slave_num);
1143 slave->phy = NULL;
1144 } else {
1145 dev_info(priv->dev, "phy found : id is : 0x%x\n",
1146 slave->phy->phy_id);
1147 phy_start(slave->phy);
Mugunthan V N388367a2013-09-21 00:50:40 +05301148
1149 /* Configure GMII_SEL register */
1150 cpsw_phy_sel(&priv->pdev->dev, slave->phy->interface,
1151 slave->slave_num);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001152 }
1153}
1154
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001155static inline void cpsw_add_default_vlan(struct cpsw_priv *priv)
1156{
1157 const int vlan = priv->data.default_vlan;
1158 const int port = priv->host_port;
1159 u32 reg;
1160 int i;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001161 int unreg_mcast_mask;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001162
1163 reg = (priv->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN :
1164 CPSW2_PORT_VLAN;
1165
1166 writel(vlan, &priv->host_port_regs->port_vlan);
1167
Daniel Mack0237c112013-02-26 04:06:20 +00001168 for (i = 0; i < priv->data.slaves; i++)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001169 slave_write(priv->slaves + i, vlan, reg);
1170
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001171 if (priv->ndev->flags & IFF_ALLMULTI)
1172 unreg_mcast_mask = ALE_ALL_PORTS;
1173 else
1174 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
1175
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001176 cpsw_ale_add_vlan(priv->ale, vlan, ALE_ALL_PORTS << port,
1177 ALE_ALL_PORTS << port, ALE_ALL_PORTS << port,
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001178 unreg_mcast_mask << port);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001179}
1180
Mugunthan V Ndf828592012-03-18 20:17:54 +00001181static void cpsw_init_host_port(struct cpsw_priv *priv)
1182{
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001183 u32 control_reg;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001184 u32 fifo_mode;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001185
Mugunthan V Ndf828592012-03-18 20:17:54 +00001186 /* soft reset the controller and initialize ale */
1187 soft_reset("cpsw", &priv->regs->soft_reset);
1188 cpsw_ale_start(priv->ale);
1189
1190 /* switch to vlan unaware mode */
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001191 cpsw_ale_control_set(priv->ale, priv->host_port, ALE_VLAN_AWARE,
1192 CPSW_ALE_VLAN_AWARE);
1193 control_reg = readl(&priv->regs->control);
1194 control_reg |= CPSW_VLAN_AWARE;
1195 writel(control_reg, &priv->regs->control);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001196 fifo_mode = (priv->data.dual_emac) ? CPSW_FIFO_DUAL_MAC_MODE :
1197 CPSW_FIFO_NORMAL_MODE;
1198 writel(fifo_mode, &priv->host_port_regs->tx_in_ctl);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001199
1200 /* setup host port priority mapping */
1201 __raw_writel(CPDMA_TX_PRIORITY_MAP,
1202 &priv->host_port_regs->cpdma_tx_pri_map);
1203 __raw_writel(0, &priv->host_port_regs->cpdma_rx_chan_map);
1204
1205 cpsw_ale_control_set(priv->ale, priv->host_port,
1206 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD);
1207
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001208 if (!priv->data.dual_emac) {
1209 cpsw_ale_add_ucast(priv->ale, priv->mac_addr, priv->host_port,
1210 0, 0);
1211 cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1212 1 << priv->host_port, 0, 0, ALE_MCAST_FWD_2);
1213 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001214}
1215
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001216static void cpsw_slave_stop(struct cpsw_slave *slave, struct cpsw_priv *priv)
1217{
Schuyler Patton3995d262014-03-03 16:19:06 +05301218 u32 slave_port;
1219
1220 slave_port = cpsw_get_slave_port(priv, slave->slave_num);
1221
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001222 if (!slave->phy)
1223 return;
1224 phy_stop(slave->phy);
1225 phy_disconnect(slave->phy);
1226 slave->phy = NULL;
Schuyler Patton3995d262014-03-03 16:19:06 +05301227 cpsw_ale_control_set(priv->ale, slave_port,
1228 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001229}
1230
Mugunthan V Ndf828592012-03-18 20:17:54 +00001231static int cpsw_ndo_open(struct net_device *ndev)
1232{
1233 struct cpsw_priv *priv = netdev_priv(ndev);
Sebastian Siewiora11fbba2013-04-24 08:48:25 +00001234 struct cpsw_priv *prim_cpsw;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001235 int i, ret;
1236 u32 reg;
1237
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001238 if (!cpsw_common_res_usage_state(priv))
1239 cpsw_intr_disable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001240 netif_carrier_off(ndev);
1241
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001242 pm_runtime_get_sync(&priv->pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001243
Richard Cochran549985e2012-11-14 09:07:56 +00001244 reg = priv->version;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001245
1246 dev_info(priv->dev, "initializing cpsw version %d.%d (%d)\n",
1247 CPSW_MAJOR_VERSION(reg), CPSW_MINOR_VERSION(reg),
1248 CPSW_RTL_VERSION(reg));
1249
1250 /* initialize host and slave ports */
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001251 if (!cpsw_common_res_usage_state(priv))
1252 cpsw_init_host_port(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001253 for_each_slave(priv, cpsw_slave_open, priv);
1254
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001255 /* Add default VLAN */
Mugunthan V Ne6afea02014-06-18 17:21:48 +05301256 if (!priv->data.dual_emac)
1257 cpsw_add_default_vlan(priv);
1258 else
1259 cpsw_ale_add_vlan(priv->ale, priv->data.default_vlan,
1260 ALE_ALL_PORTS << priv->host_port,
1261 ALE_ALL_PORTS << priv->host_port, 0, 0);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001262
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001263 if (!cpsw_common_res_usage_state(priv)) {
1264 /* setup tx dma to fixed prio and zero offset */
1265 cpdma_control_set(priv->dma, CPDMA_TX_PRIO_FIXED, 1);
1266 cpdma_control_set(priv->dma, CPDMA_RX_BUFFER_OFFSET, 0);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001267
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001268 /* disable priority elevation */
1269 __raw_writel(0, &priv->regs->ptype);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001270
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001271 /* enable statistics collection only on all ports */
1272 __raw_writel(0x7, &priv->regs->stat_port_en);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001273
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301274 /* Enable internal fifo flow control */
1275 writel(0x7, &priv->regs->flow_control);
1276
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001277 if (WARN_ON(!priv->data.rx_descs))
1278 priv->data.rx_descs = 128;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001279
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001280 for (i = 0; i < priv->data.rx_descs; i++) {
1281 struct sk_buff *skb;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001282
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001283 ret = -ENOMEM;
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001284 skb = __netdev_alloc_skb_ip_align(priv->ndev,
1285 priv->rx_packet_max, GFP_KERNEL);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001286 if (!skb)
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001287 goto err_cleanup;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001288 ret = cpdma_chan_submit(priv->rxch, skb, skb->data,
Sebastian Siewioraef614e2013-04-23 07:31:38 +00001289 skb_tailroom(skb), 0);
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001290 if (ret < 0) {
1291 kfree_skb(skb);
1292 goto err_cleanup;
1293 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001294 }
1295 /* continue even if we didn't manage to submit all
1296 * receive descs
1297 */
1298 cpsw_info(priv, ifup, "submitted %d rx descriptors\n", i);
Mugunthan V Nf280e892013-12-11 22:09:05 -06001299
1300 if (cpts_register(&priv->pdev->dev, priv->cpts,
1301 priv->data.cpts_clock_mult,
1302 priv->data.cpts_clock_shift))
1303 dev_err(priv->dev, "error registering cpts device\n");
1304
Mugunthan V Ndf828592012-03-18 20:17:54 +00001305 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001306
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001307 /* Enable Interrupt pacing if configured */
1308 if (priv->coal_intvl != 0) {
1309 struct ethtool_coalesce coal;
1310
1311 coal.rx_coalesce_usecs = (priv->coal_intvl << 4);
1312 cpsw_set_coalesce(ndev, &coal);
1313 }
1314
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301315 napi_enable(&priv->napi);
1316 cpdma_ctlr_start(priv->dma);
1317 cpsw_intr_enable(priv);
Mugunthan V Nf63a9752014-04-10 14:23:24 +05301318
Sebastian Siewiora11fbba2013-04-24 08:48:25 +00001319 prim_cpsw = cpsw_get_slave_priv(priv, 0);
1320 if (prim_cpsw->irq_enabled == false) {
1321 if ((priv == prim_cpsw) || !netif_running(prim_cpsw->ndev)) {
1322 prim_cpsw->irq_enabled = true;
1323 cpsw_enable_irq(prim_cpsw);
1324 }
1325 }
1326
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001327 if (priv->data.dual_emac)
1328 priv->slaves[priv->emac_port].open_stat = true;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001329 return 0;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001330
Sebastian Siewioraacebbf2013-04-23 07:31:36 +00001331err_cleanup:
1332 cpdma_ctlr_stop(priv->dma);
1333 for_each_slave(priv, cpsw_slave_stop, priv);
1334 pm_runtime_put_sync(&priv->pdev->dev);
1335 netif_carrier_off(priv->ndev);
1336 return ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001337}
1338
1339static int cpsw_ndo_stop(struct net_device *ndev)
1340{
1341 struct cpsw_priv *priv = netdev_priv(ndev);
1342
1343 cpsw_info(priv, ifdown, "shutting down cpsw device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00001344 netif_stop_queue(priv->ndev);
1345 napi_disable(&priv->napi);
1346 netif_carrier_off(priv->ndev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001347
1348 if (cpsw_common_res_usage_state(priv) <= 1) {
Mugunthan V Nf280e892013-12-11 22:09:05 -06001349 cpts_unregister(priv->cpts);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001350 cpsw_intr_disable(priv);
1351 cpdma_ctlr_int_ctrl(priv->dma, false);
1352 cpdma_ctlr_stop(priv->dma);
1353 cpsw_ale_stop(priv->ale);
1354 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00001355 for_each_slave(priv, cpsw_slave_stop, priv);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00001356 pm_runtime_put_sync(&priv->pdev->dev);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001357 if (priv->data.dual_emac)
1358 priv->slaves[priv->emac_port].open_stat = false;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001359 return 0;
1360}
1361
1362static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,
1363 struct net_device *ndev)
1364{
1365 struct cpsw_priv *priv = netdev_priv(ndev);
1366 int ret;
1367
1368 ndev->trans_start = jiffies;
1369
1370 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) {
1371 cpsw_err(priv, tx_err, "packet pad failed\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001372 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001373 return NETDEV_TX_OK;
1374 }
1375
Mugunthan V N9232b162013-02-11 09:52:19 +00001376 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP &&
1377 priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001378 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS;
1379
1380 skb_tx_timestamp(skb);
1381
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001382 ret = cpsw_tx_packet_submit(ndev, priv, skb);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001383 if (unlikely(ret != 0)) {
1384 cpsw_err(priv, tx_err, "desc submit failed\n");
1385 goto fail;
1386 }
1387
Mugunthan V Nfae50822013-01-17 06:31:34 +00001388 /* If there is no more tx desc left free then we need to
1389 * tell the kernel to stop sending us tx frames.
1390 */
Daniel Mackd35162f2013-03-12 06:31:19 +00001391 if (unlikely(!cpdma_check_free_tx_desc(priv->txch)))
Mugunthan V Nfae50822013-01-17 06:31:34 +00001392 netif_stop_queue(ndev);
1393
Mugunthan V Ndf828592012-03-18 20:17:54 +00001394 return NETDEV_TX_OK;
1395fail:
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001396 ndev->stats.tx_dropped++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001397 netif_stop_queue(ndev);
1398 return NETDEV_TX_BUSY;
1399}
1400
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001401#ifdef CONFIG_TI_CPTS
1402
1403static void cpsw_hwtstamp_v1(struct cpsw_priv *priv)
1404{
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001405 struct cpsw_slave *slave = &priv->slaves[priv->data.active_slave];
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001406 u32 ts_en, seq_id;
1407
Mugunthan V N9232b162013-02-11 09:52:19 +00001408 if (!priv->cpts->tx_enable && !priv->cpts->rx_enable) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001409 slave_write(slave, 0, CPSW1_TS_CTL);
1410 return;
1411 }
1412
1413 seq_id = (30 << CPSW_V1_SEQ_ID_OFS_SHIFT) | ETH_P_1588;
1414 ts_en = EVENT_MSG_BITS << CPSW_V1_MSG_TYPE_OFS;
1415
Mugunthan V N9232b162013-02-11 09:52:19 +00001416 if (priv->cpts->tx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001417 ts_en |= CPSW_V1_TS_TX_EN;
1418
Mugunthan V N9232b162013-02-11 09:52:19 +00001419 if (priv->cpts->rx_enable)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001420 ts_en |= CPSW_V1_TS_RX_EN;
1421
1422 slave_write(slave, ts_en, CPSW1_TS_CTL);
1423 slave_write(slave, seq_id, CPSW1_TS_SEQ_LTYPE);
1424}
1425
1426static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
1427{
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001428 struct cpsw_slave *slave;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001429 u32 ctrl, mtype;
1430
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001431 if (priv->data.dual_emac)
1432 slave = &priv->slaves[priv->emac_port];
1433 else
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001434 slave = &priv->slaves[priv->data.active_slave];
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001435
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001436 ctrl = slave_read(slave, CPSW2_CONTROL);
George Cherian09c55372014-05-02 12:02:02 +05301437 switch (priv->version) {
1438 case CPSW_VERSION_2:
1439 ctrl &= ~CTRL_V2_ALL_TS_MASK;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001440
George Cherian09c55372014-05-02 12:02:02 +05301441 if (priv->cpts->tx_enable)
1442 ctrl |= CTRL_V2_TX_TS_BITS;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001443
George Cherian09c55372014-05-02 12:02:02 +05301444 if (priv->cpts->rx_enable)
1445 ctrl |= CTRL_V2_RX_TS_BITS;
1446 break;
1447 case CPSW_VERSION_3:
1448 default:
1449 ctrl &= ~CTRL_V3_ALL_TS_MASK;
1450
1451 if (priv->cpts->tx_enable)
1452 ctrl |= CTRL_V3_TX_TS_BITS;
1453
1454 if (priv->cpts->rx_enable)
1455 ctrl |= CTRL_V3_RX_TS_BITS;
1456 break;
1457 }
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001458
1459 mtype = (30 << TS_SEQ_ID_OFFSET_SHIFT) | EVENT_MSG_BITS;
1460
1461 slave_write(slave, mtype, CPSW2_TS_SEQ_MTYPE);
1462 slave_write(slave, ctrl, CPSW2_CONTROL);
1463 __raw_writel(ETH_P_1588, &priv->regs->ts_ltype);
1464}
1465
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001466static int cpsw_hwtstamp_set(struct net_device *dev, struct ifreq *ifr)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001467{
Mugunthan V N3177bf62012-11-27 07:53:40 +00001468 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N9232b162013-02-11 09:52:19 +00001469 struct cpts *cpts = priv->cpts;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001470 struct hwtstamp_config cfg;
1471
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001472 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301473 priv->version != CPSW_VERSION_2 &&
1474 priv->version != CPSW_VERSION_3)
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001475 return -EOPNOTSUPP;
1476
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001477 if (copy_from_user(&cfg, ifr->ifr_data, sizeof(cfg)))
1478 return -EFAULT;
1479
1480 /* reserved for future extensions */
1481 if (cfg.flags)
1482 return -EINVAL;
1483
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001484 if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001485 return -ERANGE;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001486
1487 switch (cfg.rx_filter) {
1488 case HWTSTAMP_FILTER_NONE:
1489 cpts->rx_enable = 0;
1490 break;
1491 case HWTSTAMP_FILTER_ALL:
1492 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT:
1493 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC:
1494 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ:
1495 return -ERANGE;
1496 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT:
1497 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC:
1498 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ:
1499 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT:
1500 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC:
1501 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ:
1502 case HWTSTAMP_FILTER_PTP_V2_EVENT:
1503 case HWTSTAMP_FILTER_PTP_V2_SYNC:
1504 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ:
1505 cpts->rx_enable = 1;
1506 cfg.rx_filter = HWTSTAMP_FILTER_PTP_V2_EVENT;
1507 break;
1508 default:
1509 return -ERANGE;
1510 }
1511
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001512 cpts->tx_enable = cfg.tx_type == HWTSTAMP_TX_ON;
1513
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001514 switch (priv->version) {
1515 case CPSW_VERSION_1:
1516 cpsw_hwtstamp_v1(priv);
1517 break;
1518 case CPSW_VERSION_2:
George Cherianf7d403c2014-05-02 12:02:01 +05301519 case CPSW_VERSION_3:
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001520 cpsw_hwtstamp_v2(priv);
1521 break;
1522 default:
Ben Hutchings2ee91e52013-11-14 00:47:36 +00001523 WARN_ON(1);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001524 }
1525
1526 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1527}
1528
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001529static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
1530{
1531 struct cpsw_priv *priv = netdev_priv(dev);
1532 struct cpts *cpts = priv->cpts;
1533 struct hwtstamp_config cfg;
1534
1535 if (priv->version != CPSW_VERSION_1 &&
George Cherianf7d403c2014-05-02 12:02:01 +05301536 priv->version != CPSW_VERSION_2 &&
1537 priv->version != CPSW_VERSION_3)
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001538 return -EOPNOTSUPP;
1539
1540 cfg.flags = 0;
1541 cfg.tx_type = cpts->tx_enable ? HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;
1542 cfg.rx_filter = (cpts->rx_enable ?
1543 HWTSTAMP_FILTER_PTP_V2_EVENT : HWTSTAMP_FILTER_NONE);
1544
1545 return copy_to_user(ifr->ifr_data, &cfg, sizeof(cfg)) ? -EFAULT : 0;
1546}
1547
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001548#endif /*CONFIG_TI_CPTS*/
1549
1550static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
1551{
Mugunthan V N11f2c982013-03-11 23:16:38 +00001552 struct cpsw_priv *priv = netdev_priv(dev);
Mugunthan V N11f2c982013-03-11 23:16:38 +00001553 int slave_no = cpsw_slave_index(priv);
1554
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001555 if (!netif_running(dev))
1556 return -EINVAL;
1557
Mugunthan V N11f2c982013-03-11 23:16:38 +00001558 switch (cmd) {
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001559#ifdef CONFIG_TI_CPTS
Mugunthan V N11f2c982013-03-11 23:16:38 +00001560 case SIOCSHWTSTAMP:
Ben Hutchingsa5b41452013-11-18 23:23:40 +00001561 return cpsw_hwtstamp_set(dev, req);
1562 case SIOCGHWTSTAMP:
1563 return cpsw_hwtstamp_get(dev, req);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001564#endif
Mugunthan V N11f2c982013-03-11 23:16:38 +00001565 }
1566
Stefan Sørensenc1b59942014-02-16 14:54:25 +01001567 if (!priv->slaves[slave_no].phy)
1568 return -EOPNOTSUPP;
1569 return phy_mii_ioctl(priv->slaves[slave_no].phy, req, cmd);
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001570}
1571
Mugunthan V Ndf828592012-03-18 20:17:54 +00001572static void cpsw_ndo_tx_timeout(struct net_device *ndev)
1573{
1574 struct cpsw_priv *priv = netdev_priv(ndev);
1575
1576 cpsw_err(priv, tx_err, "transmit timeout, restarting dma\n");
Tobias Klauser8dc43dd2014-03-10 13:12:23 +01001577 ndev->stats.tx_errors++;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001578 cpsw_intr_disable(priv);
1579 cpdma_ctlr_int_ctrl(priv->dma, false);
1580 cpdma_chan_stop(priv->txch);
1581 cpdma_chan_start(priv->txch);
1582 cpdma_ctlr_int_ctrl(priv->dma, true);
1583 cpsw_intr_enable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001584}
1585
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301586static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p)
1587{
1588 struct cpsw_priv *priv = netdev_priv(ndev);
1589 struct sockaddr *addr = (struct sockaddr *)p;
1590 int flags = 0;
1591 u16 vid = 0;
1592
1593 if (!is_valid_ether_addr(addr->sa_data))
1594 return -EADDRNOTAVAIL;
1595
1596 if (priv->data.dual_emac) {
1597 vid = priv->slaves[priv->emac_port].port_vlan;
1598 flags = ALE_VLAN;
1599 }
1600
1601 cpsw_ale_del_ucast(priv->ale, priv->mac_addr, priv->host_port,
1602 flags, vid);
1603 cpsw_ale_add_ucast(priv->ale, addr->sa_data, priv->host_port,
1604 flags, vid);
1605
1606 memcpy(priv->mac_addr, addr->sa_data, ETH_ALEN);
1607 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
1608 for_each_slave(priv, cpsw_set_slave_mac, priv);
1609
1610 return 0;
1611}
1612
Mugunthan V Ndf828592012-03-18 20:17:54 +00001613#ifdef CONFIG_NET_POLL_CONTROLLER
1614static void cpsw_ndo_poll_controller(struct net_device *ndev)
1615{
1616 struct cpsw_priv *priv = netdev_priv(ndev);
1617
1618 cpsw_intr_disable(priv);
1619 cpdma_ctlr_int_ctrl(priv->dma, false);
1620 cpsw_interrupt(ndev->irq, priv);
1621 cpdma_ctlr_int_ctrl(priv->dma, true);
1622 cpsw_intr_enable(priv);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001623}
1624#endif
1625
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001626static inline int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv,
1627 unsigned short vid)
1628{
1629 int ret;
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001630 int unreg_mcast_mask;
1631
1632 if (priv->ndev->flags & IFF_ALLMULTI)
1633 unreg_mcast_mask = ALE_ALL_PORTS;
1634 else
1635 unreg_mcast_mask = ALE_PORT_1 | ALE_PORT_2;
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001636
1637 ret = cpsw_ale_add_vlan(priv->ale, vid,
1638 ALE_ALL_PORTS << priv->host_port,
1639 0, ALE_ALL_PORTS << priv->host_port,
Lennart Sorensen1e5c4bc2014-10-31 13:38:52 -04001640 unreg_mcast_mask << priv->host_port);
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001641 if (ret != 0)
1642 return ret;
1643
1644 ret = cpsw_ale_add_ucast(priv->ale, priv->mac_addr,
1645 priv->host_port, ALE_VLAN, vid);
1646 if (ret != 0)
1647 goto clean_vid;
1648
1649 ret = cpsw_ale_add_mcast(priv->ale, priv->ndev->broadcast,
1650 ALE_ALL_PORTS << priv->host_port,
1651 ALE_VLAN, vid, 0);
1652 if (ret != 0)
1653 goto clean_vlan_ucast;
1654 return 0;
1655
1656clean_vlan_ucast:
1657 cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1658 priv->host_port, ALE_VLAN, vid);
1659clean_vid:
1660 cpsw_ale_del_vlan(priv->ale, vid, 0);
1661 return ret;
1662}
1663
1664static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001665 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001666{
1667 struct cpsw_priv *priv = netdev_priv(ndev);
1668
1669 if (vid == priv->data.default_vlan)
1670 return 0;
1671
1672 dev_info(priv->dev, "Adding vlanid %d to vlan filter\n", vid);
1673 return cpsw_add_vlan_ale_entry(priv, vid);
1674}
1675
1676static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev,
Patrick McHardy80d5c362013-04-19 02:04:28 +00001677 __be16 proto, u16 vid)
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001678{
1679 struct cpsw_priv *priv = netdev_priv(ndev);
1680 int ret;
1681
1682 if (vid == priv->data.default_vlan)
1683 return 0;
1684
1685 dev_info(priv->dev, "removing vlanid %d from vlan filter\n", vid);
1686 ret = cpsw_ale_del_vlan(priv->ale, vid, 0);
1687 if (ret != 0)
1688 return ret;
1689
1690 ret = cpsw_ale_del_ucast(priv->ale, priv->mac_addr,
1691 priv->host_port, ALE_VLAN, vid);
1692 if (ret != 0)
1693 return ret;
1694
1695 return cpsw_ale_del_mcast(priv->ale, priv->ndev->broadcast,
1696 0, ALE_VLAN, vid);
1697}
1698
Mugunthan V Ndf828592012-03-18 20:17:54 +00001699static const struct net_device_ops cpsw_netdev_ops = {
1700 .ndo_open = cpsw_ndo_open,
1701 .ndo_stop = cpsw_ndo_stop,
1702 .ndo_start_xmit = cpsw_ndo_start_xmit,
Mugunthan V Ndcfd8d52013-07-25 23:44:01 +05301703 .ndo_set_mac_address = cpsw_ndo_set_mac_address,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001704 .ndo_do_ioctl = cpsw_ndo_ioctl,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001705 .ndo_validate_addr = eth_validate_addr,
David S. Miller5c473ed2012-03-20 00:33:59 -04001706 .ndo_change_mtu = eth_change_mtu,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001707 .ndo_tx_timeout = cpsw_ndo_tx_timeout,
Mugunthan V N5c50a852012-10-29 08:45:11 +00001708 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001709#ifdef CONFIG_NET_POLL_CONTROLLER
1710 .ndo_poll_controller = cpsw_ndo_poll_controller,
1711#endif
Mugunthan V N3b72c2f2013-02-05 08:26:48 +00001712 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid,
1713 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001714};
1715
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301716static int cpsw_get_regs_len(struct net_device *ndev)
1717{
1718 struct cpsw_priv *priv = netdev_priv(ndev);
1719
1720 return priv->data.ale_entries * ALE_ENTRY_WORDS * sizeof(u32);
1721}
1722
1723static void cpsw_get_regs(struct net_device *ndev,
1724 struct ethtool_regs *regs, void *p)
1725{
1726 struct cpsw_priv *priv = netdev_priv(ndev);
1727 u32 *reg = p;
1728
1729 /* update CPSW IP version */
1730 regs->version = priv->version;
1731
1732 cpsw_ale_dump(priv->ale, reg);
1733}
1734
Mugunthan V Ndf828592012-03-18 20:17:54 +00001735static void cpsw_get_drvinfo(struct net_device *ndev,
1736 struct ethtool_drvinfo *info)
1737{
1738 struct cpsw_priv *priv = netdev_priv(ndev);
Jiri Pirko7826d432013-01-06 00:44:26 +00001739
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301740 strlcpy(info->driver, "cpsw", sizeof(info->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +00001741 strlcpy(info->version, "1.0", sizeof(info->version));
1742 strlcpy(info->bus_info, priv->pdev->name, sizeof(info->bus_info));
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301743 info->regdump_len = cpsw_get_regs_len(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00001744}
1745
1746static u32 cpsw_get_msglevel(struct net_device *ndev)
1747{
1748 struct cpsw_priv *priv = netdev_priv(ndev);
1749 return priv->msg_enable;
1750}
1751
1752static void cpsw_set_msglevel(struct net_device *ndev, u32 value)
1753{
1754 struct cpsw_priv *priv = netdev_priv(ndev);
1755 priv->msg_enable = value;
1756}
1757
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001758static int cpsw_get_ts_info(struct net_device *ndev,
1759 struct ethtool_ts_info *info)
1760{
1761#ifdef CONFIG_TI_CPTS
1762 struct cpsw_priv *priv = netdev_priv(ndev);
1763
1764 info->so_timestamping =
1765 SOF_TIMESTAMPING_TX_HARDWARE |
1766 SOF_TIMESTAMPING_TX_SOFTWARE |
1767 SOF_TIMESTAMPING_RX_HARDWARE |
1768 SOF_TIMESTAMPING_RX_SOFTWARE |
1769 SOF_TIMESTAMPING_SOFTWARE |
1770 SOF_TIMESTAMPING_RAW_HARDWARE;
Mugunthan V N9232b162013-02-11 09:52:19 +00001771 info->phc_index = priv->cpts->phc_index;
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001772 info->tx_types =
1773 (1 << HWTSTAMP_TX_OFF) |
1774 (1 << HWTSTAMP_TX_ON);
1775 info->rx_filters =
1776 (1 << HWTSTAMP_FILTER_NONE) |
1777 (1 << HWTSTAMP_FILTER_PTP_V2_EVENT);
1778#else
1779 info->so_timestamping =
1780 SOF_TIMESTAMPING_TX_SOFTWARE |
1781 SOF_TIMESTAMPING_RX_SOFTWARE |
1782 SOF_TIMESTAMPING_SOFTWARE;
1783 info->phc_index = -1;
1784 info->tx_types = 0;
1785 info->rx_filters = 0;
1786#endif
1787 return 0;
1788}
1789
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001790static int cpsw_get_settings(struct net_device *ndev,
1791 struct ethtool_cmd *ecmd)
1792{
1793 struct cpsw_priv *priv = netdev_priv(ndev);
1794 int slave_no = cpsw_slave_index(priv);
1795
1796 if (priv->slaves[slave_no].phy)
1797 return phy_ethtool_gset(priv->slaves[slave_no].phy, ecmd);
1798 else
1799 return -EOPNOTSUPP;
1800}
1801
1802static int cpsw_set_settings(struct net_device *ndev, struct ethtool_cmd *ecmd)
1803{
1804 struct cpsw_priv *priv = netdev_priv(ndev);
1805 int slave_no = cpsw_slave_index(priv);
1806
1807 if (priv->slaves[slave_no].phy)
1808 return phy_ethtool_sset(priv->slaves[slave_no].phy, ecmd);
1809 else
1810 return -EOPNOTSUPP;
1811}
1812
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001813static void cpsw_get_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1814{
1815 struct cpsw_priv *priv = netdev_priv(ndev);
1816 int slave_no = cpsw_slave_index(priv);
1817
1818 wol->supported = 0;
1819 wol->wolopts = 0;
1820
1821 if (priv->slaves[slave_no].phy)
1822 phy_ethtool_get_wol(priv->slaves[slave_no].phy, wol);
1823}
1824
1825static int cpsw_set_wol(struct net_device *ndev, struct ethtool_wolinfo *wol)
1826{
1827 struct cpsw_priv *priv = netdev_priv(ndev);
1828 int slave_no = cpsw_slave_index(priv);
1829
1830 if (priv->slaves[slave_no].phy)
1831 return phy_ethtool_set_wol(priv->slaves[slave_no].phy, wol);
1832 else
1833 return -EOPNOTSUPP;
1834}
1835
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301836static void cpsw_get_pauseparam(struct net_device *ndev,
1837 struct ethtool_pauseparam *pause)
1838{
1839 struct cpsw_priv *priv = netdev_priv(ndev);
1840
1841 pause->autoneg = AUTONEG_DISABLE;
1842 pause->rx_pause = priv->rx_pause ? true : false;
1843 pause->tx_pause = priv->tx_pause ? true : false;
1844}
1845
1846static int cpsw_set_pauseparam(struct net_device *ndev,
1847 struct ethtool_pauseparam *pause)
1848{
1849 struct cpsw_priv *priv = netdev_priv(ndev);
1850 bool link;
1851
1852 priv->rx_pause = pause->rx_pause ? true : false;
1853 priv->tx_pause = pause->tx_pause ? true : false;
1854
1855 for_each_slave(priv, _cpsw_adjust_link, priv, &link);
1856
1857 return 0;
1858}
1859
Mugunthan V Ndf828592012-03-18 20:17:54 +00001860static const struct ethtool_ops cpsw_ethtool_ops = {
1861 .get_drvinfo = cpsw_get_drvinfo,
1862 .get_msglevel = cpsw_get_msglevel,
1863 .set_msglevel = cpsw_set_msglevel,
1864 .get_link = ethtool_op_get_link,
Richard Cochran2e5b38a2012-10-29 08:45:20 +00001865 .get_ts_info = cpsw_get_ts_info,
Mugunthan V Nd3bb9c52013-03-11 23:16:36 +00001866 .get_settings = cpsw_get_settings,
1867 .set_settings = cpsw_set_settings,
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00001868 .get_coalesce = cpsw_get_coalesce,
1869 .set_coalesce = cpsw_set_coalesce,
Mugunthan V Nd9718542013-07-23 15:38:17 +05301870 .get_sset_count = cpsw_get_sset_count,
1871 .get_strings = cpsw_get_strings,
1872 .get_ethtool_stats = cpsw_get_ethtool_stats,
Mugunthan V N1923d6e2014-09-08 22:54:02 +05301873 .get_pauseparam = cpsw_get_pauseparam,
1874 .set_pauseparam = cpsw_set_pauseparam,
Matus Ujhelyid8a64422013-08-20 07:59:38 +02001875 .get_wol = cpsw_get_wol,
1876 .set_wol = cpsw_set_wol,
Mugunthan V N52c4f0e2014-07-22 23:25:07 +05301877 .get_regs_len = cpsw_get_regs_len,
1878 .get_regs = cpsw_get_regs,
Mugunthan V Ndf828592012-03-18 20:17:54 +00001879};
1880
Richard Cochran549985e2012-11-14 09:07:56 +00001881static void cpsw_slave_init(struct cpsw_slave *slave, struct cpsw_priv *priv,
1882 u32 slave_reg_ofs, u32 sliver_reg_ofs)
Mugunthan V Ndf828592012-03-18 20:17:54 +00001883{
1884 void __iomem *regs = priv->regs;
1885 int slave_num = slave->slave_num;
1886 struct cpsw_slave_data *data = priv->data.slave_data + slave_num;
1887
1888 slave->data = data;
Richard Cochran549985e2012-11-14 09:07:56 +00001889 slave->regs = regs + slave_reg_ofs;
1890 slave->sliver = regs + sliver_reg_ofs;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001891 slave->port_vlan = data->dual_emac_res_vlan;
Mugunthan V Ndf828592012-03-18 20:17:54 +00001892}
1893
Markus Pargmann0ba517b2014-09-29 08:53:17 +02001894#define AM33XX_CTRL_MAC_LO_REG(id) (0x630 + 0x8 * id)
1895#define AM33XX_CTRL_MAC_HI_REG(id) (0x630 + 0x8 * id + 0x4)
1896
1897static int cpsw_am33xx_cm_get_macid(struct device *dev, int slave,
1898 u8 *mac_addr)
1899{
1900 u32 macid_lo;
1901 u32 macid_hi;
1902 struct regmap *syscon;
1903
1904 syscon = syscon_regmap_lookup_by_phandle(dev->of_node, "syscon");
1905 if (IS_ERR(syscon)) {
1906 if (PTR_ERR(syscon) == -ENODEV)
1907 return 0;
1908 return PTR_ERR(syscon);
1909 }
1910
1911 regmap_read(syscon, AM33XX_CTRL_MAC_LO_REG(slave), &macid_lo);
1912 regmap_read(syscon, AM33XX_CTRL_MAC_HI_REG(slave), &macid_hi);
1913
1914 mac_addr[5] = (macid_lo >> 8) & 0xff;
1915 mac_addr[4] = macid_lo & 0xff;
1916 mac_addr[3] = (macid_hi >> 24) & 0xff;
1917 mac_addr[2] = (macid_hi >> 16) & 0xff;
1918 mac_addr[1] = (macid_hi >> 8) & 0xff;
1919 mac_addr[0] = macid_hi & 0xff;
1920
1921 return 0;
1922}
1923
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001924static int cpsw_probe_dt(struct cpsw_platform_data *data,
1925 struct platform_device *pdev)
1926{
1927 struct device_node *node = pdev->dev.of_node;
1928 struct device_node *slave_node;
1929 int i = 0, ret;
1930 u32 prop;
1931
1932 if (!node)
1933 return -EINVAL;
1934
1935 if (of_property_read_u32(node, "slaves", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301936 dev_err(&pdev->dev, "Missing slaves property in the DT.\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001937 return -EINVAL;
1938 }
1939 data->slaves = prop;
1940
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001941 if (of_property_read_u32(node, "active_slave", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301942 dev_err(&pdev->dev, "Missing active_slave property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301943 return -EINVAL;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001944 }
Mugunthan V Ne86ac132013-03-11 23:16:35 +00001945 data->active_slave = prop;
Richard Cochran78ca0b22012-10-29 08:45:18 +00001946
Richard Cochran00ab94e2012-10-29 08:45:19 +00001947 if (of_property_read_u32(node, "cpts_clock_mult", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301948 dev_err(&pdev->dev, "Missing cpts_clock_mult property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301949 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00001950 }
1951 data->cpts_clock_mult = prop;
1952
1953 if (of_property_read_u32(node, "cpts_clock_shift", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301954 dev_err(&pdev->dev, "Missing cpts_clock_shift property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301955 return -EINVAL;
Richard Cochran00ab94e2012-10-29 08:45:19 +00001956 }
1957 data->cpts_clock_shift = prop;
1958
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301959 data->slave_data = devm_kzalloc(&pdev->dev, data->slaves
1960 * sizeof(struct cpsw_slave_data),
1961 GFP_KERNEL);
Joe Perchesb2adaca2013-02-03 17:43:58 +00001962 if (!data->slave_data)
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301963 return -ENOMEM;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001964
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001965 if (of_property_read_u32(node, "cpdma_channels", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301966 dev_err(&pdev->dev, "Missing cpdma_channels property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301967 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001968 }
1969 data->channels = prop;
1970
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001971 if (of_property_read_u32(node, "ale_entries", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301972 dev_err(&pdev->dev, "Missing ale_entries property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301973 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001974 }
1975 data->ale_entries = prop;
1976
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001977 if (of_property_read_u32(node, "bd_ram_size", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301978 dev_err(&pdev->dev, "Missing bd_ram_size property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301979 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001980 }
1981 data->bd_ram_size = prop;
1982
1983 if (of_property_read_u32(node, "rx_descs", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301984 dev_err(&pdev->dev, "Missing rx_descs property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301985 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001986 }
1987 data->rx_descs = prop;
1988
1989 if (of_property_read_u32(node, "mac_control", &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05301990 dev_err(&pdev->dev, "Missing mac_control property in the DT.\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05301991 return -EINVAL;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00001992 }
1993 data->mac_control = prop;
1994
Markus Pargmann281abd92013-10-04 14:44:40 +02001995 if (of_property_read_bool(node, "dual_emac"))
1996 data->dual_emac = 1;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00001997
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00001998 /*
1999 * Populate all the child nodes here...
2000 */
2001 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2002 /* We do not want to force this, as in some cases may not have child */
2003 if (ret)
George Cherian88c99ff2014-05-12 10:21:19 +05302004 dev_warn(&pdev->dev, "Doesn't have any child node\n");
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002005
Markus Pargmannf468b102013-10-04 14:44:39 +02002006 for_each_child_of_node(node, slave_node) {
Richard Cochran549985e2012-11-14 09:07:56 +00002007 struct cpsw_slave_data *slave_data = data->slave_data + i;
2008 const void *mac_addr = NULL;
2009 u32 phyid;
2010 int lenp;
2011 const __be32 *parp;
2012 struct device_node *mdio_node;
2013 struct platform_device *mdio;
2014
Markus Pargmannf468b102013-10-04 14:44:39 +02002015 /* This is no slave child node, continue */
2016 if (strcmp(slave_node->name, "slave"))
2017 continue;
2018
Richard Cochran549985e2012-11-14 09:07:56 +00002019 parp = of_get_property(slave_node, "phy_id", &lenp);
Lothar Waßmannce162942013-03-21 02:20:11 +00002020 if ((parp == NULL) || (lenp != (sizeof(void *) * 2))) {
George Cherian88c99ff2014-05-12 10:21:19 +05302021 dev_err(&pdev->dev, "Missing slave[%d] phy_id property\n", i);
Mugunthan V N47276fc2014-10-24 18:51:33 +05302022 goto no_phy_slave;
Richard Cochran549985e2012-11-14 09:07:56 +00002023 }
2024 mdio_node = of_find_node_by_phandle(be32_to_cpup(parp));
2025 phyid = be32_to_cpup(parp+1);
2026 mdio = of_find_device_by_node(mdio_node);
Johan Hovold60e71ab2014-05-08 10:09:24 +02002027 of_node_put(mdio_node);
Johan Hovold6954cc12014-05-08 10:09:23 +02002028 if (!mdio) {
Markus Pargmann56fdb2e2014-09-29 08:53:16 +02002029 dev_err(&pdev->dev, "Missing mdio platform device\n");
Johan Hovold6954cc12014-05-08 10:09:23 +02002030 return -EINVAL;
Stefan Roesef8d56d82014-01-29 11:32:37 +01002031 }
Johan Hovold59993f482014-05-08 10:09:22 +02002032 snprintf(slave_data->phy_id, sizeof(slave_data->phy_id),
2033 PHY_ID_FMT, mdio->name, phyid);
Richard Cochran549985e2012-11-14 09:07:56 +00002034
Mugunthan V N47276fc2014-10-24 18:51:33 +05302035 slave_data->phy_if = of_get_phy_mode(slave_node);
2036 if (slave_data->phy_if < 0) {
2037 dev_err(&pdev->dev, "Missing or malformed slave[%d] phy-mode property\n",
2038 i);
2039 return slave_data->phy_if;
2040 }
2041
2042no_phy_slave:
Richard Cochran549985e2012-11-14 09:07:56 +00002043 mac_addr = of_get_mac_address(slave_node);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002044 if (mac_addr) {
Richard Cochran549985e2012-11-14 09:07:56 +00002045 memcpy(slave_data->mac_addr, mac_addr, ETH_ALEN);
Markus Pargmann0ba517b2014-09-29 08:53:17 +02002046 } else {
2047 if (of_machine_is_compatible("ti,am33xx")) {
2048 ret = cpsw_am33xx_cm_get_macid(&pdev->dev, i,
2049 slave_data->mac_addr);
2050 if (ret)
2051 return ret;
2052 }
2053 }
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002054 if (data->dual_emac) {
Mugunthan V N91c41662013-04-15 07:31:28 +00002055 if (of_property_read_u32(slave_node, "dual_emac_res_vlan",
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002056 &prop)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302057 dev_err(&pdev->dev, "Missing dual_emac_res_vlan in DT.\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002058 slave_data->dual_emac_res_vlan = i+1;
George Cherian88c99ff2014-05-12 10:21:19 +05302059 dev_err(&pdev->dev, "Using %d as Reserved VLAN for %d slave\n",
2060 slave_data->dual_emac_res_vlan, i);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002061 } else {
2062 slave_data->dual_emac_res_vlan = prop;
2063 }
2064 }
2065
Richard Cochran549985e2012-11-14 09:07:56 +00002066 i++;
Mugunthan V N3a27bfa2013-12-02 12:53:39 +05302067 if (i == data->slaves)
2068 break;
Richard Cochran549985e2012-11-14 09:07:56 +00002069 }
2070
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002071 return 0;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002072}
2073
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002074static int cpsw_probe_dual_emac(struct platform_device *pdev,
2075 struct cpsw_priv *priv)
2076{
2077 struct cpsw_platform_data *data = &priv->data;
2078 struct net_device *ndev;
2079 struct cpsw_priv *priv_sl2;
2080 int ret = 0, i;
2081
2082 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2083 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302084 dev_err(&pdev->dev, "cpsw: error allocating net_device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002085 return -ENOMEM;
2086 }
2087
2088 priv_sl2 = netdev_priv(ndev);
2089 spin_lock_init(&priv_sl2->lock);
2090 priv_sl2->data = *data;
2091 priv_sl2->pdev = pdev;
2092 priv_sl2->ndev = ndev;
2093 priv_sl2->dev = &ndev->dev;
2094 priv_sl2->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2095 priv_sl2->rx_packet_max = max(rx_packet_max, 128);
2096
2097 if (is_valid_ether_addr(data->slave_data[1].mac_addr)) {
2098 memcpy(priv_sl2->mac_addr, data->slave_data[1].mac_addr,
2099 ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302100 dev_info(&pdev->dev, "cpsw: Detected MACID = %pM\n", priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002101 } else {
2102 random_ether_addr(priv_sl2->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302103 dev_info(&pdev->dev, "cpsw: Random MACID = %pM\n", priv_sl2->mac_addr);
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002104 }
2105 memcpy(ndev->dev_addr, priv_sl2->mac_addr, ETH_ALEN);
2106
2107 priv_sl2->slaves = priv->slaves;
2108 priv_sl2->clk = priv->clk;
2109
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002110 priv_sl2->coal_intvl = 0;
2111 priv_sl2->bus_freq_mhz = priv->bus_freq_mhz;
2112
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002113 priv_sl2->regs = priv->regs;
2114 priv_sl2->host_port = priv->host_port;
2115 priv_sl2->host_port_regs = priv->host_port_regs;
2116 priv_sl2->wr_regs = priv->wr_regs;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302117 priv_sl2->hw_stats = priv->hw_stats;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002118 priv_sl2->dma = priv->dma;
2119 priv_sl2->txch = priv->txch;
2120 priv_sl2->rxch = priv->rxch;
2121 priv_sl2->ale = priv->ale;
2122 priv_sl2->emac_port = 1;
2123 priv->slaves[1].ndev = ndev;
2124 priv_sl2->cpts = priv->cpts;
2125 priv_sl2->version = priv->version;
2126
2127 for (i = 0; i < priv->num_irqs; i++) {
2128 priv_sl2->irqs_table[i] = priv->irqs_table[i];
2129 priv_sl2->num_irqs = priv->num_irqs;
2130 }
Patrick McHardyf6469682013-04-19 02:04:27 +00002131 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002132
2133 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002134 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002135 netif_napi_add(ndev, &priv_sl2->napi, cpsw_poll, CPSW_POLL_WEIGHT);
2136
2137 /* register the network device */
2138 SET_NETDEV_DEV(ndev, &pdev->dev);
2139 ret = register_netdev(ndev);
2140 if (ret) {
George Cherian88c99ff2014-05-12 10:21:19 +05302141 dev_err(&pdev->dev, "cpsw: error registering net device\n");
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002142 free_netdev(ndev);
2143 ret = -ENODEV;
2144 }
2145
2146 return ret;
2147}
2148
Bill Pemberton663e12e2012-12-03 09:23:45 -05002149static int cpsw_probe(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002150{
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002151 struct cpsw_platform_data *data;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002152 struct net_device *ndev;
2153 struct cpsw_priv *priv;
2154 struct cpdma_params dma_params;
2155 struct cpsw_ale_params ale_params;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302156 void __iomem *ss_regs;
2157 struct resource *res, *ss_res;
Richard Cochran549985e2012-11-14 09:07:56 +00002158 u32 slave_offset, sliver_offset, slave_size;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002159 int ret = 0, i, k = 0;
2160
Mugunthan V Ndf828592012-03-18 20:17:54 +00002161 ndev = alloc_etherdev(sizeof(struct cpsw_priv));
2162 if (!ndev) {
George Cherian88c99ff2014-05-12 10:21:19 +05302163 dev_err(&pdev->dev, "error allocating net_device\n");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002164 return -ENOMEM;
2165 }
2166
2167 platform_set_drvdata(pdev, ndev);
2168 priv = netdev_priv(ndev);
2169 spin_lock_init(&priv->lock);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002170 priv->pdev = pdev;
2171 priv->ndev = ndev;
2172 priv->dev = &ndev->dev;
2173 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG);
2174 priv->rx_packet_max = max(rx_packet_max, 128);
Mugunthan V N9232b162013-02-11 09:52:19 +00002175 priv->cpts = devm_kzalloc(&pdev->dev, sizeof(struct cpts), GFP_KERNEL);
Mugunthan V N7dcf3132013-04-29 23:27:28 +00002176 priv->irq_enabled = true;
Sebastian Siewiorab8e99d2013-06-17 19:31:52 +02002177 if (!priv->cpts) {
George Cherian88c99ff2014-05-12 10:21:19 +05302178 dev_err(&pdev->dev, "error allocating cpts\n");
Markus Pargmann4d507df2014-09-29 08:53:14 +02002179 ret = -ENOMEM;
Mugunthan V N9232b162013-02-11 09:52:19 +00002180 goto clean_ndev_ret;
2181 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002182
Vaibhav Hiremath1fb19aa2012-11-14 09:07:55 +00002183 /*
2184 * This may be required here for child devices.
2185 */
2186 pm_runtime_enable(&pdev->dev);
2187
Mugunthan V N739683b2013-06-06 23:45:14 +05302188 /* Select default pin state */
2189 pinctrl_pm_select_default_state(&pdev->dev);
2190
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002191 if (cpsw_probe_dt(&priv->data, pdev)) {
George Cherian88c99ff2014-05-12 10:21:19 +05302192 dev_err(&pdev->dev, "cpsw: platform data missing\n");
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002193 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302194 goto clean_runtime_disable_ret;
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002195 }
2196 data = &priv->data;
2197
Mugunthan V Ndf828592012-03-18 20:17:54 +00002198 if (is_valid_ether_addr(data->slave_data[0].mac_addr)) {
2199 memcpy(priv->mac_addr, data->slave_data[0].mac_addr, ETH_ALEN);
George Cherian88c99ff2014-05-12 10:21:19 +05302200 dev_info(&pdev->dev, "Detected MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002201 } else {
Joe Perches7efd26d2012-07-12 19:33:06 +00002202 eth_random_addr(priv->mac_addr);
George Cherian88c99ff2014-05-12 10:21:19 +05302203 dev_info(&pdev->dev, "Random MACID = %pM\n", priv->mac_addr);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002204 }
2205
2206 memcpy(ndev->dev_addr, priv->mac_addr, ETH_ALEN);
2207
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302208 priv->slaves = devm_kzalloc(&pdev->dev,
2209 sizeof(struct cpsw_slave) * data->slaves,
2210 GFP_KERNEL);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002211 if (!priv->slaves) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302212 ret = -ENOMEM;
2213 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002214 }
2215 for (i = 0; i < data->slaves; i++)
2216 priv->slaves[i].slave_num = i;
2217
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002218 priv->slaves[0].ndev = ndev;
2219 priv->emac_port = 0;
2220
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302221 priv->clk = devm_clk_get(&pdev->dev, "fck");
Mugunthan V Ndf828592012-03-18 20:17:54 +00002222 if (IS_ERR(priv->clk)) {
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302223 dev_err(priv->dev, "fck is not found\n");
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002224 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302225 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002226 }
Mugunthan V Nff5b8ef2013-03-11 23:16:37 +00002227 priv->coal_intvl = 0;
2228 priv->bus_freq_mhz = clk_get_rate(priv->clk) / 1000000;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002229
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302230 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2231 ss_regs = devm_ioremap_resource(&pdev->dev, ss_res);
2232 if (IS_ERR(ss_regs)) {
2233 ret = PTR_ERR(ss_regs);
2234 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002235 }
Richard Cochran549985e2012-11-14 09:07:56 +00002236 priv->regs = ss_regs;
Richard Cochran549985e2012-11-14 09:07:56 +00002237 priv->host_port = HOST_PORT_NUM;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002238
Mugunthan V Nf280e892013-12-11 22:09:05 -06002239 /* Need to enable clocks with runtime PM api to access module
2240 * registers
2241 */
2242 pm_runtime_get_sync(&pdev->dev);
2243 priv->version = readl(&priv->regs->id_ver);
2244 pm_runtime_put_sync(&pdev->dev);
2245
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302246 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2247 priv->wr_regs = devm_ioremap_resource(&pdev->dev, res);
2248 if (IS_ERR(priv->wr_regs)) {
2249 ret = PTR_ERR(priv->wr_regs);
2250 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002251 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002252
2253 memset(&dma_params, 0, sizeof(dma_params));
Richard Cochran549985e2012-11-14 09:07:56 +00002254 memset(&ale_params, 0, sizeof(ale_params));
2255
2256 switch (priv->version) {
2257 case CPSW_VERSION_1:
2258 priv->host_port_regs = ss_regs + CPSW1_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302259 priv->cpts->reg = ss_regs + CPSW1_CPTS_OFFSET;
2260 priv->hw_stats = ss_regs + CPSW1_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002261 dma_params.dmaregs = ss_regs + CPSW1_CPDMA_OFFSET;
2262 dma_params.txhdp = ss_regs + CPSW1_STATERAM_OFFSET;
2263 ale_params.ale_regs = ss_regs + CPSW1_ALE_OFFSET;
2264 slave_offset = CPSW1_SLAVE_OFFSET;
2265 slave_size = CPSW1_SLAVE_SIZE;
2266 sliver_offset = CPSW1_SLIVER_OFFSET;
2267 dma_params.desc_mem_phys = 0;
2268 break;
2269 case CPSW_VERSION_2:
Mugunthan V Nc193f362013-08-05 17:30:05 +05302270 case CPSW_VERSION_3:
Mugunthan V N926489b2013-08-12 17:11:15 +05302271 case CPSW_VERSION_4:
Richard Cochran549985e2012-11-14 09:07:56 +00002272 priv->host_port_regs = ss_regs + CPSW2_HOST_PORT_OFFSET;
Mugunthan V Nd9718542013-07-23 15:38:17 +05302273 priv->cpts->reg = ss_regs + CPSW2_CPTS_OFFSET;
2274 priv->hw_stats = ss_regs + CPSW2_HW_STATS;
Richard Cochran549985e2012-11-14 09:07:56 +00002275 dma_params.dmaregs = ss_regs + CPSW2_CPDMA_OFFSET;
2276 dma_params.txhdp = ss_regs + CPSW2_STATERAM_OFFSET;
2277 ale_params.ale_regs = ss_regs + CPSW2_ALE_OFFSET;
2278 slave_offset = CPSW2_SLAVE_OFFSET;
2279 slave_size = CPSW2_SLAVE_SIZE;
2280 sliver_offset = CPSW2_SLIVER_OFFSET;
2281 dma_params.desc_mem_phys =
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302282 (u32 __force) ss_res->start + CPSW2_BD_OFFSET;
Richard Cochran549985e2012-11-14 09:07:56 +00002283 break;
2284 default:
2285 dev_err(priv->dev, "unknown version 0x%08x\n", priv->version);
2286 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302287 goto clean_runtime_disable_ret;
Richard Cochran549985e2012-11-14 09:07:56 +00002288 }
2289 for (i = 0; i < priv->data.slaves; i++) {
2290 struct cpsw_slave *slave = &priv->slaves[i];
2291 cpsw_slave_init(slave, priv, slave_offset, sliver_offset);
2292 slave_offset += slave_size;
2293 sliver_offset += SLIVER_SIZE;
2294 }
2295
Mugunthan V Ndf828592012-03-18 20:17:54 +00002296 dma_params.dev = &pdev->dev;
Richard Cochran549985e2012-11-14 09:07:56 +00002297 dma_params.rxthresh = dma_params.dmaregs + CPDMA_RXTHRESH;
2298 dma_params.rxfree = dma_params.dmaregs + CPDMA_RXFREE;
2299 dma_params.rxhdp = dma_params.txhdp + CPDMA_RXHDP;
2300 dma_params.txcp = dma_params.txhdp + CPDMA_TXCP;
2301 dma_params.rxcp = dma_params.txhdp + CPDMA_RXCP;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002302
2303 dma_params.num_chan = data->channels;
2304 dma_params.has_soft_reset = true;
2305 dma_params.min_packet_size = CPSW_MIN_PACKET_SIZE;
2306 dma_params.desc_mem_size = data->bd_ram_size;
2307 dma_params.desc_align = 16;
2308 dma_params.has_ext_regs = true;
Richard Cochran549985e2012-11-14 09:07:56 +00002309 dma_params.desc_hw_addr = dma_params.desc_mem_phys;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002310
2311 priv->dma = cpdma_ctlr_create(&dma_params);
2312 if (!priv->dma) {
2313 dev_err(priv->dev, "error initializing dma\n");
2314 ret = -ENOMEM;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302315 goto clean_runtime_disable_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002316 }
2317
2318 priv->txch = cpdma_chan_create(priv->dma, tx_chan_num(0),
2319 cpsw_tx_handler);
2320 priv->rxch = cpdma_chan_create(priv->dma, rx_chan_num(0),
2321 cpsw_rx_handler);
2322
2323 if (WARN_ON(!priv->txch || !priv->rxch)) {
2324 dev_err(priv->dev, "error initializing dma channels\n");
2325 ret = -ENOMEM;
2326 goto clean_dma_ret;
2327 }
2328
Mugunthan V Ndf828592012-03-18 20:17:54 +00002329 ale_params.dev = &ndev->dev;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002330 ale_params.ale_ageout = ale_ageout;
2331 ale_params.ale_entries = data->ale_entries;
2332 ale_params.ale_ports = data->slaves;
2333
2334 priv->ale = cpsw_ale_create(&ale_params);
2335 if (!priv->ale) {
2336 dev_err(priv->dev, "error initializing ale engine\n");
2337 ret = -ENODEV;
2338 goto clean_dma_ret;
2339 }
2340
2341 ndev->irq = platform_get_irq(pdev, 0);
2342 if (ndev->irq < 0) {
2343 dev_err(priv->dev, "error getting irq resource\n");
2344 ret = -ENOENT;
2345 goto clean_ale_ret;
2346 }
2347
2348 while ((res = platform_get_resource(priv->pdev, IORESOURCE_IRQ, k))) {
Daniel Mackc2b32e52014-09-04 09:00:23 +02002349 if (k >= ARRAY_SIZE(priv->irqs_table)) {
2350 ret = -EINVAL;
2351 goto clean_ale_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002352 }
Daniel Mackc2b32e52014-09-04 09:00:23 +02002353
2354 ret = devm_request_irq(&pdev->dev, res->start, cpsw_interrupt,
2355 0, dev_name(&pdev->dev), priv);
2356 if (ret < 0) {
2357 dev_err(priv->dev, "error attaching irq (%d)\n", ret);
2358 goto clean_ale_ret;
2359 }
2360
2361 priv->irqs_table[k] = res->start;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002362 k++;
2363 }
2364
Daniel Mackc2b32e52014-09-04 09:00:23 +02002365 priv->num_irqs = k;
2366
Patrick McHardyf6469682013-04-19 02:04:27 +00002367 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002368
2369 ndev->netdev_ops = &cpsw_netdev_ops;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002370 ndev->ethtool_ops = &cpsw_ethtool_ops;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002371 netif_napi_add(ndev, &priv->napi, cpsw_poll, CPSW_POLL_WEIGHT);
2372
2373 /* register the network device */
2374 SET_NETDEV_DEV(ndev, &pdev->dev);
2375 ret = register_netdev(ndev);
2376 if (ret) {
2377 dev_err(priv->dev, "error registering net device\n");
2378 ret = -ENODEV;
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302379 goto clean_ale_ret;
Mugunthan V Ndf828592012-03-18 20:17:54 +00002380 }
2381
Olof Johansson1a3b5052013-12-11 15:58:07 -08002382 cpsw_notice(priv, probe, "initialized device (regs %pa, irq %d)\n",
2383 &ss_res->start, ndev->irq);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002384
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002385 if (priv->data.dual_emac) {
2386 ret = cpsw_probe_dual_emac(pdev, priv);
2387 if (ret) {
2388 cpsw_err(priv, probe, "error probe slave 2 emac interface\n");
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302389 goto clean_ale_ret;
Mugunthan V Nd9ba8f92013-02-11 09:52:20 +00002390 }
2391 }
2392
Mugunthan V Ndf828592012-03-18 20:17:54 +00002393 return 0;
2394
Mugunthan V Ndf828592012-03-18 20:17:54 +00002395clean_ale_ret:
2396 cpsw_ale_destroy(priv->ale);
2397clean_dma_ret:
2398 cpdma_chan_destroy(priv->txch);
2399 cpdma_chan_destroy(priv->rxch);
2400 cpdma_ctlr_destroy(priv->dma);
Daniel Mackaa1a15e2013-09-21 00:50:38 +05302401clean_runtime_disable_ret:
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002402 pm_runtime_disable(&pdev->dev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002403clean_ndev_ret:
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002404 free_netdev(priv->ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002405 return ret;
2406}
2407
Mugunthan V N030b16a2014-10-13 22:21:07 +05302408static int cpsw_remove_child_device(struct device *dev, void *c)
2409{
2410 struct platform_device *pdev = to_platform_device(dev);
2411
2412 of_device_unregister(pdev);
2413
2414 return 0;
2415}
2416
Bill Pemberton663e12e2012-12-03 09:23:45 -05002417static int cpsw_remove(struct platform_device *pdev)
Mugunthan V Ndf828592012-03-18 20:17:54 +00002418{
2419 struct net_device *ndev = platform_get_drvdata(pdev);
2420 struct cpsw_priv *priv = netdev_priv(ndev);
2421
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002422 if (priv->data.dual_emac)
2423 unregister_netdev(cpsw_get_slave_ndev(priv, 1));
2424 unregister_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002425
Mugunthan V Ndf828592012-03-18 20:17:54 +00002426 cpsw_ale_destroy(priv->ale);
2427 cpdma_chan_destroy(priv->txch);
2428 cpdma_chan_destroy(priv->rxch);
2429 cpdma_ctlr_destroy(priv->dma);
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002430 pm_runtime_disable(&pdev->dev);
Mugunthan V N030b16a2014-10-13 22:21:07 +05302431 device_for_each_child(&pdev->dev, NULL, cpsw_remove_child_device);
Sebastian Siewiord1bd9ac2013-04-24 08:48:23 +00002432 if (priv->data.dual_emac)
2433 free_netdev(cpsw_get_slave_ndev(priv, 1));
Mugunthan V Ndf828592012-03-18 20:17:54 +00002434 free_netdev(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002435 return 0;
2436}
2437
2438static int cpsw_suspend(struct device *dev)
2439{
2440 struct platform_device *pdev = to_platform_device(dev);
2441 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V Nb90fc272013-06-21 19:15:09 +05302442 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002443
Mugunthan V N618073e2014-09-11 22:52:38 +05302444 if (priv->data.dual_emac) {
2445 int i;
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002446
Mugunthan V N618073e2014-09-11 22:52:38 +05302447 for (i = 0; i < priv->data.slaves; i++) {
2448 if (netif_running(priv->slaves[i].ndev))
2449 cpsw_ndo_stop(priv->slaves[i].ndev);
2450 soft_reset_slave(priv->slaves + i);
2451 }
2452 } else {
2453 if (netif_running(ndev))
2454 cpsw_ndo_stop(ndev);
2455 for_each_slave(priv, soft_reset_slave);
2456 }
Daniel Mack1e7a2e22013-11-15 08:29:16 +01002457
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002458 pm_runtime_put_sync(&pdev->dev);
2459
Mugunthan V N739683b2013-06-06 23:45:14 +05302460 /* Select sleep pin state */
2461 pinctrl_pm_select_sleep_state(&pdev->dev);
2462
Mugunthan V Ndf828592012-03-18 20:17:54 +00002463 return 0;
2464}
2465
2466static int cpsw_resume(struct device *dev)
2467{
2468 struct platform_device *pdev = to_platform_device(dev);
2469 struct net_device *ndev = platform_get_drvdata(pdev);
Mugunthan V N618073e2014-09-11 22:52:38 +05302470 struct cpsw_priv *priv = netdev_priv(ndev);
Mugunthan V Ndf828592012-03-18 20:17:54 +00002471
Mugunthan V Nf150bd72012-07-17 08:09:50 +00002472 pm_runtime_get_sync(&pdev->dev);
Mugunthan V N739683b2013-06-06 23:45:14 +05302473
2474 /* Select default pin state */
2475 pinctrl_pm_select_default_state(&pdev->dev);
2476
Mugunthan V N618073e2014-09-11 22:52:38 +05302477 if (priv->data.dual_emac) {
2478 int i;
2479
2480 for (i = 0; i < priv->data.slaves; i++) {
2481 if (netif_running(priv->slaves[i].ndev))
2482 cpsw_ndo_open(priv->slaves[i].ndev);
2483 }
2484 } else {
2485 if (netif_running(ndev))
2486 cpsw_ndo_open(ndev);
2487 }
Mugunthan V Ndf828592012-03-18 20:17:54 +00002488 return 0;
2489}
2490
2491static const struct dev_pm_ops cpsw_pm_ops = {
2492 .suspend = cpsw_suspend,
2493 .resume = cpsw_resume,
2494};
2495
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002496static const struct of_device_id cpsw_of_mtable[] = {
2497 { .compatible = "ti,cpsw", },
2498 { /* sentinel */ },
2499};
Sebastian Siewior4bc21d42013-04-24 08:48:22 +00002500MODULE_DEVICE_TABLE(of, cpsw_of_mtable);
Mugunthan V N2eb32b02012-07-30 10:17:14 +00002501
Mugunthan V Ndf828592012-03-18 20:17:54 +00002502static struct platform_driver cpsw_driver = {
2503 .driver = {
2504 .name = "cpsw",
Mugunthan V Ndf828592012-03-18 20:17:54 +00002505 .pm = &cpsw_pm_ops,
Sachin Kamat1e5c76d2013-09-30 09:55:12 +05302506 .of_match_table = cpsw_of_mtable,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002507 },
2508 .probe = cpsw_probe,
Bill Pemberton663e12e2012-12-03 09:23:45 -05002509 .remove = cpsw_remove,
Mugunthan V Ndf828592012-03-18 20:17:54 +00002510};
2511
2512static int __init cpsw_init(void)
2513{
2514 return platform_driver_register(&cpsw_driver);
2515}
2516late_initcall(cpsw_init);
2517
2518static void __exit cpsw_exit(void)
2519{
2520 platform_driver_unregister(&cpsw_driver);
2521}
2522module_exit(cpsw_exit);
2523
2524MODULE_LICENSE("GPL");
2525MODULE_AUTHOR("Cyril Chemparathy <cyril@ti.com>");
2526MODULE_AUTHOR("Mugunthan V N <mugunthanvnm@ti.com>");
2527MODULE_DESCRIPTION("TI CPSW Ethernet driver");